如何保持Chrome扩展程序脚本正常运行

时间:2017-09-23 01:13:56

标签: javascript jquery google-chrome

我无法使用Chrome扩展程序正确触发事件点击。后台脚本:

var toggle = false;
chrome.browserAction.onClicked.addListener(function(tab) {
  toggle = !toggle;
  if(toggle){
    chrome.browserAction.setIcon({path: "turnon.png", tabId:tab.id});
    chrome.tabs.executeScript(tab.id, {file:"toggle.js"});
  }
  else{
    chrome.browserAction.setIcon({path: "turnoff.png", tabId:tab.id});
    chrome.tabs.executeScript(tab.id, {file:"stoptoggle.js"});
  }
});

每次单击页面正文时,都会尝试切换脚本。它目前什么也没做。

$('body').on('click',function(){
$('main').toggle();
});

0 个答案:

没有答案