Page 1 of 1

Firefox Speed Tweak

PostPosted: Sun 2008 Mar 09 10:36
by Spock
Ref: Broadband Reports
See also: Firefox useful preferences and Customizing Firefox

If you have a computer and a fast Internet connection, add the following user.js file to your Mozilla Firefox\defaults\profile folder to speed up your Internet browsing:

Code: Select all
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 360000);
user_pref("content.maxtextrun", 8191);
user_pref("content.notify.backoffcount", 5);
user_pref("content.notify.interval", 120000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);

user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 32);
user_pref("network.http.max-persistent-connections-per-proxy", 20);
user_pref("network.http.max-persistent-connections-per-server", 16);

user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("nglayout.initialpaint.delay", 50);

user_pref("network.http.keep-alive.timeout", 30);
user_pref("network.http.request.max-start-delay", 4);
user_pref("network.http.connect.timeout", 30);
user_pref("network.dnsCacheExpiration", 60);
user_pref("network.dnsCacheEntries", 20);
user_pref("network.ftp.idleConnectionTimeout", 60);