Skip to content

Instantly share code, notes, and snippets.

@jorendorff
Created May 4, 2012 19:47
Show Gist options
  • Save jorendorff/2597280 to your computer and use it in GitHub Desktop.
Save jorendorff/2597280 to your computer and use it in GitHub Desktop.
Components.utils.import("resource://gre/modules/AddonManager.jsm", null); //Getting Info of all addons & their URLS...
AddonManager.getAllAddons(function(addons) {
var s = '';
for (var addon of addons) {
if (addon.type == 'extension')
s += addon.getResourceURI().spec + '\n';
}
alert(s);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment