Hier übrigens der quelloffene Fork "Ferdi":
https://getferdi.com bzw.
https://github.com/getferdi/ferdi
Alternativ kann man ähnliches mit Firefox Portable, angepinnten Tabs und
Containerise (nicht der Multi-Account-Container von Mozilla, da nur
in Containerise URLs von derselben Domain verschiedenen Containern zugeordnet werden können, wenn auch nicht die exakt selbe URL) und dieser
userChromeCSS
Code: Alles auswählen
/*
* hide-urlbar
* Hides URL bar, unhides when it (URL bar) or tab bar is hovered.
* inspired by https://www.reddit.com/r/FirefoxCSS/comments/ca3vo2/extremely_simple_url_bar_hide
*/
/* hide url bar */
#nav-bar {
min-height: 0 !important;
max-height: 0 !important;
height: 0 !important;
--moz-transform: scaleY(0) !important;
transform: scaleY(0) !important;
/* transition-delay: 1s !important; */
transition: all 0.1s ease !important;
}
/* show url bar on hover (after 5 seconds) or when focused) */
#titlebar:hover~#nav-bar,
#nav-bar:hover,
#nav-bar:focus-within {
--moz-transform: scale(1) !important;
transform: scale(1) !important;
transition-delay: 5s !important;
max-height: 36px !important;
height: 36px !important;
min-height: 36px !important;
}
/* Change the size of the favicon */
.tab-icon-image {
width: 24px !important;
height: 24px !important;
margin-bottom: 2px !important;
}
Damit hat man eine native Firefox Instanz, die z.B. mit Adblocker und Passwortmanager aufgebohrt werden kann (anders als Franz, Ferdi, etc.) und sehr geringem Speicherplatz.
Das Theme ist
https://addons.mozilla.org/de/firefox/a ... lerentfox/
Wenn man Chrome weiterverwenden will für externe Links:
https://addons.mozilla.org/de/firefox/a ... e-browser/ z.B. Ctrl+Click für Links in Chrome.