Following are a few interesting tips for Firefox which can speed up and can add new functionalities to Firefox.
1. Follow steps:
=> Type "about:config" in the adress field.
=> Set the value of network.http.pipelining to "true".
=> Set the value of network.http.pipelining.maxrequests to "100".
=> Set the value of network.http.proxy.pipelining to "true"
2. In the firefox address bar, type "about:config". In the filter box that appears at the top, type "turbo" and hit enter. Double click on the result that comes up and in the box type "true." Finally, sit back, do some browsing, and watch the magic.
NOTE: If you don't find "turbo" key, then right-click on the empty area and select "New -> Boolean". Give it name browser.turbo.enabled and set its value to true.
3. Remove the close button from the tab bar
You can remove the close button from the tab bar by adding the following code to your userChrome.css file:
/* Remove the close button on the tab bar */
.tabs-closebutton {
display: none !important;
}
You can still close tabs by right clicking on them and select Close Tab, or by pressing Ctrl+W or Ctrl+F4.
Note: You can Undo Closed Tabs by using Ctrl+Shift+T.
4. Remove items from the main menu
Some people like to place all their toolbar items on the same row as the menu. In order to save horizontal space, you can remove top menu items that you don't use. Add the following code to your userChrome.css file:
/* Remove the Go and Help menus
(These are just examples. Try changing "Go" to "Edit" or "Bookmarks") */
menu[label="Go"], menu[label="Help"] {
display: none !important;
}
5. Change the cursor for links that open in new window
This neat trick will change the mouse pointer when you hover it over links that will open a new window. Add the following code to your userContent.css file:
/* Change cursor for links that open in new window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"], :visited[target="_new"] {
cursor: crosshair;
}
6. Change the cursor for JavaScript links
This tip will change the mouse pointer when you hover it over links that will perform a JavaScript command. Add the following code to your userContent.css file:
Complete list of AskVG articles/* Change cursor for JavaScript links */
a[href^="javascript:"] {
cursor: move;
}
This article was posted in Mozilla Firefox.
Related Articles
Popular Articles
- Frequently Asked Problems with Solutions
- Is Your System Infected with a Virus / Spyware / Adware / Trojan?
- Transform Windows Vista into 7 without using Customization pack
- Transform Windows XP into 7 without using Customization pack
- Transform Windows XP into Vista without using Customization pack
- All About Resource Hacker in a brief Tutorial
- Master Tutorial to Make Your Windows 7 Super Fast
- Master Tutorial to Make Your Windows Vista Super Fast
- Master Tutorial to Make Your Windows XP Super Fast
- All Kinds of Restrictions for Windows XP, Vista and 7



VG
Thanks for your kind words. I'm glad you liked the tweaks. If I come across more tweaks, I'll definitely post here.
anniesegatlesbian
Hey
ive done the first 2 tips, and it made my firefox faster, but very often made it really slow and not responding.
Sorry if i didnt make sense, it became not responding for a while and then continues loading a page.
Is this a side effect of the tricks?
Thnx anyway.
VG
^^ Nope. These tips has nothing to do with slowness or any other side effects. It must be some other problem like extension problem. Try to clear the cache and uninstall unnecessary extensions.
lovinit
hey,
thanks for tips!
I would however like to know how to revert them?
I mean, obviously for some you just change true back to false, however what was the original 'pipeliningmaxrequests'?
thanks. love your site.
VG
^^ Default value is 4.
Rowdyruffboy
heya...i have a problem with my firefox..
once firefox was installing a update and suddenly my UPS got stuck....
and then whenever i tried to run firefox..it always give me error of "could not connect to server"
Please help me...
VG
^^ I'll advise you to uninstall it completely from Add/Remove programs and then reinstall it.
Rowdyruffboy
dat doesn't worked......
anniesegatlesbain
Hey Vishal,
thanks for your reply.
Ive discovered my problems arent becuase of your tips!
My firefox was very slow and not responding thingy because my husband had enabled Spybot's 'Immunize' feature.
Its now disabled and everything is fine.
Thanks!
VG
^^ Glad to know.