Hallo, bei FF61 funktionieren diese Tasten nicht mehr.
Kann mir jemand, bitte, helfen?
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