Seit dem letzten Firefox-Update auf Version 57 läuft dieser nun wieder wesentlich und selbst Netflix kann man in diesem wieder nutzen. Aber es gibt einen sehr großen Wermutstropfen. Leider wurde aufgrund einer drastischen Programm-Anpassung die Kompatibilität zu nahezu allen Add-Ons gekillt und diese können nicht mehr verwendet werden. So auch das einzige, was mich von einem Wechsel von Firefox zu Google Chrome abgehalten hat: Das Add-On „Roomy Bookmarks“, welches in der Lesezeichen-Symbolleiste die Titel der Favoriten ausblendet, sodass einem nur noch die Icons angezeigt werden.
Glücklicherweise fand ich jetzt auf Reddit einen Beitrag indem jemand beschreibt wie man das Verhalten von Roomy Bookmarks mittels einer CSS-Datei nachahmen kann. Hierzu legt man im Firefox-Profilverzeichnis den Ordner chrome an und dort drin eine CSS-Datei namens userChrome.css, in welcher man das Aussehen des Browsers beeinflussen kann. Diese füllt man mit dem Code aus dem Beitrag:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once in userChrome.css */ /* --- Made by Trustadz --- */ .bookmark-item{ margin-left: 0 !important; margin-right: 0 !important; padding-right: 0 !important; padding-left: 0 !important; } toolbarbutton.bookmark-item .toolbarbutton-text{ display: none !important; } toolbarbutton.bookmark-item .toolbarbutton-icon{ margin-left: 2px !important; } #PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon[label]:not([label=""]) { margin-inline-end: 2px !important; } toolbarbutton.subviewbutton.subviewbutton-iconic .toolbarbutton-text{ display: -moz-box !important; } /* --- [1] Delete this line till the line with [/1] if you don't want to show the labels on hover --- */ toolbarbutton.bookmark-item:hover:not(.subviewbutton):not([disabled="true"]):not([open]) .toolbarbutton-text{ display: -moz-box !important; } /* --- [/1] --- */ /* --- [2] Delete this line till the line with [/1] if you don't want to see folder names in your bookmark bar --- */ toolbarbutton.bookmark-item[type="menu"]{ margin-right: .5em !important } toolbarbutton.bookmark-item[type="menu"] .toolbarbutton-text { display: -moz-box !important; } /* --- [/2] --- */ /* --- [3] Delete this line till the line with [/3] if you want folder icons to show --- */ toolbarbutton.bookmark-item[type="menu"] .toolbarbutton-icon{ display: none !important; } /* --- [/3] --- */ /* --- [4] Delete this line till the line with [/4] if you don't want the fading function --- */ #PlacesToolbarItems{ /* --- Change the value below to edit how translucent the bookmarks should be. "1" is fully visible, "0" is invisible. --- */ opacity: 0.3; /* --- Change the values below to your liking. Accapts "s" as seconds and "ms" as milliseconds" --- */ transition-delay: 3s; /* The delay after it goes back to being translucent */ transition-duration: .5s; /* The duration of the effect */ } #PlacesToolbarItems:hover{ /* don't change these values */ transition-delay: 0s; opacity: 1; } /* --- [/4] --- */ /* ---- [5] Delete this line till the line with [/5] if you don't want the bookmarkbar to hide---- */ #PersonalToolbar{ height: 3px !important; min-height: 3px !important; max-height: 3px !important; padding:0; } #PersonalToolbar #personal-bookmarks{ opacity: 0; } #PersonalToolbar:hover{ height: 2em !important; min-height: 2em !important; max-height: 2em !important; } #PersonalToolbar:hover #personal-bookmarks{ opacity: 1; } #PersonalToolbar, #PersonalToolbar #personal-bookmarks{ transition-delay: 1s !important; } #PersonalToolbar:hover, #PersonalToolbar:hover #personal-bookmarks{ transition-delay: 0s !important; } /* --- [/5] --- */ |
Will man bestimmte Anpassungen nicht, kann man diese aus der CSS-Datei rauslöschen. So habe ich z. B. den Punkt 4 und 5 weggelassen, da ich auf ein Einblenden der Leiste verzichten kann und ich nicht möchte, dass diese ausgeblendet wird.
Mit dieser Anpassung ist der Firefox direkt wieder zu meinem Lieblings-Browser aufgestiegen 😀