标签页管理

相关文档

本节将讲解如果对标签页进行管理, 相关手册地址:

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, ()=>{})
    }
);