IT TIP

Chrome 확장 프로그램 : 백그라운드에서 콘텐츠 스크립트로의 sendMessage가 작동하지 않음

itqueen 2020. 10. 29. 20:16
반응형

Chrome 확장 프로그램 : 백그라운드에서 콘텐츠 스크립트로의 sendMessage가 작동하지 않음


나는 질문이 여러 가지 방법으로 반복적으로 요청되었다는 것을 알고 있지만 모든 답변을 검토하려고 노력했지만 (누구도 그리워하지 않았 으면 좋겠다) 아무도 나를 위해 일하지 않았습니다.

내 확장 코드는 다음과 같습니다.

명백한:

{
"name": "test",
"version": "1.1",
"background": 
{ 
    "scripts": ["contextMenus.js"]
},

"permissions": ["tabs", "<all_urls>", "contextMenus"],

"content_scripts" : [
    {
        "matches" : [ "http://*/*" ],
        "js": ["jquery-1.8.3.js", "jquery-ui.js"],
        "css": [ "jquery-ui.css" ],
        "js": ["openDialog.js"]
    }
],

"manifest_version": 2
}

contextMenus.js

function onClickHandler(info, tab) {
    if (info.menuItemId == "line1"){

      alert("You have selected: " + info.selectionText);

      chrome.extension.sendMessage({action:'open_dialog_box'}, function(){});

      alert("Req sent?");

    }
}

chrome.contextMenus.onClicked.addListener(onClickHandler);

chrome.runtime.onInstalled.addListener(function() {

  chrome.contextMenus.create({"id": "line1", "type": "normal", "title": "I'm line 1",     "contexts":["selection"]});

});

openDialog.js

chrome.extension.onMessage.addListener(function(msg, sender, sendResponse) {

  if (msg.action == 'open_dialog_box') {
    alert("Message recieved!");
  }
});

백그라운드 페이지의 두 가지 경고는 작동하지만 content_script 중 하나는 작동하지 않습니다.

콘솔 로그 메시지 : 포트 오류 : 연결을 설정할 수 없습니다. 수신단이 없습니다.

내 잘못은 어디에 있습니까?


백그라운드 페이지에서

chrome.tabs.query({active: true, currentWindow: true}, function(tabs){
    chrome.tabs.sendMessage(tabs[0].id, {action: "open_dialog_box"}, function(response) {});  
});

chrome.extension.sendMessage현재 사용 하는 대신 사용 합니다.

chrome.tabs반면, 변형, 컨텐츠 스크립트에 메시지를 보내는 chrome.extension기능은 다른 모든 확장 구성 요소에 메시지를 전송합니다.

참고URL : https://stackoverflow.com/questions/14245334/chrome-extension-sendmessage-from-background-to-content-script-doesnt-work

반응형