谷歌浏览器:如何确定哪个窗口生成了WebRequest?

时间:2013-01-28 14:47:12

标签: javascript google-chrome google-chrome-extension

我已经写过chome扩展,它在浏览器中处理所有请求:

的manifest.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.

我该如何解决这个问题?

1 个答案:

答案 0 :(得分: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}