"C:\Program Files (x86)\Mozilla Thunderbird Nightly\thunderbird.exe"
oder
'C:\Program Files (x86)\Mozilla Thunderbird Nightly\thunderbird.exe'
{name: 'Thunderbird', path: 'C:\\Program Files (x86)\\Mozilla Thunderbird Nightly\\thunderbird.exe'},
"C:\Program Files (x86)\Mozilla Thunderbird Nightly\thunderbird.exe"
oder
'C:\Program Files (x86)\Mozilla Thunderbird Nightly\thunderbird.exe'
{name: 'Thunderbird', path: 'C:\\Program Files (x86)\\Mozilla Thunderbird Nightly\\thunderbird.exe'},
dein Script mit meinen Daten
das Icon is ja da nur ohne funktion
// ==UserScript==
// @name Thunderbird.uc.js
// @namespace ithinc#mozine.cn
// @description External Applications
// @include main
// @compatibility Firefox 3.5.x
// @author ithinc
// @version 20091212.0.0.1 Initial release
// ==/UserScript==
/* :::: External Applications :::: */
var gExternalApplications = {
type: 'button', //'menu' or 'button'
insertafter: 'urlbar-container',
apps: [
{name: 'Thunderbird', path: 'C:\\Program Files (x86)\\Mozilla Thunderbird Nightly\\thunderbird.exe'},
],
init: function() {
for (var i=0; i<this.apps.length; i++) {
if (!this.apps[i].path) continue;
if (!this.apps[i].args) this.apps[i].args = [];
this.apps[i].path = this.apps[i].path.replace(/\//g, '\\');
var ffdir = Cc['@mozilla.org/file/directory_service;1'].getService(Ci.nsIProperties).get('CurProcD', Ci.nsIFile).path;
if (/^(\\)/.test(this.apps[i].path)) {
this.apps[i].path = ffdir.substr(0,2) + this.apps[i].path;
}
else if (/^(\.)/.test(this.apps[i].path)) {
this.apps[i].path = ffdir + '\\' + this.apps[i].path;
}
}
if (this.type == 'menu') {
var mainmenu = document.getElementById('main-menubar');
var menu = mainmenu.appendChild(document.createElement('menu'));
menu.setAttribute('label', 'Start');
menu.setAttribute('accesskey', 'a');
var menupopup = menu.appendChild(document.createElement('menupopup'));
for (var i=0; i<this.apps.length; i++) {
menupopup.appendChild(this.createMenuitem(this.apps[i]));
}
}
else {
var menubarItems = document.getElementById(this.insertafter);
var toolbaritem = menubarItems.parentNode.insertBefore(document.createElement('toolbaritem'), menubarItems.nextSibling);
toolbaritem.setAttribute("class", "chromeclass-toolbar-additional");
toolbaritem.setAttribute("orient", "horizontal");
for (var i=0; i<this.apps.length; i++) {
toolbaritem.appendChild(this.createButton(this.apps[i]));
}
}
},
exec: function(path, args) {
for (var i=0; i<args.length; i++) {
args[i] = args[i].replace(/%u/g, gBrowser.currentURI.spec);
}
var file = Cc['@mozilla.org/file/local;1'].createInstance(Ci.nsILocalFile);
file.initWithPath(path);
if (!file.exists()) {
throw 'File Not Found: ' + path;
}
if (!file.isExecutable() || args.length==0) {
file.launch();
}
else {
var process = Cc['@mozilla.org/process/util;1'].getService(Ci.nsIProcess);
process.init(file);
process.run(false, args, args.length);
}
},
createButton: function(app) {
if (app.name == 'separator')
return document.createElement('toolbarseparator');
var item = document.createElement('toolbarbutton');
item.setAttribute('class', 'toolbarbutton-1 chromeclass-toolbar-additional');
item.setAttribute('label', app.name);
item.setAttribute('image', 'moz-icon:file:///' + app.path + '?size=16');
item.setAttribute('oncommand', 'gExternalApplications.exec(this.path, this.args);');
// item.setAttribute('tooltiptext', app.name);
item.path = app.path;
item.args = app.args;
return item;
},
createMenuitem: function(app) {
if (app.name == 'separator')
return document.createElement('menuseparator');
var item = document.createElement('menuitem');
item.setAttribute('class', 'menuitem-iconic');
item.setAttribute('label', app.name);
item.setAttribute('image', 'moz-icon:file:///' + app.path + '?size=16');
item.setAttribute('oncommand', 'gExternalApplications.exec(this.path, this.args);');
item.path = app.path;
item.args = app.args;
return item;
}
};
gExternalApplications.init();
Alles anzeigen
...
"C:\\Program .exe"
weil ich hab noch mal deinen genommen
kannste noch mal überprüfen
jetzt bin ich völlig :-??
'C:\\Program .exe'
so war es von Anfang an
egal
vielleicht find ich das teil was den "schaden" verursacht
un
:-??
so
'C:\\Program .exe'
oder so
"C:\\Program .exe"
ich hab beides probiert
x-mal
nix zu machen bei mir
werde mal ein ganz neues Profil anlegen
[Blockierte Grafik: http://www.cosgan.de/images/smilie/konfus/a050.gif]
so erst mal ein [Blockierte Grafik: http://www.smilies.4-user.de/include/Computer/smilie_pc_014.gif] machen
uni
Jep hab ich
apps: [
{name: 'Thunderbird', path: "C:\\Program Files (x86)\\Mozilla Thunderbird\\thunderbird.exe"},
],
[Blockierte Grafik: http://fs5.directupload.net/images/171002/od6pymhv.jpg]
Thunderbird gibt es ja nur in x86 (32bit) oder?
:-??
uni
Kannst das ja mal testen, den Pfad zu TB musst du dann anpassen:
....Leider ist der Button nicht verschiebbar und sollte bei dir hinter der Urlbar sein.
genau das selbe hab ich auch gemacht*
dadurch erscheint dann garnix mehr
[Blockierte Grafik: http://www.cosgan.de/images/smilie/konfus/a050.gif]
uni
* das was Andreas gemacht hat habe ich auch schon getestet
wenn ich aber den "Pfad" vom Iexplorer gegen den vom Thunderbird tausche erscheint das *Bild aus #957
nur startet dann Thunderbird auch nicht
[Blockierte Grafik: http://www.cosgan.de/images/smilie/konfus/a050.gif]
[Blockierte Grafik: http://www.smilies.4-user.de/include/Schilder/smilie_m_010.gif]
hab da mal wieder eine kleine Bastelaufgabe
gefunden auf github.com-ardiman
ExternalApplications_Extended.uc.js *siehe Bild
// ==UserScript==
// @name externalApplications.uc.js
// @namespace ithinc#mozine.cn
// @description External Applications
// @include main
// @compatibility Firefox 3.5.x 3.6.x
// @author ithinc
// @version 20091216.1.0.0 Final release
// @version 20091215.0.0.2 Handle toolbar apps and menu apps separately
// @version 20091212.0.0.1 Initial release
// ==/UserScript==
/* :::: External Applications :::: */
var gExternalApplications = {
toolbar: {
apps: [
//{name: 'Notepad', path: '/WINDOWS/system32/notepad.exe'},
{name: 'Calculator', path: 'C:\\WINDOWS\\system32\\calc.exe'},
{name: 'freegate', path: 'F:\\360download\\fg709a.exe'},
//{name: 'separator'},
{name: 'Internet Explorer', path: 'C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE', args: ['%u']},
//{name: 'Command Prompt', path: 'C:\\WINDOWS\\system32\\cmd.exe'},
],
insertafter: 'menubar-items' //'menubar-items' or 'home-button'
},
menu: {
apps: [
//{name: 'Notepad', path: '/WINDOWS/system32/notepad.exe'},
{name: 'Calculator', path: 'C:\\WINDOWS\\system32\\calc.exe'},
//{name: 'Command Prompt', path: 'C:\\WINDOWS\\system32\\cmd.exe'},
//{name: 'separator'},
//{name: 'UltraEdit', path: 'C:\\Program Files\\IDM Computer Solutions\\UltraEdit-32\\uedit32.exe'},
//{name: 'Total Commander', path: 'U:\\Programs\\Total Commander\\TOTALCMD.EXE'},
//{name: 'separator'},
//{name: 'My Computer', path: 'c:\\windows\\explorer.exe'},/*x?????*/
{name: 'Internet Explorer', path: 'C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE', args: ['%u']},//??????????,????%u
// {name: 'Maxthon', path: 'C:\\Program Files\\Maxthon\\Maxthon.exe', args: ['%u']},
// {name: 'Namoroka', path: 'D:\\Program Files\\Namoroka3.6b5pre\\firefox.exe', args: ['-no-remote', '-P blank']},
// {name: 'separator'},
//{name: 'Profile', path: 'C:\\Documents and Settings\\linus\\Application Data\\Mozilla\\Firefox\\Profiles\\c4r67s72.default'},
],
insertafter: 'browserToolsSeparator', //'helpMenu', 'tools-menu' or 'browserToolsSeparator'
label: 'Start',
accesskey: 'A'
},
init: function() {
this.handleRelativePath(this.toolbar.apps);
this.handleRelativePath(this.menu.apps);
if (this.toolbar.apps.length > 0) {
var refNode = document.getElementById(this.toolbar.insertafter);
if (refNode) {
refNode.parentNode.insertBefore(this.createToolbaritem(this.toolbar.apps), refNode.nextSibling);
}
}
if (this.menu.apps.length > 0) {
var refNode = document.getElementById(this.menu.insertafter);
if (refNode) {
var menu = refNode.parentNode.insertBefore(document.createElement('menu'), refNode.nextSibling);
menu.setAttribute('label', this.menu.label);
menu.setAttribute('accesskey', this.menu.accesskey);
menu.appendChild(this.createMenupopup(this.menu.apps));
}
}
},
handleRelativePath: function(apps) {
for (var i=0; i<apps.length; i++) {
if (apps[i].path) {
apps[i].path = apps[i].path.replace(/\//g, '\\');
var ffdir = Cc['@mozilla.org/file/directory_service;1'].getService(Ci.nsIProperties).get('CurProcD', Ci.nsIFile).path;
if (/^(\.)/.test(apps[i].path)) {
apps[i].path = ffdir + '\\' + apps[i].path;
}
else if (/^(\\)/.test(apps[i].path)) {
apps[i].path = ffdir.substr(0,2) + apps[i].path;
}
}
}
},
exec: function(path, args) {
args = args || [];
for (var i=0; i<args.length; i++) {
args[i] = args[i].replace(/%u/g, gBrowser.currentURI.spec);
}
var file = Cc['@mozilla.org/file/local;1'].createInstance(Ci.nsILocalFile);
file.initWithPath(path);
if (!file.exists()) {
Cu.reportError('File Not Found: ' + path);
return;
}
if (!file.isExecutable()) {
file.launch();
}
else {
var process = Cc['@mozilla.org/process/util;1'].createInstance(Ci.nsIProcess);
process.init(file);
process.run(false, args, args.length);
}
},
createToolbaritem: function(apps) {
var toolbaritem = document.createElement('toolbaritem');
toolbaritem.setAttribute('class', 'chromeclass-toolbar-additional');
toolbaritem.setAttribute('orient', 'horizontal');
for (var i=0; i<apps.length; i++) {
if (apps[i].name == 'separator') {
toolbaritem.appendChild(document.createElement('toolbarseparator'));
}
else {
var item = toolbaritem.appendChild(document.createElement('toolbarbutton'));
item.setAttribute('class', 'toolbarbutton-1 chromeclass-toolbar-additional');
item.setAttribute('label', apps[i].name);
item.setAttribute('image', 'moz-icon:file://' + apps[i].path + '?size=16;');
item.setAttribute('oncommand', 'gExternalApplications.exec(this.path, this.args);');
item.setAttribute('tooltiptext', apps[i].name);
item.setAttribute('style','margin: 0px 0px;background: none;box-shadow: none;border-color: transparent;'); //dawlen add
item.path = apps[i].path;
item.args = apps[i].args;
}
}
return toolbaritem;
},
createMenupopup: function(apps) {
var menupopup = document.createElement('menupopup');
for (var i=0; i<apps.length; i++) {
if (apps[i].name == 'separator') {
menupopup.appendChild(document.createElement('menuseparator'));
}
else {
var item = menupopup.appendChild(document.createElement('menuitem'));
item.setAttribute('class', 'menuitem-iconic');
item.setAttribute('label', apps[i].name);
item.setAttribute('image', 'moz-icon:file://' + apps[i].path + '?size=16');
item.setAttribute('oncommand', 'gExternalApplications.exec(this.path, this.args);');
item.path = apps[i].path;
item.args = apps[i].args;
}
}
return menupopup;
}
};
gExternalApplications.init();
Alles anzeigen
oder das ewtl. ?
was würde besser gehen im Fx 57/58
externalApplications.uc.js
// ==UserScript==
// @name externalApplications.uc.js
// @namespace ithinc#mozine.cn
// @description External Applications
// @include main
// @compatibility Firefox 3.5.x
// @author ithinc
// @version 20091212.0.0.1 Initial release
// ==/UserScript==
/* :::: External Applications :::: */
var gExternalApplications = {
type: 'button', //'menu' or 'button'
insertafter: 'menubar-items',
apps: [
{name: 'Notepad', path: '/WINDOWS/system32/notepad.exe'},
{name: 'Calculator', path: '.\\.\\..\\..\\WINDOWS\\system32\\calc.exe'},
{name: 'Command Prompt', path: 'C:\\WINDOWS\\system32\\cmd.exe'},
{name: 'separator'},
{name: 'Internet Explorer', path: 'C:\\Programme\\Internet Explorer\\IEXPLORE.EXE', args: ['%u']},
{name: 'Maxthon', path: 'C:\\Program Files\\Maxthon\\Maxthon.exe', args: ['%u']},
],
init: function() {
for (var i=0; i<this.apps.length; i++) {
if (!this.apps[i].path) continue;
if (!this.apps[i].args) this.apps[i].args = [];
this.apps[i].path = this.apps[i].path.replace(/\//g, '\\');
var ffdir = Cc['@mozilla.org/file/directory_service;1'].getService(Ci.nsIProperties).get('CurProcD', Ci.nsIFile).path;
if (/^(\\)/.test(this.apps[i].path)) {
this.apps[i].path = ffdir.substr(0,2) + this.apps[i].path;
}
else if (/^(\.)/.test(this.apps[i].path)) {
this.apps[i].path = ffdir + '\\' + this.apps[i].path;
}
}
if (this.type == 'menu') {
var mainmenu = document.getElementById('main-menubar');
var menu = mainmenu.appendChild(document.createElement('menu'));
menu.setAttribute('label', 'Start');
menu.setAttribute('accesskey', 'a');
var menupopup = menu.appendChild(document.createElement('menupopup'));
for (var i=0; i<this.apps.length; i++) {
menupopup.appendChild(this.createMenuitem(this.apps[i]));
}
}
else {
var menubarItems = document.getElementById(this.insertafter);
var toolbaritem = menubarItems.parentNode.insertBefore(document.createElement('toolbaritem'), menubarItems.nextSibling);
toolbaritem.setAttribute("class", "chromeclass-toolbar-additional");
toolbaritem.setAttribute("orient", "horizontal");
for (var i=0; i<this.apps.length; i++) {
toolbaritem.appendChild(this.createButton(this.apps[i]));
}
}
},
exec: function(path, args) {
for (var i=0; i<args.length; i++) {
args[i] = args[i].replace(/%u/g, gBrowser.currentURI.spec);
}
var file = Cc['@mozilla.org/file/local;1'].createInstance(Ci.nsILocalFile);
file.initWithPath(path);
if (!file.exists()) {
throw 'File Not Found: ' + path;
}
if (!file.isExecutable() || args.length==0) {
file.launch();
}
else {
var process = Cc['@mozilla.org/process/util;1'].getService(Ci.nsIProcess);
process.init(file);
process.run(false, args, args.length);
}
},
createButton: function(app) {
if (app.name == 'separator')
return document.createElement('toolbarseparator');
var item = document.createElement('toolbarbutton');
item.setAttribute('class', 'toolbarbutton-1 chromeclass-toolbar-additional');
item.setAttribute('label', app.name);
item.setAttribute('image', 'moz-icon:file:///' + app.path + '?size=16');
item.setAttribute('oncommand', 'gExternalApplications.exec(this.path, this.args);');
item.setAttribute('tooltiptext', app.name);
item.path = app.path;
item.args = app.args;
return item;
},
createMenuitem: function(app) {
if (app.name == 'separator')
return document.createElement('menuseparator');
var item = document.createElement('menuitem');
item.setAttribute('class', 'menuitem-iconic');
item.setAttribute('label', app.name);
item.setAttribute('image', 'moz-icon:file:///' + app.path + '?size=16');
item.setAttribute('oncommand', 'gExternalApplications.exec(this.path, this.args);');
item.path = app.path;
item.args = app.args;
return item;
}
};
gExternalApplications.init();
Alles anzeigen
*[Blockierte Grafik: http://fs5.directupload.net/images/171002/6d6isog3.jpg]
ich hätte gerne nur das Email "Symbol" (Thunderbird) wo der Pfeil hin zeigt
all meine versuche das zu starten sind fehlgeschlagen
hat zeit keine eile damit
(Nightly ist extra so groß gemacht von mir (Schrift))
gruß uni
:klasse:
hab das auf "Developer Beta" probiert
werde jetzt dann die anderen "Profile" nachziehen
uni
ot
nebenbei
:shock: schaue nach
dat is ja jetzt "Quantum"
ot ende
das von Endor also
ich teste mal
bis gleich
uni
:klasse: funzt
jetzt muss ich nur noch herausfinden wie ich das "zentrieren" kann im "Code"
weil dat "klemmt" jetzt oben unter der Kante
[Blockierte Grafik: http://fs5.directupload.net/images/171001/86gvrn43.png]
uni
hi
nur ein Gegentest mit Nightly 58 64bit gemacht
ist genau das selbe
ich lasse es erst mal so
ist doch lustig anzusehen
prophylaktisches "gute Nacht"
uni
:-??
schau
normalerweise sind da nur die 3 Daddelpunkte beim laden
[Blockierte Grafik: http://fs5.directupload.net/images/170930/uexnx8zb.jpg]
:-??
Bis Fx Version Anfang ca. 50 funktionierte das mit diesem Code:Nur was genau man daran ändern müsste/könnte entzieht sich leider meinen Kenntnissen :?
nabend
mein frage
1. wo kommt der "Code" hin
ich hab ihn mal aus neugier in die userChrome.css getan (Aurora 57)
:-??
nu hab ich auf dem(n) Tab/s wenn man(n) eine seite aufruft den "roten Fuchs" zu sehen bis die Webseite ihr Icon geladen hat
:-??
2. frage
andreas bist du sicher das das für "für Favions von Lesezeichen" ist
oder bin ich wieder auf dem Holzweg?
habs noch nicht fürn Nightly getestet
uni
@
jepp
welchen Fx benutzt du?
war bei mir auch so (Developer, Aurora, Beta ...) Fx 56
hab das selbe System
uni
ups
dann wäre ein "Generalcode" von Sinn
nur gibt es so was?
so erst mal Mittag machen
uni
edit
etwas überschnitten mit meiner Antwort
:-??
hat Endor das nicht!?
für Favions von Lesezeichen müsste er so aussehen:
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
.bookmark-item[label="hier Bezeichnung des Lesezeichens eingeben"] {
list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKDSURBVDjLhZNfSN1lGMc/7+939ORU1C0iszwSG2duOFqNBQ2meJUoY4MixiiKiCCGMMauZYJ00252uYIuRlsgKJRsDLE/VBIhu3B/knVmInpy/jnrpB71fX+/99uFO3KkrAfei/fh+Xx4eJ/nNZIoRtx9Vq6xCTs0hCTwHnmPJOQ9ya4u+PYHKkdumSKToCQURVvFRXBLUhRZV4oQbBO4aBOIYxTHBOlVyt6Y3brL+/8RWIesJdi3D8UxiWN5glfrYM8yQToN6+vI2v8U9JrZLGFTE+HLKcwLqwS72wmOGRKpFP7X35B1vTsKktev9ZD9o5epacJX1gga3iKofQ2lsmjiAXow2Vt773ZPKWMk4X5KVUhhWl6hF/j+5z5U2+IHZUcvQFCOnf4SNzD+tVrDi1KA9yJ2hYX6N+enjSTs9/Uz2tXcIPFkCiKoOw67Usg9Ri6PWxonLswjDN457PIUNrf4jpFEYcCc8I4vwgMfVSUaTiM7h7eP8S4HcQEUgUlgEtX4yJEfu0Zu7O5XJDljiouUv2r2+pih8v2n0uHzJ5F9hKJV5AsoXgMTEuWyzN3sj+0yPYcuq2/bI9a8rQxJjqz/Pjjo/7oPEtIG8hsgiyHk0Tf9ObdBRxH+xxTqTmvFVFQOu3wGGUAegwFtLhEhKy2faHjHMQKIpzrL6l7CmASKImwuiynbTVBeQ/kzzzbeuWhaSuu3/YWlwacrvGgPaw+Q/+USS6OjGQw/Vqb3vlu9v41k/UFyD+c6gTv/2kEcR62m6sWKhaHzLHw3eiVyHG7+WO/9OZHpmBz4bNauWdZX6dzesrR1Zj7l/Uwfk3fP8XppXhI/d1MzcobPb5ziXmn+b0pcjPW7AMpFAAAAAElFTkSuQmCC") !important; }
deswegen hatte ich geschrieben
das es auch ohne Stylish gehen müsste
:-??
da war ich wohl auf dem Holzweg
uni
hier ist mal ein vorschlag von
Alles anzeigen
Du kannst Favicons mit Stylish Code ändern.
Du brauchst dazu die Erweiterung Stylish https://addons.mozilla.org/de/firefox/addon/stylish/dann kannst Du dort einen neuen Stil erstellen:
für Favions von Lesezeichen müsste er so aussehen:
CSS@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); .bookmark-item[label="hier Bezeichnung des Lesezeichens eingeben"] { list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKDSURBVDjLhZNfSN1lGMc/7+939ORU1C0iszwSG2duOFqNBQ2meJUoY4MixiiKiCCGMMauZYJ00252uYIuRlsgKJRsDLE/VBIhu3B/knVmInpy/jnrpB71fX+/99uFO3KkrAfei/fh+Xx4eJ/nNZIoRtx9Vq6xCTs0hCTwHnmPJOQ9ya4u+PYHKkdumSKToCQURVvFRXBLUhRZV4oQbBO4aBOIYxTHBOlVyt6Y3brL+/8RWIesJdi3D8UxiWN5glfrYM8yQToN6+vI2v8U9JrZLGFTE+HLKcwLqwS72wmOGRKpFP7X35B1vTsKktev9ZD9o5epacJX1gga3iKofQ2lsmjiAXow2Vt773ZPKWMk4X5KVUhhWl6hF/j+5z5U2+IHZUcvQFCOnf4SNzD+tVrDi1KA9yJ2hYX6N+enjSTs9/Uz2tXcIPFkCiKoOw67Usg9Ri6PWxonLswjDN457PIUNrf4jpFEYcCc8I4vwgMfVSUaTiM7h7eP8S4HcQEUgUlgEtX4yJEfu0Zu7O5XJDljiouUv2r2+pih8v2n0uHzJ5F9hKJV5AsoXgMTEuWyzN3sj+0yPYcuq2/bI9a8rQxJjqz/Pjjo/7oPEtIG8hsgiyHk0Tf9ObdBRxH+xxTqTmvFVFQOu3wGGUAegwFtLhEhKy2faHjHMQKIpzrL6l7CmASKImwuiynbTVBeQ/kzzzbeuWhaSuu3/YWlwacrvGgPaw+Q/+USS6OjGQw/Vqb3vlu9v41k/UFyD+c6gTv/2kEcR62m6sWKhaHzLHw3eiVyHG7+WO/9OZHpmBz4bNauWdZX6dzesrR1Zj7l/Uwfk3fP8XppXhI/d1MzcobPb5ziXmn+b0pcjPW7AMpFAAAAAElFTkSuQmCC") !important; }
mit folgendem Code kann man auch Ordnern in der Lesezeichenleiste ein anderes Symbol verpassen:
CSS.bookmark-item[label="Bezeichnung des Ordners"][container="true"]{ list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABp0lEQVQ4ja2SvWojMRSFp9AjbJkyj5DH2TJVECmM2EIIF0FMEUQK4dJsYYYtgnFhRIowpFiMK7GFES6CcDWkMFMZMcUgcraYPzzZZZdlLxz0g853ry43Sf5HzLTCTCuoBwV1L6FSCZlKyDsBORUQnEF8YWAT2uiWgt5cg95cowfE9/h71SO1dzOtBoB5MmePQxX69cP+PcKszQBQ9xL+1SNvId3Dsbrs+ZNB8VZAPbQAeScQ6wj3Y4N8nQ2Q07m6zP7gEesImYoBEKoA9zKH/W7674RjcdaL5WMGf/AIpxKhCpDTFiA4a8pbEMTnzwjHAtkiQ6kJll8VssUc2WIOt3fwB4/yWCLWEYKzARCqAJ8SlJrAvixh1gaWE1hOUOwt3M5is93A7R3CaQRgE4pYR/iUIG5Fb7ScIL4uG8jBwe8d8ue8gVQBbEIHQKgC7JQgfvuEuJXn2mWwnKB8802vdg5u5wbATCuwCW0yrq4ayOoS8fGi6cvqsq+E3dJ+IvtJ7MLpqwHSqtTN2XKCXI8M4zCaooP0Pfhb86+ig/yTOUmSJOcXfzT/BPI1SrrBfMW4AAAAAElFTkSuQmCC") !important; -moz-image-region: rect(0px 16px 16px 0px) !important;}
Der „Buchstabensalat“ nach url also der Teil zwischen den ( ) das ist ein Favicon in Base64 Code.
Du kannst aber auch an Stelle des Base64 Codes, eine Datei verwenden: 16 x 16 Pixel
dann einfach den Code-Teil zwischen den Klammern so ändern:Logischer Weise musst Du obiges auf Deinen Ablageort, Speicherort, Bildbezeichnung anpassen
Mfg.
Endor
ich nehme an das das auch ohne Stylish geht
gruß uni