Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Created May 21, 2015 21:38
Show Gist options
  • Save lelinhtinh/7f84ac5bb7a678d5152e to your computer and use it in GitHub Desktop.
Save lelinhtinh/7f84ac5bb7a678d5152e to your computer and use it in GitHub Desktop.
Mở trang tùy chọn của addon Firefox
// http://stackoverflow.com/a/22601737/4926686
var self = require('sdk/self'),
tabs = require('sdk/tabs');
tabs.open({
url: 'about:addons',
onReady: function (tab) {
tab.attach({
contentScriptWhen: 'end',
contentScript: 'AddonManager.getAddonByID("' + self.id + '", function(aAddon) {unsafeWindow.gViewController.commands.cmd_showItemDetails.doCommand(aAddon, true);});'
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment