forked from d3cim/mobile_user.js
Update 'user.js (less connections)'
This commit is contained in:
parent
5edacfb75c
commit
f28400acb5
|
@ -539,6 +539,11 @@ user_pref("browser.contentHandlers.types.3.uri", ""); // [FENNEC]
|
|||
// https://bugzilla.mozilla.org/show_bug.cgi?id=888268
|
||||
user_pref("network.tickle-wifi.enabled", false);
|
||||
// -------------------------------------
|
||||
// Pref : Disable SSL False Start for HTTPS/WebSockets/SPDY connections
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=658222
|
||||
// Avoid the client to complete its handshake before starting the actual session
|
||||
user_pref("security.ssl.enable_false_start", false);
|
||||
//--------------------------------------
|
||||
// Pref : Disable Corroborate.jsm telemetry
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=1608308
|
||||
user_pref("corroborator.enabled", false); // [DESKTOP]
|
||||
|
@ -1827,7 +1832,7 @@ user_pref("browser.cache.disk.smart_size.first_run", false);
|
|||
// -------------------------------------
|
||||
// Pref : Disable memory cache
|
||||
// Capacity: -1=determine dynamically (default), 0=none, n=memory capacity in kilobytes
|
||||
// user_pref("browser.cache.memory.enable", false);
|
||||
user_pref("browser.cache.memory.enable", false);
|
||||
// user_pref("browser.cache.memory.capacity", 0);
|
||||
// -------------------------------------
|
||||
// Pref : Disable permissions manager from writing to disk
|
||||
|
@ -2283,7 +2288,7 @@ user_pref("network.cookie.same-site.enabled", true); // [DEFAULT: true]
|
|||
// Pref : Disable DOM (Document Object Model) Storage
|
||||
// [WARNING] This will break a LOT of sites' functionality AND extensions!
|
||||
// You are better off using an extension for more granular control
|
||||
// user_pref("dom.storage.enabled", false);
|
||||
user_pref("dom.storage.enabled", false);
|
||||
// -------------------------------------
|
||||
// Pref : Do not download URLs for the offline cache
|
||||
user_pref("browser.cache.offline.storage.enable", false);
|
||||
|
|
Loading…
Reference in New Issue