Hallo,
könnte man dieses Script vom Firefox für Thunderbird anpassen ?
wenn ja wie genau ?
JavaScript
(function() {
if (location != 'chrome://browser/content/browser.xhtml') return;
try {
CustomizableUI.createWidget({
id: 'Profilordner',
type: 'custom',
defaultArea: CustomizableUI.AREAS,
onBuild: function(aDocument) {
var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbarbutton');
var props = {
id: 'Profilordner',
class: 'toolbarbutton-1 chromeclass-toolbar-additional',
removable: true,
// Name im AnpassungFenster
label: 'zum Aktuellen Profilordner',
// Name bei MausHover wenn in Symbolleiste
tooltiptext: 'zum Aktuellen Profilordner',
lt-release/chrome/icon/dateiname.png)',
style: 'list-style-image: url(file:///C:/Users/xxx/AppData/Roaming/Mozilla/Firefox/Profiles/xxx/chrome/icon/userProfil.ico)',
oncommand: "Services.dirsvc.get('ProfD', Ci.nsIFile).launch();"
};
for (var p in props)
toolbaritem.setAttribute(p, props[p]);
return toolbaritem;
}
});
} catch(e) { };
})();
Alles anzeigen
Das Script mach macht ein neues Icon und bei klick landet man direkt in dem passendem Profil.