Hm, bei mir zeigt das * Statusbar-Script auch ein merkwürdiges Phänomen, beim Hovern wird die URL nicht mehr in der Statusbar angezeigt, nur wenn ich das → bottom: -22px !important; auskommentiere wird es zumindest oberhalb der Statusbar angezeigt, kann man das wieder in die Statusbar bringen?
*
JavaScript
/* Statusleiste für Firefox */
// https://www.camp-firefox.de/forum/viewtopic.php?p=1052187&sid=d4e33b574226439c26dfb45629b71369#p1052187
// entwickelt von aborix
(function() {
if (location.href !== 'chrome://browser/content/browser.xhtml')
return;
var css =`
#new-toolbar {
height: 24px;
direction: rtl;
-moz-window-dragging: drag;
/* border-top: 1px solid black !important;
background-color: rgba(0,0,0,0) !important;
color: black !important; */
}
#new-toolbar > toolbaritem {
appearance: none !important;
min-height: 20px !important;
max-height: 20px !important;
min-width: 20px !important;
max-width: 20px !important;
border: 0 !important;
background-color: transparent !important;
padding: 0 !important;
margin: 1px 1px 1px 0 !important;
}
#new-toolbar > toolbaritem > toolbarbutton {
appearance: none !important;
min-height: 20px !important;
max-height: 20px !important;
min-width: 20px !important;
max-width: 20px !important;
border: 0 !important;
background-color: #474747 !important;
padding: 0 !important;
margin: 0 !important;
}
#new-toolbar > toolbaritem > toolbarbutton[label="Media Converter and Muxer - Audio Tools"] {
background-color: #474747 !important;
}
#new-toolbar > toolbaritem > toolbarbutton[label="Media Converter and Muxer - Audio Tools"] > .toolbarbutton-badge-stack > image {
filter: contrast(200%) brightness(200%) sepia(90%) !important;
}
#new-toolbar > toolbaritem > toolbarbutton[label="Media Converter and Muxer - Audio Tools"]:hover > .toolbarbutton-badge-stack > image {
filter: unset !important;
}
#new-toolbar > toolbarbutton {
appearance: none !important;
min-height: 20px !important;
max-height: 20px !important;
min-width: 20px !important;
max-width: 20px !important;
border: 0 !important;
background-color: #474747 !important;
padding: 0 !important;
margin: 1px 1px 1px 0 !important;
}
#new-toolbar > toolbarbutton image {
appearance: none !important;
min-width: 16px !important;
max-width: 16px !important;
min-height: 16px !important;
max-height: 16px !important;
padding: 0 !important;
margin: 0 !important;
}
#new-toolbar > toolbarbutton:hover,
#new-toolbar > toolbaritem > toolbarbutton[label="Media Converter and Muxer - Audio Tools"]:hover {
fill: #000 !important;
background-color: #D1E2F2 !important;
}
#statuspanel {
/* bottom: -22px !important; */
left: 1px !important;
height: 21px !important;
/* max-width: 40% !important; */
transition: none !important;
padding: 0 !important;
}
#statuspanel-label {
font-weight: normal !important;
border: 1px solid #0082FC !important;
background-color:#1C1B22 !important;
color:#FFF!important;
padding: 0 3px 3px 3px !important;
margin-top: 1px !important;
margin-bottom: 0 !important;
}
`;
var sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService);
var uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(css));
sss.loadAndRegisterSheet(uri, sss.AUTHOR_SHEET);
var tb = document.createXULElement('toolbar');
tb.id = 'new-toolbar';
tb.setAttribute('customizable', true);
tb.setAttribute('mode', 'icons');
tb.setAttribute("context","toolbar-context-menu");
var vbox = document.createXULElement('vbox');
document.getElementById('navigator-toolbox').parentNode.insertBefore(
vbox, document.getElementById('browser-bottombox'));
vbox.style.backgroundColor = '';
vbox.appendChild(tb);
CustomizableUI.registerArea('new-toolbar', {legacy: true});
CustomizableUI.registerToolbarNode(tb);
})();
// setTimeout(function() {
// if (window.__SSi == 'window0')
// return;
// let tabbar = document.getElementById('TabsToolbar');
// let tab = gBrowser.selectedTab;
// tabbar.style.display = '-moz-box';
// duplicateTabIn(tab, 'tab');
// gBrowser.moveTabTo(gBrowser.selectedTab, tab._tPos);
// gBrowser.removeTab(tab);
// tabbar.style.display = '';
// }, 1500);
Alles anzeigen