반응형
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
기능은 다른 모든 확장 구성 요소에 메시지를 전송합니다.
반응형
'IT TIP' 카테고리의 다른 글
치명적 : git 저장소로 보이지 않음 (0) | 2020.10.29 |
---|---|
git-tf와 git-tfs의 차이점은 무엇입니까? (0) | 2020.10.29 |
d3.scale.category10 ()에 해당하는 d3.js v4.0은 무엇입니까? (0) | 2020.10.29 |
왜 이것이 기본 생성자없이 컴파일되지 않습니까? (0) | 2020.10.29 |
Android 에뮬레이터 (qemu-system-i386.exe)의 높은 CPU 사용량 (0) | 2020.10.28 |