Chrome扩展程序-获取DOM内容


116

我正在尝试从弹出窗口中访问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

Answers:


184

术语“背景页面”,“弹出窗口”,“内容脚本”仍然让您感到困惑;我强烈建议您更深入地了解Google Chrome扩展程序文档

关于您的问题,是否要使用内容脚本或后台页面:

内容脚本:绝对地,
内容脚本是扩展程序中有权访问网页DOM的唯一组件。

后台页面/弹出窗口:也许(可能最多两个)之一,
您可能需要让内容脚本将DOM内容传递给后台页面或弹出窗口以进行进一步处理。


让我重复一遍,我强烈建议您对可用文档进行更仔细的研究!
也就是说,这是一个示例扩展,它检索StackOverflow页面上的DOM内容并将其发送到后台页面,该页面随后又在控制台中将其打印出来:

background.js:

// Regex-pattern to check URLs against. 
// It matches URLs like: http[s]://[...]stackoverflow.com[...]
var urlRegex = /^https?:\/\/(?:[^./?#]+\.)?stackoverflow\.com/;

// A function to use as callback
function doStuffWithDom(domContent) {
    console.log('I received the following DOM content:\n' + domContent);
}

// When the browser-action button is clicked...
chrome.browserAction.onClicked.addListener(function (tab) {
    // ...check the URL of the active tab against our pattern and...
    if (urlRegex.test(tab.url)) {
        // ...if it matches, send a message specifying a callback too
        chrome.tabs.sendMessage(tab.id, {text: 'report_back'}, doStuffWithDom);
    }
});

content.js:

// Listen for messages
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
    // If the received message has the expected format...
    if (msg.text === 'report_back') {
        // Call the specified callback, passing
        // the web-page's DOM content as argument
        sendResponse(document.all[0].outerHTML);
    }
});

manifest.json:

{
  "manifest_version": 2,
  "name": "Test Extension",
  "version": "0.0",
  ...

  "background": {
    "persistent": false,
    "scripts": ["background.js"]
  },
  "content_scripts": [{
    "matches": ["*://*.stackoverflow.com/*"],
    "js": ["content.js"]
  }],
  "browser_action": {
    "default_title": "Test Extension"
  },

  "permissions": ["activeTab"]
}

6
@solvingPuzzles:chrome.runtime.sendMessage将消息发送到BackgroundPage和弹出窗口。chrome.tabs.sendMessage将消息发送到ContentScripts。
gkalpak

22
不赞成投票,因为此答案不能解释如何从当前选项卡获取ACTUAL DOM。
约翰·保罗·巴巴加洛

2
@JohnPaulBarbagallo:问题在于获取DOM内容,而不是访问/操纵实际DOM。我认为我的回答可以做到这一点(其他人的想法也是如此)。如果您有更好的解决方案,请将其发布为答案。如果您有其他要求,请将其发布为新问题。无论如何,请反馈:)
gkalpak 2014年

2
@zoltar:它被打印在后台页面的控制台中。
gkalpak

2
我已经复制/粘贴了此答案,但是无法从内容脚本获取任何console.log。请帮助!
ClementWalter

72

您不必使用传递的消息来获取或修改DOM。我chrome.tabs.executeScript改用了。在我的示例中,我仅使用activeTab权限,因此该脚本仅在active选项卡上执行。

manifest.json的一部分

"browser_action": {
    "default_title": "Test",
    "default_popup": "index.html"
},
"permissions": [
    "activeTab",
    "<all_urls>"
]

index.html

<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <button id="test">TEST!</button>
    <script src="test.js"></script>
  </body>
</html>

test.js

document.getElementById("test").addEventListener('click', () => {
    console.log("Popup DOM fully loaded and parsed");

    function modifyDOM() {
        //You can play with your DOM here or check URL against your regex
        console.log('Tab script:');
        console.log(document.body);
        return document.body.innerHTML;
    }

    //We have permission to access the activeTab, so we can call chrome.tabs.executeScript:
    chrome.tabs.executeScript({
        code: '(' + modifyDOM + ')();' //argument here is a string but function.toString() returns function's code
    }, (results) => {
        //Here we have just the innerHTML and not DOM structure
        console.log('Popup script:')
        console.log(results[0]);
    });
});

1
完美的作品!谢谢。我不知道为什么,但是我无法使公认的解决方案对我有用。
goodfellow

您仅使用activeTab权限的陈述是不正确的。<all_urls>除了,您显然正在获得activeTab
Makyen

1
test.js是您包含在页面HTML中的脚本,因此我不确定您是否需要任何权限。
Scott Baker

11

对于那些尝试gkalpak答案但没有效果的人,

请注意,只有在chrome启动过程中启用了扩展程序后,chrome才会将内容脚本添加到所需页面,并且最好在进行这些更改后重新启动浏览器


1
这挽救了我的一天
Romain Derie
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.