chrome.tabs.executeScript发生错误"运行tabs.executeScript时未经检查的runtime.lastError:无法访问url的内容..."

时间:2015-06-24 13:41:11

标签: google-chrome-extension

所以我试图在background.js中从www.script.google.com这样的外部源执行脚本。 但我得到了这个错误 -

Unchecked runtime.lastError while running tabs.executeScript: Cannot access contents of url "chrome-devtools://devtools/bundled/devtools.html?&remoteBase=https://chrome…&dockSide=undocked&toolbarColor=rgba(223,223,223,1)&textColor=rgba(0,0,0,1)". Extension manifest must request permission to access this host.

我正在做的是从popup.js向background.js发送消息 在popup.js -

 chrome.runtime.sendMessage({type:"addtask"});

在background.js中 -

chrome.runtime.onMessage.addListener(function(request, sender, sendResponse){
    if(request.type == "addtask")
    {
        chrome.tabs.executeScript(null,
                       {file:"https://script.google.com/url of script....."});
    }
});

我的manifest.json -

{
    "name": "Extension",
    "version": "0.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html"
    },
     "background": {
        "scripts": ["background.js"],
        "persistent": false
    },
    "content_scripts": [{
        "js": ["jquery.min.js","contentscript.js"],
        "matches": ["http://*/*","https://*/*"],
        "css" : ["feedback.css"]
    }],
    "permissions": [
          "storage","tabs","https://script.google.com"
        ],
    "web_accessible_resources": ["feedback.js","html2canvas.js","event.js"],
    "content_security_policy": "script-src 'self' https://script.google.com/*; object-src 'self'"
}

3 个答案:

答案 0 :(得分:16)

平原直。将*://*/*添加到权限。

答案 1 :(得分:1)

虽然ArtPip建议适用于这种情况,但通常您希望在选项卡或所有选项卡上执行脚本,并且如果您的权限不允许在该选项卡或某些选项卡上进行注入,则可以正确处理错误。

以下是在所有选项卡上执行脚本并正确处理错误的示例:

tabs.forEach(tab => {
    chrome.tabs.executeScript(tab.id, { file: filename }, result => {
        const lastErr = chrome.runtime.lastError;
        if (lastErr) console.log('tab: ' + tab.id + ' lastError: ' + JSON.stringify(lastErr));
    });
});

答案 2 :(得分:1)

通过manifest.json声明式地注入内容脚本非常容易。 matchs属性确定脚本可以访问哪些URL,其中还可以包括文件系统URL。

    "content_scripts": [{

                         "matches": ["<all_urls>"],

                         "js": ["contentScript.js"]

                       }],

要了解有关匹配模式的更多信息,请访问https://developer.chrome.com/extensions/match_patterns

要了解有关注入脚本https://developer.chrome.com/extensions/content_scripts#pi

的更多信息