- Trick to Reveal More Tab/Window Options :
Restart Firefox and go to Tools > Options... (Edit > Preferences... under Linux and MacOS X), select Advanced and click on Tabbed Browsing.// Reveal more tab/window options:
user_pref("browser.tabs.showSingleWindowModePrefs", true);
2. 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:
You can still close tabs by right clicking on them and select Close Tab, or by pressing Ctrl+W/* Remove the close button on the tab bar */
.tabs-closebutton {
display: none !important;
}
3. 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;
}
0 comments
Post a Comment