Prima, jetzt habe ich allerdings sowohl den Schriftzug CSS als auch das Icon und das übereinander gelegt.. Ich möchte das Icon gerne nach rechts zu den anderen Script-Icons verschieben, den Schriftzug benötige ich nicht... Verschieben lässt es sich im Anpassen-Modus nicht..
[attachment=0]CSS-Icon.JPG[/attachment]
Das StatusleistenScript funktioniert hier übrigens noch nicht
nicht..
Code
/* AAAStatusleiste für Firefox */
// https://www.camp-firefox.de/forum/viewtopic.php?p=1052187&sid=d4e33b574226439c26dfb45629b71369#p1052187
// entwickelt von aborix
(function() {
if (location != 'chrome://browser/content/browser.xhtml')
return;
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.insertBefore(
vbox, document.getElementById('browser-bottombox'));
vbox.style.backgroundColor = '#ffe4c4';
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