Dactyloidae/toolkit/mozapps/extensions/test/addons/test_jetpack/bootstrap.js

17 lines
465 B
JavaScript
Raw Normal View History

2018-02-10 04:00:58 -05:00
Components.utils.import("resource://gre/modules/Services.jsm");
function install(data, reason) {
Services.prefs.setIntPref("jetpacktest.installed_version", 1);
}
function startup(data, reason) {
Services.prefs.setIntPref("jetpacktest.active_version", 1);
}
function shutdown(data, reason) {
Services.prefs.setIntPref("jetpacktest.active_version", 0);
}
function uninstall(data, reason) {
Services.prefs.setIntPref("jetpacktest.installed_version", 0);
}