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

后端 未结 2 1409
囚心锁ツ
囚心锁ツ 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() {});
    });
    

提交回复
热议问题