Chrome 扩展程序 - 获取 DOM 内容
2022-08-30 02:44:27
						我正在尝试从弹出窗口访问活动选项卡 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帖子,这对我来说仍然没有意义。
有人可以解释为什么我可能会使用一个而不是另一个。
以下是我一直在尝试的背景.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"
  }
}
内容.js
chrome.extension.onMessage.addListener(
  function(request, sender, sendResponse) {
    if (request.text && (request.text == "getDOM")) {
      sendResponse({ dom: document.body.innerHTML });
    }
  }
);
弹出窗口.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