How to improve the addition of tabs in Firefox?
Tips / / December 19, 2019
Window for adding bookmarks in Mozilla Firefox arranged not the most convenient way. The default save bookmarks in the Bookmarks folder. However, we, the users tend to have their own subfolders. Bring down all in a heap is not the best solution. it would be more convenient if you can select a folder directly without clicking on the arrow.
The second drawback is that when you add a bookmark you can not specify a keyword for it. In Fortunately, all this can be corrected
You need to open and edit the file userChrome.css (lying profile):
@ -Moz-document url ( "chrome: //browser/content/bookmarks/addBookmark2.xul") {
#addBookmarkDialog {
min-height: 40em important;! / * Adjust this value to change the default height * /
}
# Folder-tree {
visibility: visible important;!
}
#keywordRow {
display: -moz-grid-line important;!
}
button [dlgtype = "extra2"] {
display: -moz-box important;!
}
#expander, #keywordRow + row {
display: none important;!
}
}
What happened:
What was:
Pimp the Add Bookmark Dialog in Firefox [GHacks]