chrome扩展是否可以使用chrome扩展获取所有选项卡中的所有URL?
我使用此代码获得了当前选项卡的 url
chrome.tabs.getSelected(null, function(tab) {
tabUrl = tab.url;
alert(tabUrl);
});
我们需要 manifest.json 文件中的以下权限
"permissions": [
"tabs"
]
我的问题是找出所有标签中的 URL 吗?
chrome扩展是否可以使用chrome扩展获取所有选项卡中的所有URL?
我使用此代码获得了当前选项卡的 url
chrome.tabs.getSelected(null, function(tab) {
tabUrl = tab.url;
alert(tabUrl);
});
我们需要 manifest.json 文件中的以下权限
"permissions": [
"tabs"
]
我的问题是找出所有标签中的 URL 吗?
你可以这样做:
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);
});
});
});
使用chrome.tabs.query方法,你也可以简单地做,
chrome.tabs.query({},function(tabs){
console.log("\n/////////////////////\n");
tabs.forEach(function(tab){
console.log(tab.url);
});
});