Chrome扩展程序:端口:无法建立连接

时间:2013-08-27 02:03:27

标签: javascript google-chrome-extension message-passing

我的清单:

{
    "name":"name",
    "version":"0.1",
    "manifest_version":2,
    "description":"name app",
    "background":{
        "scripts":[
            "scripts/modernizr.min.js", 
            "scripts/background.js"
            ],
        "persistent": false
    },
    "content_scripts": [
      {
        "matches": ["https://*/*", "http://*/*"],
        "js": ["scripts/content.js"],
        "run_at": "document_end"
      }
    ],
    "permissions":[
        "contextMenus", 
        "tabs",
        "http://*/*",
        "https://*/*"
        ],
    "icons":{
        "16":"images/icon_16.png",
        "128":"images/icon_128.png"
    }
}

Background.js有一个名为的函数:

    chrome.contextMenus.onClicked.addListener( function( info, tab )
        {
... stuff ...
    chrome.tabs.sendMessage( tab.id, { action: "showLibraryUI", library: library }, function( response ){} );

    } );

在content.js中,我有一个侦听的函数,但它永远不会被调用:

chrome.runtime.onMessage.addListener( function( request, sender, sendResponse )
    {
...stuff...
} );

在_generated_background_page.html中,我看到了这个扩展名:

端口:无法建立连接。接收端不存在。 lastError:29 设置lastError:29 dispatchOnDisconnect miscellaneous_bindings:259

我无法找到清单>的解决方案在SO的其他帖子中有2.0。

1 个答案:

答案 0 :(得分:0)

我找到了解决问题的方法。我的content.js中有语法错误。这导致content.js没有运行,并且监听器不存在。