I am working on Firefox addon on Mac OS, where I want to notify my XPCOM component when user disables the add-on.This is working except for the event is posted more than once(equal to the number of FF Windows open), this is happening since the AddonManager.addAddonListener(nsListener); is called on the onload(window.addEventListener("load", function(e) { TopWnd.onLoad(e); }, false);) in browser overlay js for all windows and the event "onDisabling" is called in each window.
var nsListener = {
onDisabling: function(addon, needsRestart)
{
if (addon.id.toLowerCase() == "XXXXXXX")
{
var observerService = Components.classes["@mozilla.org/observer-service;1"]
.getService(Components.interfaces.nsIObserverService);
if (observerService) {
observerService.notifyObservers(null, "ext-disable", "Ext is disabled");
}
}
}
}
To avoid notifying XPCOM component from all windows, I want to determine if the current opened tab/window is the add-on page and only then add the AddonManager.addAddonListener(nsListener); or notify only from that page.What is the best way to determine if the current window/tab is add-on page.
Please help.