Nach gründlichem Einlesen und Testen bin ich hierdrauf gekommen:
Code
(function() {
if (location != 'chrome://browser/content/browser.xul')
return;
var tb = document.createElement('toolbar');
tb.id = 'top-toolbar';
tb.setAttribute('customizable', true);
tb.setAttribute('mode', 'icons');
document.getElementById('PersonalToolbar').parentNode.insertBefore(tb, document.getElementById('library-animatable-box'));
CustomizableUI.registerArea('top-toolbar', {legacy: true});
})();
Alles anzeigen
Vielleicht nützlich auch für andere.