
...is out now. Get it on
www.firefox.com
You should get it because it's a lot faster. Not maybe in terms of memory consumption, but it just renders the pages faster -- prolly as fast, as Google Chrome.
Below you can find two hacks for those who don't like changes in the interface.
1. If you want to get rid of "new tab" button, close Firefox and then go to
- Code: Select all
C:\Users\Your Username Here\AppData\Roaming\Mozilla\Firefox\Profiles
find a folder with weird name like b34vh5gy.default, then navigate to folder chrome/.
Find file userChrome-example.css, rename it to userChrome.css, add this line to the end of the file:
- Code: Select all
.tabs-newtab-button {display: none}
2. If you want to be able to close the last tab (I mean, if you have only one tab opened, close button disappears for it in FF3), also add this code:
- Code: Select all
/* Add tab-close-button to last tab*/
.tabbrowser-tabs[closebuttons='alltabs'] > .tabbrowser-tab >
.tab-close-button { display: -moz-box !important; }
.tabbrowser-tabs:not([closebuttons='noclose']):not
([closebuttons='closeatend']) >
.tabbrowser-tab[selected='true'] > .tab-close-button { display: -moz-
box !important; }
Then open Firefox, type about:config in the URL bar, find browser.tabs.closeWindowWithLastTab and change it to false.