나는 질문이 여러 가지 방법으로 반복적으로 요청되었다는 것을 알고 있지만 모든 답변을 검토하려고 노력했지만 (누구도 그리워하지 않았 으면 좋겠다) 아무도 나를 위해 일하지 않았습니다.
내 확장 코드는 다음과 같습니다.
명백한:
{
"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.sendMessage()
) 아닌 콘텐츠 스크립트에 메시지를 보내는 데 사용해야 합니다chrome.extension.sendMessage()
.