我正在撰写Chrome扩展程序,在点击浏览器操作图标时会将我重定向到网址。
我正在尝试使用:
chrome.browserAction.onClicked.addListener
但我明白了
未捕获的TypeError:无法读取未定义的属性'onClicked'
这是我的清单文件:
{
"name": "first extension",
"version": "2.2.12",
"description": "redirct to a link icon",
"browser_action": {
"default_icon": "icontest.png",
"default_title": "Do action"
},
"permissions": ["tabs", "http://*/*"],
"content_scripts": [{
"matches": ["http://*.twitter.com/*", "https://*.twitter.com/*"],
"js": ["twterland.js"]
}],
"icons": {
"16": "icontest.png",
"48": "icontest.png",
"128": "icontest.png"
}
}
这是我的js文件:
chrome.browserAction.onClicked.addListener(function(tab) { alert("hi"); });
好像代码在你的twterland.js
文件中,这是你的内容脚本。 browserAction
只能在扩展页面中使用,因此您无法在内容脚本中使用它。
文件:https://developer.chrome.com/extensions/content_scripts
但是,内容脚本有一些限制。他们不能: - 使用chrome。* API(chrome.extension的部分除外) - 使用其扩展页面定义的变量或函数 - 使用由网页或其他内容脚本定义的变量或函数
把它放在background page上。
对于已经添加了类似内容的人
"background": {
"scripts": ["background.js"]
}
仍然得到Cannot read property 'onClicked' of undefined
- 只需添加
"browser_action": {}
进入你的manifest.json
编辑:感谢@Pacerier的评论,我改变了我的回答
如果您的"browser_action"
中没有定义manifest.json
属性,则可能会出现此错误。 @Kirill的答案有效但你还必须添加一个空白的icon.png
文件,否则chrome将抛出一个错误,它无法找到这样的文件。
将此添加到manifest.json
文件应该禁止这是错误:
"browser_action": {}
请务必阅读有关如何使用documentation for further reference设置的"browser_action"
。
我还得到了这个,补充道
"persistent": true
我在manifest.json中的后台声明解决了它。
确保我们在manifest.json中的后台脚本数组中的background.js之前没有jquery.js。
"background": {
"scripts": ["background.js","jquery.js"]
}