Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是开发 Chrome 扩展程序的新手,但有编程经验。我想知道是否可以在用户访问的每个网站中嵌入外部图像?
例如,每个网站顶部的小横幅图片,我已经查看了“内容脚本”,但我不确定该图片是否必须已经在网站目录中,或者您是否可以加载外部图片。
是的!
是的,您可以使用外部图像。但是你我不建议你,例如<img>在页面中注入一个标签。我最终使用这种方法遇到了一些跨域错误。
<img>
我就是这样做的:
首先,您应该将图像主机域添加到清单权限中。
清单.json:
{ ... "permissions": ["http://image-domain.com/images/*"] ... }
然后从扩展域加载图像并将图像数据注入某个<img>标签中。
希望能帮助到你...