chrome.tabs.executeScript无法在PC上运行并可在Mac上运行

时间:2015-04-19 15:50:46

标签: google-chrome google-chrome-extension

我在mac上写了一个扩展名,当我在pc上尝试它时,它无法正常工作。当我检查MAC上的内容脚本时,我可以看到正在加载的脚本和PC内容脚本是空白的。这是代码。就编写扩展名而言,mac和pc chrome之间是否存在差异?

popup.js

function click(e) {
  chrome.tabs.executeScript(null,
      {code:"var option ='" + e.target.id + "'"},function() {chrome.tabs.executeScript(null,
        { file: "jquery.js" },function() {chrome.tabs.executeScript(null,
      { file: "SetKace.js" })})});
  window.close();
}

的manifest.json

"permissions": [
    "tabs", "http://*/*", "https://*/*"
  ],

0 个答案:

没有答案