我想使用键盘快捷键打开和关闭firefox插件。这甚至可以吗?
我正在运行Ubuntu 14.06,所以终端命令也可以接受。
答案 0 :(得分:1)
是绝对可能的:
Cu.import('resource://gre/modules/AddonManager.jsm');
AddonManager.getAddonByID('Profilist@jetpack', function(addon) {
if (addon.userDisabled) {
//enable it
addon.userDisabled = false;
} else {
//disable it
addon.userDisabled = true;
}
});