我想使用带有Chrome扩展名的tabid删除标签。
我尝试使用chrome.tabs.getcurrent和chrome.tabs.query api获取当前选项卡,但它们都不适合我。
chrome.tabs.query({ active: true ,currentwindow: true}, function (tab) {
chrome.tabs.remove(tab.id);
});
和
chrome.tabs.getCurrent(function (tab) {
chrome.tabs.remove(tab.id);
});
预期结果:需要从Chrome中删除当前标签页。 实际结果:制表符长度为0。