A double click to close a tab ?
browser.tabs.closeTabByDblclick = true
-
Not a lot of bookmarks? We can have a centered bookmarks bar, using userChome .css
#PlacesToolbarItems{ -moz-box-pack: center }
-
Search for the selected text in search engines
https://addons.mozilla.org/fr/firefox/addon/selection-search-ff/
-
Show all bars in fullscreen (tabs, address/tool & bookmarks):
browser.fullscreen.autohide = false
+
using userContent .css
/*
Override hiding of Bookmarks Toolbar in F11 full screen
when you roll down the tabs/main toolbar
*/
#navigator-toolbox[inFullscreen="true"] #PersonalToolbar {
visibility: unset !important;
}
And in fullscreen, we can toggle show/hide the toolbar with a right click on the tabs bar (empty space) or address bar. 😃