Another Firefox Tweak
Well, I found another firefox tweak. Just thought I post it here for future reference. Copy this code into your user.js file and restart the browser.
/* Do not remove the @namespace line--it's required for correct functioning */
/* Set default namespace to XUL */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Shell security fix */
user_pref("network.protocol-handler.external.shell", false);
/* Enable=true Disable=false pipelining */
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 4);
user_pref("network.http.max-connections", 24);
user_pref("network.http.max-connections-per-server", ;
user_pref("network.http.max-persistent-connections-per-server", 4);
user_pref("signed.applets.codebase_principal_support", true);
/* Disabling IPv6 seems to significantly increase site loading speeds */
user_pref("network.dns.disableIPv6", true);
/* Last value in milliseconds (default is 1200 for Firefox | 250 for Mozilla) */
user_pref("nglayout.initialpaint.delay", 1000);
user_pref("content.switch.threshold", 1000000);
/* Turn on timer-based reflow management */
user_pref("content.notify.ontimer", true);
/* Sets the allowed time between reflows in microseconds */
user_pref("content.notify.interval", 100);
/* Set the number of reflows to do before waiting for the rest of the page to arrive */
user_pref("content.notify.backoffcount", 200);
/* Speed restoring Mozilla Firefox after it has been minimized for several hours */
user_pref("config.trim_on_minimize", "false");
0 Comments:
Post a Comment
<< Home