Update 'user.js'

This commit is contained in:
Narsil 2021-05-06 13:58:34 -04:00
parent f4e76e1bb6
commit ad9f74e151
1 changed files with 16 additions and 12 deletions

28
user.js
View File

@ -179,12 +179,6 @@ user_pref("services.settings.server", "");
user_pref("browser.search.update", false); user_pref("browser.search.update", false);
user_pref("browser.search.update.log", false); user_pref("browser.search.update.log", false);
// ------------------------------------- // -------------------------------------
// Disable sending Flash crash reports
user_pref("dom.ipc.plugins.flash.subprocess.crashreporter.enabled", false);
// -------------------------------------
// Disable sending the URL of the website where a plugin crashed
user_pref("dom.ipc.plugins.reportCrashURL", false);
// -------------------------------------
// Disable about:addons' Recommendations pane (uses Google Analytics) // Disable about:addons' Recommendations pane (uses Google Analytics)
user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF] user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF]
// ------------------------------------- // -------------------------------------
@ -1040,12 +1034,6 @@ user_pref("privacy.userContext.enabled", true);
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// PLUGINS // PLUGINS
// >>>>>>>>>>>>>>>>>>>>> // >>>>>>>>>>>>>>>>>>>>>
// Disable Flash plugin
// 0=deactivated, 1=ask, 2=enabled
// ESR52.x is the last branch to *fully* support NPAPI, FF52+ stable only supports Flash
// [NOTE] You can still override individual sites via site permissions
user_pref("plugin.state.flash", 0);
// -------------------------------------
// Disable GMP (Gecko Media Plugins) // Disable GMP (Gecko Media Plugins)
// https://wiki.mozilla.org/GeckoMediaPlugins // https://wiki.mozilla.org/GeckoMediaPlugins
user_pref("media.gmp-provider.enabled", false); user_pref("media.gmp-provider.enabled", false);
@ -1855,5 +1843,21 @@ user_pref("browser.download.hide_plugins_without_extensions", false);
// Disable Activity Stream recent Highlights in the Library [FF57+] // Disable Activity Stream recent Highlights in the Library [FF57+]
// https://bugzilla.mozilla.org/1689405 // https://bugzilla.mozilla.org/1689405
user_pref("browser.library.activity-stream.enabled", false); user_pref("browser.library.activity-stream.enabled", false);
// -------------------------------------
// FF89
// Disable sending Flash crash reports
// https://bugzilla.mozilla.org/1682030 [underlying NPAPI code removed]
user_pref("dom.ipc.plugins.flash.subprocess.crashreporter.enabled", false);
// -------------------------------------
// Disable sending the URL of the website where a plugin crashed
// https://bugzilla.mozilla.org/1682030 [underlying NPAPI code removed]
user_pref("dom.ipc.plugins.reportCrashURL", false);
// -------------------------------------
// Disable Flash plugin
// 0=deactivated, 1=ask, 2=enabled
// ESR52.x is the last branch to *fully* support NPAPI, FF52+ stable only supports Flash
// [NOTE] You can still override individual sites via site permissions
// https://bugzilla.mozilla.org/1682030 [underlying NPAPI code removed]
user_pref("plugin.state.flash", 0); // [DEFAULT: 1]
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// //