我只有这个脚本可以打开当前窗口的标签,实际上代码很简单:
chrome.windows.getCurrent(function(win)
{
chrome.tabs.getAllInWindow(win.id, function(tabs)
{
// Should output an array of tab objects to your dev console.
console.log(tabs);
});
});
使用alert()
代替console.log()
时,效果很好,并将标签作为对象提醒,但使用console.log()
时,不会显示任何内容,甚至不会显示错误。
单击扩展按钮时会启动脚本。