web-dev-qa-db-ja.com

Chrome Extension-DOMコンテンツを取得します

ポップアップから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.innertHTML });
    }
  }
);

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
91
brandonhilkert

「背景ページ」、「ポップアップ」、「コンテンツスクリプト」という用語は依然として混乱を招きます。 Google Chrome Extensions Documentationをさらに詳しく見ることを強くお勧めします。

コンテンツスクリプトまたはバックグラウンドページを使用する方法がある場合の質問について:

コンテンツスクリプト:間違いなく
コンテンツスクリプトは、WebページのDOMにアクセスできる拡張機能の唯一のコンポーネントです。

背景ページ/ポップアップ:たぶん(おそらく2つのうち最大1つ)
さらに処理するために、コンテンツスクリプトが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"]
}
147
gkalpak

DOMを取得または変更するためにメッセージパッシングを使用する必要はありません。 chrome.tabs.executeScriptinsteadを使用しました。この例では、activeTab権限のみを使用しているため、スクリプトはアクティブなタブでのみ実行されます。

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]);
    });
});
43
Oskar

Gkalpakの回答を試みたがうまくいかなかった人のために、

chromeは、chromeの起動中に拡張機能が有効になっている場合にのみ、必要なページにコンテンツスクリプトを追加することに注意してください。

3
bxN5