Update 'user.js'
This commit is contained in:
parent
a533045d36
commit
735d0f9289
27
user.js
27
user.js
|
@ -733,12 +733,6 @@ user_pref("security.tls.version.enable-deprecated", false);
|
|||
// https://arxiv.org/abs/1810.07304 ***/
|
||||
user_pref("security.ssl.disable_session_identifiers", true); // [HIDDEN PREF]
|
||||
// -------------------------------------
|
||||
// Disable SSL Error Reporting
|
||||
// https://firefox-source-docs.mozilla.org/browser/base/sslerrorreport/preferences.html ***/
|
||||
user_pref("security.ssl.errorReporting.automatic", false);
|
||||
user_pref("security.ssl.errorReporting.enabled", false);
|
||||
user_pref("security.ssl.errorReporting.url", "");
|
||||
// -------------------------------------
|
||||
// Disable TLS1.3 0-RTT (round-trip time) [FF51+]
|
||||
// https://github.com/tlswg/tls13-spec/issues/1001
|
||||
// https://blog.cloudflare.com/tls-1-3-overview-and-q-and-a/ ***/
|
||||
|
@ -1032,7 +1026,7 @@ user_pref("webgl.enable-webgl2", false);
|
|||
// -------------------------------------
|
||||
// Limit WebGL ***/
|
||||
user_pref("webgl.min_capability_mode", true);
|
||||
user_pref("webgl.disable-fail-if-major-performance-caveat", true);
|
||||
user_pref("webgl.disable-fail-if-major-performance-caveat", true); // [DEFAULT: true FF86+]
|
||||
// -------------------------------------
|
||||
// Disable screensharing ***/
|
||||
user_pref("media.getusermedia.screensharing.enabled", false);
|
||||
|
@ -1083,8 +1077,8 @@ user_pref("browser.link.open_newwindow.restriction", 0);
|
|||
user_pref("dom.disable_open_during_load", true);
|
||||
// -------------------------------------
|
||||
// Limit events that can cause a popup [SETUP-WEB]
|
||||
// default is "change click dblclick auxclick mouseup pointerup notificationclick reset submit touchend contextmenu" ***/
|
||||
user_pref("dom.popup_allowed_events", "click dblclick");
|
||||
// default FF86+: "change click dblclick auxclick mousedown mouseup pointerdown pointerup notificationclick reset submit touchend contextmenu" ***/
|
||||
user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown");
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// WEB WORKERS
|
||||
|
@ -1355,9 +1349,6 @@ user_pref("browser.download.useDownloadDir", false);
|
|||
// Disable adding downloads to the system's "recent documents" list ***/
|
||||
user_pref("browser.download.manager.addToRecentDocs", false);
|
||||
// -------------------------------------
|
||||
// Disable hiding mime types (Options>General>Applications) not associated with a plugin ***/
|
||||
user_pref("browser.download.hide_plugins_without_extensions", false);
|
||||
// -------------------------------------
|
||||
// Disable "open with" in download dialog [FF50+] [SETUP-HARDEN]
|
||||
// This is very useful to enable when the browser is sandboxed (e.g. via AppArmor)
|
||||
// in such a way that it is forbidden to run external applications.
|
||||
|
@ -1746,6 +1737,18 @@ user_pref("network.manage-offline-status", false); // see bugzilla 620472
|
|||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// DEPRECATED / REMOVED / LEGACY / RENAMED
|
||||
// >>>>>>>>>>>>>>>>>>>>>
|
||||
// FF86
|
||||
// Disable SSL Error Reporting
|
||||
// https://firefox-source-docs.mozilla.org/browser/base/sslerrorreport/preferences.html
|
||||
// https://bugzilla.mozilla.org/1681839
|
||||
user_pref("security.ssl.errorReporting.automatic", false);
|
||||
user_pref("security.ssl.errorReporting.enabled", false);
|
||||
user_pref("security.ssl.errorReporting.url", "");
|
||||
// -------------------------------------
|
||||
// Disable hiding mime types (Options>General>Applications) not associated with a plugin
|
||||
// https://bugzilla.mozilla.org/1581678
|
||||
user_pref("browser.download.hide_plugins_without_extensions", false);
|
||||
// -------------------------------------
|
||||
// FF79
|
||||
// Enforce fallback text encoding to match en-US
|
||||
// When the content or server doesn't declare a charset the browser will
|
||||
|
|
Loading…
Reference in New Issue