Hallo, bei FF60b2 funktionieren mehrere sachen nicht mehr, ich bitte mir zu helfen.
Die Skripte benutze ich schon seit FF57 und das hier kenne:
https://www.camp-firefox.de/forum/viewtopic.php?f=16&t=122615
Bei FF59 sah es bei mir so aus und alles war in Menüleiste:
[Blockierte Grafik: http://picsee.net/upload/2018-03-11/7f61e646141e.jpg]
Und jetzt so:
[Blockierte Grafik: http://picsee.net/upload/2018-03-11/66e00e457726.jpg]
1.
Ich kann nicht mehr vor-zurück pfeile, url leiste und menu bar verschieben.
2.
Skripte funktionieren nicht mehr, die sieht man gar nicht auf der oberfläche, diese hier:
Google, youtube tasten
Code
(function() {
try {
Components.utils.import("resource:///modules/CustomizableUI.jsm");
CustomizableUI.createWidget({
id: "fp-youtube",
defaultArea: CustomizableUI.AREA_NAVBAR,
removable: true,
label: "YouTube",
tooltiptext: "YouTube",
onClick: function() {
openUILinkIn('https://www.youtube.com/', 'current');
},
onCreated: function(aNode) {
aNode.style.listStyleImage = 'url("https://www.youtube.com/yts/img/favicon-vfl8qSV2F.ico")';
return aNode;
}
});
} catch (e) {
Components.utils.reportError(e);
};
})();
(function() {
try {
Components.utils.import("resource:///modules/CustomizableUI.jsm");
CustomizableUI.createWidget({
id: "fp-google",
defaultArea: CustomizableUI.AREA_NAVBAR,
removable: true,
label: "Google",
tooltiptext: "Google",
onClick: function() {
openUILinkIn('https://www.google.de/', 'current');
},
onCreated: function(aNode) {
aNode.style.listStyleImage = 'url("https://www.google.de/images/branding/product/ico/googleg_lodp.ico")';
return aNode;
}
});
} catch (e) {
Components.utils.reportError(e);
};
})();
Alles anzeigen
Im Lesezeichen Menu Speichern
Code
(function() {
if (location != 'chrome://browser/content/browser.xul')
return;
eval('PlacesCommandHook._bookmarkPagePT = ' + PlacesCommandHook._bookmarkPagePT.toString()
.replace(/^async/, 'async function')
.replace(/unfiledGuid/g, 'menuGuid')
);
})();
Neustart
Code
(function() {
// Add "Restart" to menu > file
var menuitem = document.createElement('menuitem');
menuitem.id = 'uc_menu_Restart';
menuitem.setAttribute('label' , 'Neustarten');
menuitem.setAttribute('oncommand' , "Services.appinfo.invalidateCachesOnRestart() || BrowserUtils.restartApplication();");
var refItem = document.getElementById('menu_FileQuitItem');
refItem.parentNode.insertBefore(menuitem, refItem);
})();
Alles anzeigen
Tastatur
Code
(function () {
if (location != 'chrome://browser/content/browser.xul')
return;
try {
/* ***************************************************************
Pfad zum auszuführenden Programm ODER Ordner definieren:
var APPpath = 'C:\\Windows\\notepad.exe';
var APPpath = 'C:\\Windows\\';
*****************************************************************
Label und Tooltip definieren:
var label = "Notepad";
var tooltiptext = "Notepad starten";
***************************************************************** */
var APPpath = 'C:\\Windows\\System32\\osk.exe';
var label = 'Notepad';
var tooltiptext = 'Notepad starten';
Components.utils.import("resource:///modules/CustomizableUI.jsm");
CustomizableUI.createWidget({
id: "ucjs-" + label + "-button",
defaultArea: CustomizableUI.AREA_NAVBAR,
removable: true,
label: label,
tooltiptext: tooltiptext,
onClick: function () {
var file = Cc['@mozilla.org/file/local;1'].createInstance(Ci.nsIFile);
file.initWithPath(APPpath);
file.launch();
},
onCreated: function (aNode) {
var ICOpath = APPpath.replace(/\\/g, "//");
aNode.style.listStyleImage = 'url("moz-icon:file:///' + ICOpath + '?size=16")'
return aNode;
}
});
} catch (e) {
Components.utils.reportError(e);
};
})();
Alles anzeigen