我希望能够专注于特定标签。
chrome.tabs.query
之后我得到id
,但如何将焦点设置在该标签上?我在文档中没有看到此选项。
答案 0 :(得分:15)
您应该可以使用chrome.tabs.update执行此操作。
var updateProperties = { 'active': true };
chrome.tabs.update(tabId, updateProperties, (tab) => { });
答案 1 :(得分:0)
您也可以使用https://developer.chrome.com/extensions/tabs#method-highlight
chrome.tabs.get(tabId, function(tab) {
chrome.tabs.highlight({'tabs': tab.index}, function() {});
});