I want to know a tab event for Firefox extension to capture the event of switching from new tab to the older tab. I want to know event for switching from the new tab to the old tab.
You can add an event listener:
gBrowser.addEventListener("select", function(event)
{
// Tab switched, do something
}, false);