forked from d3cim/mobile_user.js
Update 'user.js'
This commit is contained in:
parent
2f4ee5a41e
commit
37d1140f80
23
user.js
23
user.js
|
@ -1004,9 +1004,6 @@ user_pref("dom.push.connection.enabled", false);
|
|||
user_pref("dom.push.userAgentID", "");
|
||||
user_pref("dom.push.udp.wakeupEnabled", false); // [DESKTOP]
|
||||
// -------------------------------------
|
||||
// Pref : Disable hiding mime types not associated with a plugin
|
||||
user_pref("browser.download.hide_plugins_without_extensions", false); // [DESKTOP]
|
||||
// -------------------------------------
|
||||
// Pref : Disable PiP (Picture-in-picture)
|
||||
user_pref("media.videocontrols.picture-in-picture.enabled", false);
|
||||
user_pref("media.videocontrols.picture-in-picture.video-toggle.enabled", false);
|
||||
|
@ -1498,12 +1495,6 @@ user_pref("security.tls.version.enable-deprecated", false);
|
|||
// user_pref("security.tls.version.min", 3); // [DEFAULT: 3]
|
||||
// user_pref("security.tls.version.max", 4);
|
||||
// -------------------------------------
|
||||
// Pref : Disable SSL Error Reporting
|
||||
// https://firefox-source-docs.mozilla.org/browser/base/sslerrorreport/preferences.html
|
||||
user_pref("security.ssl.errorReporting.enabled", false);
|
||||
user_pref("security.ssl.errorReporting.automatic", false);
|
||||
user_pref("security.ssl.errorReporting.url", "");
|
||||
// -------------------------------------
|
||||
// Pref : Disable SSL session tracking
|
||||
// SSL Session IDs are unique, last up to 24hrs in Firefox, and can be used for tracking
|
||||
// https://tools.ietf.org/html/rfc5077
|
||||
|
@ -1797,7 +1788,7 @@ user_pref("privacy.popups.showBrowserMessage", true); // [DEFAULT: true]
|
|||
user_pref("dom.popup_maximum", 0); // [DEFAULT: 20]
|
||||
// -------------------------------------
|
||||
// Pref : Limit events that can cause a popup
|
||||
user_pref("dom.popup_allowed_events", "click dblclick"); // [DEFAULT: "change click dblclick auxclick mouseup pointerup notificationclick reset submit touchend"]
|
||||
user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); // [DEFAULT: "change click dblclick auxclick mousedown mouseup pointerdown pointerup notificationclick reset submit touchend contextmenu"]
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// Section : Cache / Session (Re)Store / Favicons
|
||||
|
@ -2650,6 +2641,18 @@ user_pref("view_source.wrap_long_lines", true);
|
|||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// Section : Deprecated / Removed / Legacy / Renamed
|
||||
// >>>>>>>>>>>>>>>>>>>>
|
||||
// FF86
|
||||
// Pref : 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", "");
|
||||
// -------------------------------------
|
||||
// Pref : 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); // [DESKTOP]
|
||||
// -------------------------------------
|
||||
// FF79
|
||||
// -------------------------------------
|
||||
// Pref: Enforce fallback text encoding to match en-US
|
||||
|
|
Loading…
Reference in New Issue