gpt4 book ai didi

javascript - 将图像从背景页面传递到内容脚本 javascript

转载 作者:行者123 更新时间:2023-12-02 16:17:01 25 4
gpt4 key购买 nike

有没有办法将图像从 chrome 扩展程序的后台页面发送到内容脚本,这样内容脚本就不会从外部网页检索图像来显示,而是使用存储的图像本地扩展?

也许使用 sendMessage API?

最佳答案

您不需要“传递”打包资源中已有的图像。

使用它所需的只是:

  1. 使用chrome.runtime.getURL()函数,可以在内容脚本中使用:

    // Use relative path in the package directory
    img.src = chrome.runtime.getURL("images/image.png")
  2. "web_accessible_resources" 中的图像列入白名单在 list 中:

    "web_accessible_resources": [
    "images/*.png"
    ],

关于javascript - 将图像从背景页面传递到内容脚本 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29492296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com