Hi Code-Schrauber
Kann man denn den aktuellen Profilnamen in der Statusbar einblenden? Und wenn ja wie? Und eventuell: bei Klick auf diesen FF beenden und mit anderem Profil starten bzw. so das Profil wechseln? Arbeite öfter mit mehreren Profilen und wechsle öfter hin und her....
Ich benutze diese Codes...
RevertAddonBarStatusBar.uc.js
Code
//bottomtoolbar.uc.js
(function ()
{
if (location != 'chrome://browser/content/browser.xul')
return;
let toolbar = document.createElement('toolbar');
toolbar.id = 'bottom-toolbar';
toolbar.setAttribute('customizable', 'true');
toolbar.setAttribute('mode', 'icons');
toolbar.setAttribute('context', 'toolbar-context-menu');
let vbox = document.createElement('vbox');
vbox.id = 'bottom-toolbar-vbox';
let browserBottombox = document.getElementById('browser-bottombox');
browserBottombox.parentNode.insertBefore(vbox, browserBottombox);
vbox.appendChild(toolbar);
vbox.style.backgroundColor = '#F6F6F6';
//Hier kann die Hintergrundfarbe angepasst werden. Als Wert kann zbs. red, green,
//yellow oder orange usw, aber auch zbs. #f7f7f7 usw.verwendet werden.
CustomizableUI.registerArea('bottom-toolbar',
{
legacy: true
});
})();
Alles anzeigen
und Statusbar.css
CSS
#bottom-toolbar {
height: 30px !important;
/* 24px oder 36px für Buttons */
direction: rtl !important;
}
/* Position der Statusleiste in (bzw. über) der neuen Toolbar
* damit die Schrift etwa mittig ist und die maximale Länge
* damit rechts noch Platz für Buttons bleibt.
*/
statuspanel {
background-color: transparent !important;
border: none !important;
bottom: 5px !important;
/* -2px oder 4px für Buttons */
height: 30px !important;
max-width: 75% !important;
/* 100% oder ca. 50% bis 75% für Buttons */
transition: none !important;
}
/* Statusleiste Container für Anzeigefeld */
statuspanel .statuspanel-inner {
background-color: transparent !important;
border: none !important;
height: 30px !important;
}
/* Statusleiste Anzeigefeld Schriftfarbe*/
statuspanel .statuspanel-label {
background-color: transparent !important;
border: none !important;
color: var(--sta-txt) !important;
}
#bottom-toolbar-vbox {
background-repeat: no-repeat;
background-position: bottom left;
background-color: var(--lwt-accent-color);
background-image: var(--lwt-footer-image);
background: -moz-radial-gradient(center, ellipse cover, rgba(112,112,112,1) 0%, rgba(237,237,237,1) 100%);
}
#bottom-toolbar toolbarspring {
background: transparent !important;
max-width: 0px !important;
min-width: 0px !important;
width: 0px !important;
border-left: 1px solid white !important;
border-right: 1px solid black !important;
margin-top: 4px !important;
margin-bottom: 4px !important;
/*margin-left: 0px !important;*/
margin-right: 6px !important;
}
Alles anzeigen
Hatte bis zum Fuchs 56 dieses hier: https://addons.mozilla.org/de/firefox/addon/profileswitcher/...Funzt aber leider nicht mehr. :roll::shock:
Danke schon mal im Voraus!!! Gruß pascallo :klasse: