我想获取当前窗口的当前标签。 考虑我有3个Chrome窗口,每个窗口中都没有几个标签。
当我尝试以下代码(在background.js中)时,我得到了空的标签数组:
chrome.tabs.query({
active: true,
currentWindow: true
}, function(tabs) {
console.log(tabs);
});
但是,当我在没有“ currentWindow”属性的情况下运行它时:
chrome.tabs.query({
active: true
}, function(tabs) {
console.log(tabs);
});
我得到的标签是3个元素的数组,但不知道谁是当前窗口。
我在清单中具有以下权限:
"permissions": ["activeTab","tabs"]
请帮助