我正在开发与 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'”。. 我做错什么了吗?我一直在寻找,但没有找到解决方案。