- Firefox-Version
- 107 (64 Bit)
- Betriebssystem
- Win 10
Hallo,
Ich habe in der Statusleiste mehrere Add-ons und um an die Einstellungen zu kommen brauche ich den Rechtsklick, der aber nicht funktioniert.
Denn Code, den ich benutze, sieht so aus
CSS
/* 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: 28px;
direction: rtl;
-moz-window-dragging: drag;
/* border-top: 1px solid black !important;
background-color: rgba(0,0,0,0) !important;
color: black !important; */
}
#statuspanel {
bottom: -3px !important;
left: -30px !important;
height: 20px !important;
max-width: 20% !important;
transition: none !important;
}
#statuspanel-label{
margin-top: -1px !important;
margin-bottom: 5px !important;
background:#F0EDF8!important;
border: none !important;
font: 15px Arial Rounded MT Bold !important;
font-weight: normal !important;
color: black-gray !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');
var vbox = document.createXULElement('vbox');
document.getElementById('navigator-toolbox').parentNode.parentNode.insertBefore(
vbox, document.getElementById('browser-bottombox'));
vbox.style.backgroundColor = '#454545';
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
Kann man den Rechtsklick da noch einfügen oder funktioniert das so nicht?
Besten Dank schon mal für die Hilfe