diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | config.js | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -20,4 +20,4 @@ trademark; you are not granted any right to distribute modified binary versions of the software containing the official branding. (C) 2018-2019 Mozilla, MPL v2 -(C) 2019 //gir.st/, MPL v2 +(C) 2019-2020 //gir.st/, MPL v2 @@ -1,11 +1,14 @@ // keep this comment try { let Xdb = Cu.import('resource://gre/modules/addons/XPIDatabase.jsm', {}); + Xdb.XPIDatabase.isDisabledLegacy = (addon) => false; Xdb.XPIDatabase['SIGNED_TYPES'].clear(); Xdb.AddonSettings = { "REQUIRE_SIGNING": false, "LANGPACKS_REQUIRE_SIGNING": false, - "ALLOW_LEGACY_EXTENSIONS": true, + "ALLOW_LEGACY_EXTENSIONS": true, // <=fx73 + "EXPERIMENTS_ENABLED": true, // >=fx74 + "DEFAULT_THEME_ID": "default-theme@mozilla.org", }; const {FileUtils} = Cu.import('resource://gre/modules/FileUtils.jsm'); |