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

后端 未结 2 1404
囚心锁ツ
囚心锁ツ 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:16

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

    var updateProperties = { 'active': true };
    chrome.tabs.update(tabId, updateProperties, (tab) => { });
    

提交回复
热议问题