mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 10:53:11 +09:00
17 lines
465 B
JavaScript
17 lines
465 B
JavaScript
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);
|
|
}
|