팝업에서 activeTab DOM 콘텐츠에 액세스하려고합니다. 내 매니페스트는 다음과 같습니다.
{
"manifest_version": 2,
"name": "Test",
"description": "Test script",
"version": "0.1",
"permissions": [
"activeTab",
"https://api.domain.com/"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "icon.png",
"default_title": "Chrome Extension test",
"default_popup": "index.html"
}
}
배경 스크립트 (지속성이있는 이벤트 페이지 : false) 또는 content_scripts가가는 길인지 정말 혼란 스럽습니다. 나는 모든 문서 및 기타 SO 게시물을 읽었으며 여전히 나에게 의미가 없습니다.
누군가 내가 왜 다른 것을 사용할 수 있는지 설명 할 수 있습니까?
내가 시도한 background.js는 다음과 같습니다.
chrome.extension.onMessage.addListener(
function(request, sender, sendResponse) {
// LOG THE CONTENTS HERE
console.log(request.content);
}
);
그리고 팝업 콘솔에서 이것을 실행하고 있습니다.
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.sendMessage(tab.id, { }, function(response) {
console.log(response);
});
});
나는 얻고있다 :
Port: Could not establish connection. Receiving end does not exist.
최신 정보:
{
"manifest_version": 2,
"name": "test",
"description": "test",
"version": "0.1",
"permissions": [
"tabs",
"activeTab",
"https://api.domain.com/"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "icon.png",
"default_title": "Test",
"default_popup": "index.html"
}
}
content.js
chrome.extension.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.text && (request.text == "getDOM")) {
sendResponse({ dom: document.body.innerHTML });
}
}
);
popup.html
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.sendMessage(tab.id, { action: "getDOM" }, function(response) {
console.log(response);
});
});
실행할 때 여전히 동일한 오류가 발생합니다.
undefined
Port: Could not establish connection. Receiving end does not exist. lastError:30
undefined
chrome.runtime.sendMessage
BackgroundPage 및 Popup에 메시지를 보냅니다.chrome.tabs.sendMessage
ContentScripts에 메시지를 보냅니다.