22

chrome扩展是否可以使用chrome扩展获取所有选项卡中的所有URL?

我使用此代码获得了当前选项卡的 url

chrome.tabs.getSelected(null, function(tab) {
    tabUrl = tab.url;
    alert(tabUrl);
});

我们需要 manifest.json 文件中的以下权限

"permissions": [
    "tabs"
]

我的问题是找出所有标签中的 URL 吗?

4

2 回答 2

31

你可以这样做:

chrome.windows.getAll({populate:true},function(windows){
  windows.forEach(function(window){
    window.tabs.forEach(function(tab){
      //collect all of the urls here, I will just log them instead
      console.log(tab.url);
    });
  });
});
于 2013-04-24T07:01:02.607 回答
19

使用chrome.tabs.query方法,你也可以简单地做,

 chrome.tabs.query({},function(tabs){     
    console.log("\n/////////////////////\n");
    tabs.forEach(function(tab){
      console.log(tab.url);
    });
 });
于 2014-05-17T15:27:25.897 回答