2

我创建了我的第一个 chrome 扩展,它在单击时将事件处理程序添加到页面上的所有锚元素。如果用户第二次单击该图标,则事件处理程序将重新附加到锚元素并执行两次。我需要什么

  • 单击浏览器操作。
  • 将事件添加到锚元素
  • 如果可能的话,在浏览器操作图标中给出扩展当前处于活动状态的视觉提示。
  • 再次单击扩展应删除事件处理程序,并再次将扩展图标显示为禁用。

这可能吗?

以下是我到目前为止所尝试的。

清单.json

{
    "name":"NameExtension",
    "version":"1.0",
    "description":"Here goes the description",
    "manifest_version":2,
    "browser_action":{
        "default_icon":"16x16.png"
    },
    "background":{
        "scripts":["background.js"]
    },
    "permissions":[
        "tabs","http://*/*","https://*/*"
    ]
}

背景.js

chrome.browserAction.onClicked.addListener(function(tab) {
  chrome.tabs.executeScript(null, {file: "contentscript.js"});
});

内容脚本.js

var all = document.getElementsByTagName('a');
for(var i=0; i<all.length;i++){
    all[i].addEventListener('click',myHandler, false);
}

myHandler = function(event){
    alert(event.target.innerText);
}

我希望在单击并重新单击 extension_browser_action 时在锚点上切换上述处理程序。此外,如果 extension_browser-action_icon 可以提供有关状态的一些视觉反馈。

4

1 回答 1

6

我可以在我的 background.js 中执行此操作,其中 contentscript 添加处理程序并 togglecontentscript 删除它们。

var x = false;
disableBrowserAction();

function disableBrowserAction(){
    chrome.browserAction.setIcon({path:"inactive.png"});
    chrome.tabs.executeScript(null, {file: "togglecontentscript.js"})
}

function enableBrowserAction(){
    chrome.browserAction.setIcon({path:"active.png"});
    chrome.tabs.executeScript(null, {file: "contentscript.js"});
}

function updateState(){
    if(x==false){
        x=true;
        enableBrowserAction();
    }else{
        x=false;
        disableBrowserAction();
    }
}

chrome.browserAction.onClicked.addListener(updateState);
于 2013-09-04T10:45:33.457 回答