我遇到一个问题,当我点击我的Chrome扩展程序时,根本没有发生任何事情。我希望有一个警报框。
这是我的manifest.json:
{
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon-gif.png",
"default_title": "AlertBoxer"
},
"description": "Use this extension to see an alert box",
"icons": {
"128": "icon-gif.png",
"19": "icon-gif.png",
"48": "icon-gif.png"
},
"name": "C3P0",
"permissions": ["notifications"],
"version": "1.0",
"manifest_version": 2
}
和background.js文件:
chrome.browserAction.onClicked.addListener(function (tab) {
alert("Hi");
});
答案 0 :(得分:0)
修复是改变:
"background": {
"page": "background.js"
},
为:
"background": {
"scripts": ["background.js"]
},
更新原始帖子以显示。