每次刷新都会触发background.js

时间:2016-03-14 13:48:16

标签: google-chrome plugins google-chrome-extension google-chrome-devtools google-chrome-app

好像我的background.js每次刷新都被触发[种下一个警报,我看到它每次刷新,我的上下文菜单也复制了它的内在自我]。

这是我的清单文件:

"manifest_version": 2,
"name": "test",
"description": "test",
"version": "1.0",
"permissions": [
    "activeTab",
    "storage",
    "tabs",
    "contextMenus", 
    "https://*/*",
    "http://*/*",
    "https://www.google.com/_/chrome/newtab*"
],
"browser_action": {
    "default_icon": "raj_robot.png",
    "default_title" : "MemoMi"
},
"chrome_url_overrides" : {
    "newtab" : "mypage.html"
},
"background": {
    "scripts" : ["background.js"]
},
"content_scripts": [
{
    "matches": ["<all_urls>"],
    "js" : ["selection.js"],
    "run_at": "document_end"
}
],

这是我的后台脚本:

function handle_click() {
    alert("hi there!");
}

chrome.contextMenus.create({

    title: "menu title", 
    contexts:["selection"], 
    onclick: handle_click

});

我在这里做错了什么?

谢谢! 古拉

1 个答案:

答案 0 :(得分:0)

好的,我找到了。我实际上通过使用内容脚本中的方法来隐式触发background.js,这些方法应该在background.js中。只需注释掉您的代码,看看它是否有所改进。