Chrome extension: Port: Could not establish connection

758 Views Asked by At

My manifest:

{
    "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 has a function that is called:

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

    } );

In content.js I have a function that listens, but it is never called:

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

In _generated_background_page.html for the extension I see this:

Port: Could not establish connection. Receiving end does not exist. lastError:29 set lastError:29 dispatchOnDisconnect miscellaneous_bindings:259

I couldn't find a solution for manifest > 2.0 in the other posts here on SO.

1

There are 1 best solutions below

0
On

I found the solution to my problem. I had a syntax error in my content.js. This resulted in the content.js not running, and the listener not being present.