Am I missing something in the Chrome tabs documentation or is there a way for an extension to change the currently active tab?
I have an extension which, once the tab ha
You can make a tab selected with:
chrome.tabs.update(tabId, {highlighted: true});
Chrome API is available inside notification html, so you can call any chrome.* method you like.
chrome.*