2

所以我有一个正在编写的扩展程序,当用户单击 pageAction 图标时,我正在尝试执行一个脚本。单击该图标时,该方法将调用 chrome.tabs.executeScript(...)。问题是 chrome.tabs.executeScript 函数没有执行,我不知道为什么。我知道我正在访问它调用 executeScript 的代码,因为那里出现了一个警报。这是我的一些代码:

清单.json

{
  "manifest_version": 2,
  "name": "name here",
  "description": "description here",
  "version": "0.1",
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "icons": {
    "16" : "images/icon16.png",
    "48" : "images/icon48.png",
    "128": "images/icon128.png" 
  },
  "background": {
    "scripts": ["js/check.js"]
  },
  "page_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "default title here"
  }
}

js/check.js

chrome.tabs.onUpdated.addListener(checkForValidUrl);

function checkForValidUrl(tabId, changeInfo, tab) {
  if (tab.url.indexOf('g') > -1) {
    chrome.pageAction.show(tabId);
  }
};

chrome.pageAction.onClicked.addListener(function(tab) {
  alert("hello world"); //this code is executed...

  //...this code is not 
  chrome.tabs.executeScript(tab.id, {file: "save.js"}, function() {
    if(chrome.runtime.lastError) {
      console.error(chrome.runtime.lastError.message);
    }
  });
});

js/save.js

alert("hello world");

就像我在代码中所说的那样,我的 pageAction onClick 函数中的 hello world 有效。executeScript 方法没有。任何关于正在发生的事情的想法都会有所帮助。

4

2 回答 2

3

在我的代码中处理了很多不同的东西之后,我找到了解决问题的方法。错误似乎在说的那一行{file: "save.js"}。当它查找时save.js,它显然是在我的manifest.json文件所在的顶级目录中查找,而不是在我的代码所在的目录中。我必须将代码更改为才能找到{file: "js/save.js"}我的save.js文件。

于 2013-06-25T03:07:15.207 回答
2

根据文档

要将代码插入页面,您的扩展程序必须具有该页面的跨域权限。它还必须能够使用该chrome.tabs模块。您可以使用清单文件的权限字段获得这两种权限。

因此,您需要该站点的权限,即http://example.com/在权限字段中。

于 2013-06-25T02:38:25.220 回答