forked from d3cim/mobile_user.js
Update 'user.js'
This commit is contained in:
parent
f4e76e1bb6
commit
ad9f74e151
28
user.js
28
user.js
|
@ -179,12 +179,6 @@ user_pref("services.settings.server", "");
|
|||
user_pref("browser.search.update", 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)
|
||||
user_pref("extensions.getAddons.showPane", false); // [HIDDEN PREF]
|
||||
// -------------------------------------
|
||||
|
@ -1040,12 +1034,6 @@ user_pref("privacy.userContext.enabled", true);
|
|||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// 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)
|
||||
// https://wiki.mozilla.org/GeckoMediaPlugins
|
||||
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+]
|
||||
// https://bugzilla.mozilla.org/1689405
|
||||
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]
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
//
|
Loading…
Reference in New Issue