Chrome拡張機能コンテンツスクリプトからpopup.htmlにデータを送信する方法


94

これは多くの投稿で質問されていることは知っていますが、正直なところ、それらを取得できません。私はJavaScriptやChrome拡張機能などすべてに不慣れで、このクラスを割り当てられています。したがって、クロスドメインリクエストを使用して、特定のページのDOMオブジェクトをカウントするプラグインを作成する必要があります。これまで、Chrome Extension APIを使用してこれを達成することができました。ここでの問題は、contentScript.jsファイルから私のpopup.htmlページにデータを表示する必要があることです。ドキュメントを読んでみたが、どうすればいいのかわからないが、Chromeでのメッセージ送信で何をすべきか理解できない。

以下はこれまでのコードです。

manifest.json

{
"manifest_version":2,

"name":"Dom Reader",
"description":"Counts Dom Objects",
"version":"1.0",

"page_action": {
    "default_icon":"icon.png",
    "default_title":"Dom Reader",
    "default_popup":"popup.html"
},

"background":{
    "scripts":["eventPage.js"],
    "persistent":false
},

"content_scripts":[
    {
        "matches":["http://pluralsight.com/training/Courses/*", "http://pluralsight.com/training/Authors/Details/*",                                          "https://www.youtube.com/user/*", "https://sites.google.com/site/*", "http://127.0.0.1:3667/popup.html"],
        "js":["domReader_cs.js","jquery-1.10.2.js"]
        //"css":["pluralsight_cs.css"]
    }
],

"permissions":[
    "tabs",
    "http://pluralsight.com/*",
    "http://youtube.com/*",
    "https://sites.google.com/*",
    "http://127.0.0.1:3667/*"
]

popup.html

<!doctype html>
<html>

    <title> Dom Reader </title>    
    <script src="jquery-1.10.2.js" type="text/javascript"></script>
    <script src="popup.js" type="text/javascript"></script>

<body>
    <H1> Dom Reader </H1>
    <input type="submit" id="readDom" value="Read DOM Objects" />

   <div id="domInfo">

    </div>
</body>
</html>

eventPage.js

var value1,value2,value3;

chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.action == "show") {
    chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
        chrome.pageAction.show(tabs[0].id);
    });
}

value1 = request.tElements;
});

popup.js

$(function (){
$('#readDom').click(function(){
chrome.tabs.query({active: true, currentWindow: true}, function (tabs){
    chrome.tabs.sendMessage(tabs[0].id, {action: "readDom"});

 });
});
});

contentScript

var totalElements;
var inputFields;
var buttonElement;

chrome.runtime.onMessage.addListener(function (request, sender, sendResponse){
if(request.action == "readDom"){

    totalElements = $("*").length;
    inputFields = $("input").length;
    buttonElement = $("button").length;


}
})

chrome.runtime.sendMessage({ 
action: "show", 
tElements: totalElements, 
Ifields: inputFields, 
bElements: buttonElement 

});

どんな助けでもありがたいです、そして私がしたどんなノーブネスも避けてください:)

回答:


171

あなたは間違いなく正しい方向にありますが(実際にはかなり終わりに近い)、コードにいくつかの(imo)悪い習慣があります(たとえば、そのような些細なタスクにライブラリ全体(jquery)を注入し、不要なアクセス許可を宣言し、余分なAPIメソッドの呼び出しなど)。
私はあなたのコードを自分でテストしませんでしたが、簡単な概要から、以下を修正すると実用的なソリューションが得られると信じています(ただし、最適に非常に近いわけではありません)。

  1. manifest.jsonを:変更内容スクリプトのため、最初のjqueryのを置きます。関連ドキュメントによると:

    "js" [...]一致するページに挿入されるJavaScriptファイルのリスト。これらは、この配列に現れる順序で注入さます。

    (強調鉱山)

  2. contentscript.js:移動chrome.runtime.sendMessage({...})ブロック内のonMessageリスナーコールバック。


そうは言っても、ここに私の提案するアプローチがあります:

制御フロー:

  1. コンテンツスクリプトは、いくつかの基準に一致する各ページに挿入されます。
  2. 挿入されると、コンテンツスクリプトはメッセージをイベントページ(非永続的なバックグラウンドページ)に送信し、イベントページはページアクションをタブにアタッチします。
  3. ページアクションポップアップが読み込まれるとすぐに、必要な情報を要求するメッセージがコンテンツスクリプトに送信されます。
  4. コンテンツスクリプトはリクエストを処理し、ページアクションポップアップが情報を表示できるように応答します。

ディレクトリ構造:

          root-directory/
           |_____img
                 |_____icon19.png
                 |_____icon38.png
           |_____manifest.json
           |_____background.js
           |_____content.js
           |_____popup.js
           |_____popup.html

manifest.json:

{
  "manifest_version": 2,
  "name": "Test Extension",
  "version": "0.0",
  "offline_enabled": true,

  "background": {
    "persistent": false,
    "scripts": ["background.js"]
  },

  "content_scripts": [{
    "matches": ["*://*.stackoverflow.com/*"],
    "js": ["content.js"],
    "run_at": "document_idle",
    "all_frames": false
  }],

  "page_action": {
    "default_title": "Test Extension",
    //"default_icon": {
    //  "19": "img/icon19.png",
    //  "38": "img/icon38.png"
    //},
    "default_popup": "popup.html"
  }

  // No special permissions required...
  //"permissions": []
}

background.js:

chrome.runtime.onMessage.addListener((msg, sender) => {
  // First, validate the message's structure.
  if ((msg.from === 'content') && (msg.subject === 'showPageAction')) {
    // Enable the page-action for the requesting tab.
    chrome.pageAction.show(sender.tab.id);
  }
});

content.js:

// Inform the background page that 
// this tab should have a page-action.
chrome.runtime.sendMessage({
  from: 'content',
  subject: 'showPageAction',
});

// Listen for messages from the popup.
chrome.runtime.onMessage.addListener((msg, sender, response) => {
  // First, validate the message's structure.
  if ((msg.from === 'popup') && (msg.subject === 'DOMInfo')) {
    // Collect the necessary data. 
    // (For your specific requirements `document.querySelectorAll(...)`
    //  should be equivalent to jquery's `$(...)`.)
    var domInfo = {
      total: document.querySelectorAll('*').length,
      inputs: document.querySelectorAll('input').length,
      buttons: document.querySelectorAll('button').length,
    };

    // Directly respond to the sender (popup), 
    // through the specified callback.
    response(domInfo);
  }
});

popup.js:

// Update the relevant fields with the new data.
const setDOMInfo = info => {
  document.getElementById('total').textContent = info.total;
  document.getElementById('inputs').textContent = info.inputs;
  document.getElementById('buttons').textContent = info.buttons;
};

// Once the DOM is ready...
window.addEventListener('DOMContentLoaded', () => {
  // ...query for the active tab...
  chrome.tabs.query({
    active: true,
    currentWindow: true
  }, tabs => {
    // ...and send a request for the DOM info...
    chrome.tabs.sendMessage(
        tabs[0].id,
        {from: 'popup', subject: 'DOMInfo'},
        // ...also specifying a callback to be called 
        //    from the receiving end (content script).
        setDOMInfo);
  });
});

popup.html:

<!DOCTYPE html>
<html>
  <head>
    <script type="text/javascript" src="popup.js"></script>
  </head>
  <body>
    <h3 style="font-weight:bold; text-align:center;">DOM Info</h3>
    <table border="1" cellpadding="3" style="border-collapse:collapse;">
      <tr>
        <td nowrap>Total number of elements:</td>
        <td align="right"><span id="total">N/A</span></td>
      </tr>
      <tr>
        <td nowrap>Number of input elements:</td>
        <td align="right"><span id="inputs">N/A</span></td>
      </tr>
      <tr>
        <td nowrap>Number of button elements:</td>
        <td align="right"><span id="buttons">N/A</span></td>
      </tr>
    </table>
  </body>
</html>

うわー !兄弟に感謝します。今あなたのアプローチをチェックしています。コードで作成した問題の数を感じました。おかげでこれは魅力のように動作します。:)
Sumair Baloch 2013

こんにちは。申し訳ありませんが、しばらくコメントしていません。コメントを確認しました。返事は一切お受けできません。そのためには15の評判ポイントが必要だと言っています。
Sumair Baloch 2013

非常によく似た問題の解決を手伝っていただけませんか?<a href=" stackoverflow.com/questions/34467627/...>この時私の現在のショットはかなりこの回答から、あなたのコードである。しかし、私はまだ仕事にそれを得るカントとの問題上の任意の良い助けを見つけるように見える傾けます。。
wuno

なぜあなたが使用chrome.tabs.sendMessagepopupjsにし、 chrome.runtime.onMessage.addListenerなぜcontent.jsに.tabspopupjsためと.runtimecontent.jsに
ハビブカゼミ

2
@hkm:メッセージを送受信する方法です。それはすべてドキュメントにあります。
gkalpak

7

そのためにlocalStorageを使用できます。ブラウザのメモリにハッシュテーブル形式のデータを保存して、いつでもアクセスできます。コンテンツスクリプトからlocalStorageにアクセスできるかどうかはわかりません(以前はブロックされていました)。自分でアクセスしてみてください。バックグラウンドページを介してそれを行う方法は次のとおりです(最初にコンテンツスクリプトからバックグラウンドページにデータを渡し、次にそれをlocalStorageに保存します)。

contentScript.js内:

chrome.runtime.sendMessage({
  total_elements: totalElements // or whatever you want to send
});

eventPage.js(バックグラウンドページ):

chrome.runtime.onMessage.addListener(
    function(request, sender, sendResponse){
       localStorage["total_elements"] = request.total_elements;
    }
);

次に、localStorage ["total_elements"]を使用して、popup.jsでその変数にアクセスできます。

最近のブラウザのコンテンツスクリプトから直接localStorageにアクセスできるかもしれません。その後、バックグラウンドページを介してデータを渡す必要はありません。

localStorageに関する良い読み物:http : //diveintohtml5.info/storage.html


1
非推奨のchrome.extension.onRequest / sendRequestの使用を促進しないでください(実行前に非永続的なバックグラウンドページをロードしません)。代わりにchrome.runtime。*を使用してください。
gkalpak 2013年

1
@ExpertSystemこのような古い情報が表示された場合は、編集を提案/作成してください。
Xan

3
@Xan:それで、あなたは[Google-Chrome-Extension]の後継者です:)私は人々の投稿を編集するのが好きではありません(私はそれが煩わしいと思います)。その上、非常に多くの古いチュートリアルと例(少なくとも当時)があったため、正しい方法を示すだけではなく(と考える人もいるだろう)のではなく、を使用するのがなぜ悪いのかを明確にコメントする方がよいことがわかりまし.extension.xxxた。同様にOKです」)。それは私が推測するよりスタイルの問題です。今後ともよろしくお願いいたします。
gkalpak 14年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.