Search code examples
firefoxtabsfirefox-addondom-events

Switching tab in the Firefox extension


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.


Solution

  • You can add an event listener:

    gBrowser.addEventListener("select", function(event)
    {
      // Tab switched, do something
    }, false);