Created
May 21, 2015 21:38
-
-
Save lelinhtinh/7f84ac5bb7a678d5152e to your computer and use it in GitHub Desktop.
Mở trang tùy chọn của addon Firefox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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