mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 04:43:07 +09:00
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function startup(data, reason) {
|
|
Services.prefs.setIntPref("bootstraptest.active_version", 1);
|
|
}
|
|
|
|
function shutdown(data, reason) {
|
|
Services.prefs.setIntPref("bootstraptest.active_version", 0);
|
|
}
|