当chrome扩展加载一次时运行一次JS方法来初始化变量?
我需要通过从 Web 服务获取 JSON 来加载 var,所以我的问题是这段代码去了哪里?我尝试将其放入内容脚本中,但 XHR 会在那里失败。 有什么建议吗?
I need to load a var by getting JSON from a webservice, so my question is where does this code go? I tried to put it in the content script but XHR would fail there.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Chrome 13 开始,内容脚本也可以执行 XHR 请求(之前只有后台页面可以)。因此您可以将代码放在您喜欢的任何地方。
如果不起作用,则您可能没有指定域权限 (或尝试连接到非 80 端口、非 http(s) 协议等)。
Starting from Chrome 13 content scripts can also perform XHR requests (before only background pages could). So you can put your code wherever you like.
If it doesn't work then you probably didn't specify domain permissions (or trying to connect to non-80 port, to non-http(s) protocol etc).