Sat, 25 Apr 2009
Firefox Tweaks
Over a period of time i have collected some tweaks which really speed up firefox.
Here are the tweaks.If you want to just copy paste in your prefs.js you can scroll to the bottom of this post and copy paste it.
Various config options with description
user_pref("browser.cache.disk_cache_ssl", true);//Enable Disk cache for SSL.Be careful if you are on a public computer don't use.
user_pref("browser.chrome.favicons", false);//Disable Favicons.They are fancy initially but unnecessarily increases requests on the server
user_pref("browser.chrome.site_icons", false);//Disable Favicons.They are fancy initially but unnecessarily increases requests on the server
user_pref("network.dns.disableIPv6", true);//If you don't use firefox on a ipv6 network disable it as it will increase your browsing speed as it will not wait for Ipv6 dns requests.
user_pref("network.dnsCacheEntries", 120);//Number of DNS entries to keep in memory.
user_pref("network.dnsCacheExpiration", 600);//Number of seconds DNS entries are cached.
user_pref("network.http.pipelining", true);//Enable pipelining
user_pref("network.http.pipelining.maxrequests", 8);//Max requests for pipelining
user_pref("network.http.pipelining.ssl", true);//enable pipelining for SSL that is HTTPS
user_pref("network.http.proxy.pipelining", true);//Enable pipelining for Proxy
user_pref("network.prefetch-next", false);//Disable fetching all links on a given page.This is useless and wastes precious internet bandwidth by downloading each and every link on any page you search
Code to copy paste in prefs.js in your profile directory.
Here are the tweaks.If you want to just copy paste in your prefs.js you can scroll to the bottom of this post and copy paste it.
Various config options with description
user_pref("browser.cache.disk_cache_ssl", true);//Enable Disk cache for SSL.Be careful if you are on a public computer don't use.
user_pref("browser.chrome.favicons", false);//Disable Favicons.They are fancy initially but unnecessarily increases requests on the server
user_pref("browser.chrome.site_icons", false);//Disable Favicons.They are fancy initially but unnecessarily increases requests on the server
user_pref("network.dns.disableIPv6", true);//If you don't use firefox on a ipv6 network disable it as it will increase your browsing speed as it will not wait for Ipv6 dns requests.
user_pref("network.dnsCacheEntries", 120);//Number of DNS entries to keep in memory.
user_pref("network.dnsCacheExpiration", 600);//Number of seconds DNS entries are cached.
user_pref("network.http.pipelining", true);//Enable pipelining
user_pref("network.http.pipelining.maxrequests", 8);//Max requests for pipelining
user_pref("network.http.pipelining.ssl", true);//enable pipelining for SSL that is HTTPS
user_pref("network.http.proxy.pipelining", true);//Enable pipelining for Proxy
user_pref("network.prefetch-next", false);//Disable fetching all links on a given page.This is useless and wastes precious internet bandwidth by downloading each and every link on any page you search
Code to copy paste in prefs.js in your profile directory.
user_pref("browser.backspace_action", 0);
user_pref("browser.cache.disk.capacity", 120000);
user_pref("browser.cache.disk_cache_ssl", true);
user_pref("browser.chrome.favicons", false);
user_pref("browser.chrome.site_icons", false);
user_pref("network.dns.disableIPv6", true);
user_pref("network.dnsCacheEntries", 120);
user_pref("network.dnsCacheExpiration", 600);
user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.pipelining.ssl", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.prefetch-next", false);
user_pref("browser.cache.disk.capacity", 120000);
user_pref("browser.cache.disk_cache_ssl", true);
user_pref("browser.chrome.favicons", false);
user_pref("browser.chrome.site_icons", false);
user_pref("network.dns.disableIPv6", true);
user_pref("network.dnsCacheEntries", 120);
user_pref("network.dnsCacheExpiration", 600);
user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.pipelining.ssl", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.prefetch-next", false);
posted at: 16:21 | category: /firefox | permanent link to this entry


