Skip to content

Instantly share code, notes, and snippets.

@rhelmer
Created January 3, 2017 18:44
Show Gist options
  • Select an option

  • Save rhelmer/f3db0702974ef47bdb63ecb691ab0d30 to your computer and use it in GitHub Desktop.

Select an option

Save rhelmer/f3db0702974ef47bdb63ecb691ab0d30 to your computer and use it in GitHub Desktop.
function startup(data) {
Services.obs.addObserver(ExtensionManager, "EM-loaded", false);
}
function shutdown(reason) {
Services.obs.removeObserver(ExtensionManager, "EM-loaded", false);
}
let ExtensionManager = {
observe: function(aSubject, aTopic, aData) {
// aSubject will be the window that about:addons is opened in
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment