0

ブラウザですべてのリクエストを処理するchome拡張機能を作成しました。

マニフェスト.json:

{
  "name": "MyExtension",
  "version": "0.1",
  "description": "All requests are under control!",
   "permissions": [
        "tabs",
        "webRequest",
        "http://*/*"
  ],
  "background": {
    "scripts": ["background.js"]
  },

  "manifest_version": 2
}

background.js:

chrome.webRequest.onCompleted.addListener(
  function(details) {
  console.log(details);
  console.log(chrome.tabs.getCurrent());

  },
   {urls: ["http://*/*"],
   types: ["image"]});

しかし、今、私は知りたいのですが、どのページ(タブ?)がこのリクエストを作成しましたか?

例えば:

Request 1 - generated by google.com page,
Request 2 - generated by stackoverflow.com.

どうすればこのタスクを解決できますか?

4

1 に答える 1

4

次のコードは、Web リクエストを生成したタブ\ページの詳細をフェッチします。

onCompleted Listenerタブを識別するtabIdプロパティがあり、タブのすべての詳細を取得できます。

chrome.webRequest.onCompleted.addListener(

function (details) {
    chrome.tabs.get(details.tabId, function (tab) {
        console.log("This  " + JSON.stringify(details) + " Web request is from this " + tab.id + " tab and its details are" + JSON.stringify(tab));
    });
}, {
    urls: ["http://*/*"],
    types: ["image"]
});

サンプル出力

This  {"frameId":0,"fromCache":true,"ip":"74.125.236.63","method":"GET","parentFrameId":-1,"requestId":"563","statusCode":200,"statusLine":"HTTP/1.1 200 OK","tabId":64,"timeStamp":1359389270317.956,"type":"image","url":"http://www.google.co.in/images/srpr/logo3w.png"} Web request is from this 64 tab and its details are{"active":true,"highlighted":true,"id":64,"incognito":false,"index":4,"pinned":false,"selected":true,"status":"loading","title":"Google","url":"http://www.google.co.in/","windowId":1} 
于 2013-01-28T16:12:12.677 に答える