本节将讲解如果对标签页进行管理, 相关手册地址:
https://open.se.360.cn/open/extension_dev/tabs.html
// 以 popup.js 为例
$('#menu-5').click(function(){
chrome.windows.getCurrent(function(currentWindow)
{
chrome.tabs.create({url: 'https://www.baidu.com/s?ie=utf-8&wd=php'});
});
});
chrome.tabs.query(
{active: true, currentWindow: true},
tabs => alert(tabs[0].id)
);
chrome.tabs.query(
{active: true, currentWindow: true},
function(tabs) {
chrome.tabs.remove(tabs[0].id, ()=>{})
}
);