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
chrome.tabs.query
id
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() {}); });