diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | config.js | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -8,8 +8,6 @@ Monkeypatching Firefox Quantum to run VimFx 2. Install VimFx from https://github.com/akhodakivskiy/VimFx/releases == Notes == - * set `xpinstall.signatures.required;false` to downgrade the error message - that unsigned addons were supposedly disabled in about:config to a warning. * Users of firefox-esr on debian need to use the following command: `make DESTDIR=/usr/lib/firefox-esr install` * BootstrapLoader.jsm, RDFDataSource.jsm, RDFManifestConverter.jsm from their @@ -18,6 +18,9 @@ try { const {AddonManager} = Cu.import('resource://gre/modules/AddonManager.jsm'); const {BootstrapLoader} = Cu.import('resource://legacy/BootstrapLoader.jsm'); AddonManager.addExternalExtensionLoader(BootstrapLoader); + + const {Services} = Cu.import('resource://gre/modules/Services.jsm'); + Services.prefs.setBoolPref('xpinstall.signatures.required', false); } catch(ex) { Components.utils.reportError(ex.message); } |