Rozszerzenie Chrome: błąd portu: nie można nawiązać połączenia. Koniec odbioru nie istnieje.

Podczas próby komunikacji między moim skryptem treści i tłem otrzymuję następujące błędy:

Port error: Could not establish connection. Receiving end does not exist.
Error in event handler for 'undefined': Cannot read property 'message' of undefined       
TypeError: Cannot read property 'message' of undefined

background.js

function onRequest(request, sender, callbackFunction) {
    console.log("Me (BS) became this Message:" + request.message);
    sendResponse({message: request.message})
};
chrome.extension.onRequest.addListener(onRequest);

streamcloud.js

function contactBackground(nachricht){
    chrome.extension.sendMessage({message: nachricht}, function(response) {
        console.log("The Background Script got the following Message: " + response.message);
    });
}

i mójmanifest.json

{
  "name": "InstantWatch - Dev",
  "manifest_version": 2,
  "version": "0.7",
  "permissions": ["tabs", "http://*/", "https://*/"],
  "background": {
    "scripts": ["background.js"]
  },  
  "browser_action": {
    "default_title": "InstantWatch",
    "default_icon" : "icon.ico"
  },
  "content_scripts": [
    {
      "matches": ["http://*/*", "http://*/*"],
      "js": ["jquery.js", "streamcloud.js"]
    }
  ]
}

Znalazłem rozwiązanie, aby dodać stronę background_page: "background.html" z pustym background.html, ale ponieważ strona background_page nie jest obsługiwana od manifest_version: 2, nie mogę tego użyć.

questionAnswers(2)

yourAnswerToTheQuestion