As a Google Chrome extension, is it possible to listen to tab switches? That is, to be notified when a tab switch has just happened?
(I want to make an extension that, in fullscreen, when switching tabs with the usual Ctrl+PageUp and Ctrl+PageDown keyboard shortcuts, gives visual feedback of the switch and other currently available tabs.)
In your manifest.json file add the following:
"permissions":[
"background",
"tabs"
],
"background" : {
"scripts": ["scripts/background.js"],
"persistent": false
}
In your background.js:
chrome.tabs.onActivated.addListener(function(activeInfo) {
console.log(activeInfo.tabId);
});
It's possible, see onActivated
at https://developer.chrome.com/docs/extensions/reference/tabs/#event-onActivated
note: tab url may not be available when using chrome.tabs.onActivated
so use chrome.tabs.onUpdated instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With