is there a way to focus on a specific tab in chrome (via plugin)

后端 未结 2 1350
囚心锁ツ
囚心锁ツ 2020-12-31 10:40

I want to be able to focus on a specific tab.

After chrome.tabs.query I get the id but how do I set focus on that tab? I don\'t see this op

相关标签:
2条回答
  • 2020-12-31 11:06

    You can also use https://developer.chrome.com/extensions/tabs#method-highlight

    chrome.tabs.get(tabId, function(tab) {
      chrome.tabs.highlight({'tabs': tab.index}, function() {});
    });
    
    0 讨论(0)
  • 2020-12-31 11:16

    You should be able to do this with chrome.tabs.update.

    var updateProperties = { 'active': true };
    chrome.tabs.update(tabId, updateProperties, (tab) => { });
    
    0 讨论(0)
提交回复
热议问题