0

我正在开发与 Aviary API 一起使用的 Chrome 扩展程序。我需要将 Aviary Javascript 添加到扩展中。这是我的清单的样子:

"content_scripts": [ {
  "js": ["http://feather.aviary.com/js/feather.js", "jquery-1.7.2.min.js", "chosen/chosen.jquery.js", "main.js" ],
  "css": [ "assets/css/style.css" ],
}],
"permissions": [
  "http://feather.aviary.com*",
  "tabs",
  "cookies"
]

但它不断抛出错误“无法为内容脚本加载 javascript 'http://feather.aviary.com/js/feather.js'”。. 我做错什么了吗?我一直在寻找,但没有找到解决方案。

4

1 回答 1

2

您应该设置权限示例

 "permissions": [
    "http://*feather.aviary.com*", "webRequest",

    "tabs"
  ]
于 2012-09-05T06:57:06.060 回答