// 2002Andreas Hatte doch meinen Beitrag wieder entfernt, da ich dies noch gesehen hatte...
Beiträge von Boersenfeger
-
-
Der letzte der wahren Liberalen ist von Bord gegangen. RIP
-
Moin ostsee,
auch späte Glückwünsche sind Glückwünsche! Vielen Dank und Mast und Schotbruch!
-
Auch Dir herzlichen Dank!
-
Vielen Dank ihr Lieben!
Aufstehen, Frühstücken, Einkaufen, kleines Mittag kochen und essen, 2 Stunden Sport gemacht und jetzt gleich lecker Essen gehen; das ist doch ein schöner Rentner-Tag.
Ach ja, zwischendurch noch ganz kurz hier aufgeschlagen. -
-
//Wer sagt denn, das es nur warme thermische Belastung gibt? Frag mal meine Frau!
-
Frage, bei Wetterkontor gibt es jetzt auch:
https://www.wetterkontor.de/de/bio/thermische-belastung.asp
https://www.wetterkontor.de/de/bio/befinden-und-gesundheit.aspKönnte man als weitere Einträge einbinden, was meint ihr?
In Anbetracht der Klima-Entwicklung würde ich die auch gut finden!
-
-
Die Fehlermeldung ist mit der Änderung weg!
In der Tat sind alle vermissten Icons im Puzzleteil.
Die muss ich nun erst in die Symbolleiste ziehen und anschließend dann via Hamburger-Menü in meine Zusatzleiste verschieben. Danke für den Tipp!
Normalerweise ist das Puzzleteil im Anpassenfenster. Leider konnte man auch nicht sehen, dass sich die Icons da verbergen.
Gibts ein Script um diese sichtbar zu machen oder besser, dass die Icons von Erweiterungen gleich in der Zusatzleiste auftauchen?
-
In welchem Script?
Die Zusatzleiste wird mit diesem Script aufgerufen:CSS
Alles anzeigen/* Statusleiste für Firefox */ // https://www.camp-firefox.de/forum/viewtopic.php?p=1052187&sid=d4e33b574226439c26dfb45629b71369#p1052187 // entwickelt von aborix (function() { if (location != AppConstants.BROWSER_CHROME_URL) return; var css =` #new-toolbar { height: 28px; direction: rtl; -moz-window-dragging: no-drag; border-top: 1px solid black !important; background-color: rgba(0,0,0,0) !important; color: black !important; } #statuspanel { bottom: -3px !important; left: 0 !important; height: 24px !important; max-width: 75% !important; transition: none !important; } #statuspanel-label{ background:#7598ff!important; border: none !important; font: 17px Arial Rounded MT Bold !important; font-weight: normal !important; color: black !important; } `; var sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); var uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(css)); sss.loadAndRegisterSheet(uri, sss.AUTHOR_SHEET); var tb = document.createXULElement('toolbar'); tb.id = 'new-toolbar'; tb.setAttribute('customizable', true); tb.setAttribute('mode', 'icons'); tb.setAttribute("context","toolbar-context-menu"); var vbox = document.createXULElement('vbox'); document.getElementById('navigator-toolbox').parentNode.insertBefore( vbox, document.getElementById('browser-bottombox')); vbox.style.backgroundColor = '#ffe4c4'; vbox.appendChild(tb); CustomizableUI.registerArea('new-toolbar', {legacy: true}); CustomizableUI.registerToolbarNode(tb); })();
Wie lautet die richtige URL?
In Violentmonkey erscheint dann noch dieser Hinweis:
Bad pattern: missing "/" for path in https://www.camp-firefox.de* -
Ich habe alle Erweiterungen ohne Scripte und Codes nach Neustart neu installiert und es ergab sich keine Änderungen in der Nichtanzeige der Icons.
milupo Die Version von 2022 ist hier installiert und funktioniert auch.Bei der Neuinstallation von ViolentMonkey und der Wiedereinbindung der vorliegenden Script wurde folgendes Script angemeckert:
Code
Alles anzeigen// ==UserScript== // @name Camp Firefox ausblenden // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @grant none // @icon https://www.camp-firefox.de/images/style-2/favicon.ico // @match https://www.camp-firefox.de* // @match https://www.camp-firefox.de/forum/ // @match https://www.camp-firefox.de/forum/thema/ // @match https://www.camp-firefox.de/forum/forum/15-firefox-allgemein/ // @run-at document-start // ==/UserScript== const strings = [ '- camp-firefox.de', ' - Firefox Allgemein', '- Individuelle Anpassungen', 'Camp Firefox -', '- Seite', '| ComputerBase Forum', '- CHIP', '· GitHub', ]; function replaceStrings() { let titlestring = document.title; for (let string of strings) { titlestring = titlestring.replace(string, ''); } document.title = titlestring; } if (document.title) { replaceStrings(); } else { let intID = setInterval(function() { if (document.title) { replaceStrings(); clearInterval(intID); } }, 0); }
Irgendein Problem mit dem Icon aus Zeile 8
-
-
Aus verschiedenen Gründen habe ich vor einiger Zeit ein neues Profil für meinen Nightly aufgebaut. Seit dem fehlt mir das Icon für die Erweiterung Violent-Monkey Version 2.30.0 in meiner Zusatz-Toolbar. Gleiches gilt für WaybackMachine, Keep or Delete sowie InformEnter. Auch im Anpassenfenster ist es nicht. Hat jemand einen Tipp? So sieht es in der Version 135 aus.
-
milupo Welche Zeilen hattest du geändert? Wenn ich dein Script so importiere, spreche ich ja nicht nur sorbisch, sondern alle Ortsangaben wären überschrieben!
-
claude kennie Vielen Dank für deinen Vorschlag, ich nutze nun aber die in #6 vorgeschlagene Erweiterung weautoPagerize. Diese funktioniert sehr gut. Das hätte ich vielleicht klarstellen sollen.
-
-
Habe noch mal Zeile 21 geändert, da die Uhrzeit in das Neuladen-Icon rein ging. Jetzt ists links aber wieder zuviel Abstand.
-
2002Andreas Da das ursprüngliche Problem gelöst ist, erlaube ich mir, mein kleines hier weiterzubetreiben; falls nicht gewünscht, bitte verschieben:
Wie kann ich das Eingekreiste entfernen und den Abstand zwischen Versionsnummer und Wochentag anpassen bzw. verkürzen?
Der von mir angepasste Code:
CSS
Alles anzeigen/* Uhr in Nav-Bar Nightly*/ (function() { if (location.href !== 'chrome://browser/content/browser.xhtml') return; function doDatClock() { var timestr = new Date().toLocaleDateString( locale , options ); if( count == 1 ) { var counter = new Date( 1000 * sec ).toISOString().substr( 11 , 8 ); // .replace(/^[0:]+/, '') // if you want to replace zeroes and colons timestr = timestr + ' (' + counter + ')'; sec++; } ClockLabel.setAttribute( 'value', timestr ); } var count = 0; // if you don't want a counter set this to zero var agent = 1; // if you just want the clock set this to zero var language = 'de-DE'; // locale, e.g. 'de-DE' , 'en-US' , 'fr-FR' var personalText = ' '; // your personal text here var cssColor = 'white'; // Font Color var css = 'padding-top: 5px !important; padding-left: 0px; color: ' + cssColor + '; font-weight: bold; text-shadow: none; font-size:20px; width:295px; margin-right:70px;'; var cssA = 'margin-left:10px; width: auto;'; var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric', hour: '2-digit', minute: '2-digit', second: '2-digit' }; var sec = 0; var locale = language || window.navigator.languages[0]; var position = document.getElementById('urlbar-container'); var ClockLabel = document.createXULElement('label'); ClockLabel.setAttribute('id', 'statusbar-clock-display'); ClockLabel.setAttribute('class', 'statusbarpanel-text'); ClockLabel.setAttribute('style', css); position.parentNode.insertBefore(ClockLabel, position.nextSibling); if( agent == 1 ) { var AgentLabel = document.createXULElement('label'); AgentLabel.setAttribute('id', 'statusbar-agent-display'); AgentLabel.setAttribute('class', 'statusbarpanel-text'); AgentLabel.setAttribute('style', css + cssA); var FFstr = window.navigator.userAgent.split(' '); var FF = FFstr[FFstr.length-1].replace( '/' , ' ' ); var gAppInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo).QueryInterface(Ci.nsIXULRuntime); var text = "Nightly > " + gAppInfo.version + personalText; AgentLabel.setAttribute( 'value', text ); position.parentNode.insertBefore(AgentLabel, position.nextSibling); } if( count == 1 ) { ClockLabel.addEventListener('dblclick', function() { sec = 0; }); } window.setInterval( doDatClock , 1000 ); })();
-
Wenns auch ohne echte Uhr geht...
CSS
Alles anzeigen/* Uhr in Nav-Bar */ function doDatUhrCallback() {try{doDatUhr();}catch(ex){} } function convertUTCDateToLocalDate(date) { var newDate = new Date(date.getTime() + date.getTimezoneOffset() * 60 * 1000); var offset = date.getTimezoneOffset() / 60; var hours = date.getHours(); newDate.setHours(hours - offset); return newDate; } function doDatUhr() { var days = ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]; var months = ["Jan", "Feb", "März", "Apr", "Mai", "Juni", "Juli", "Aug", "Sep", "Okt", "Nov", "Dez"]; window.setTimeout(doDatUhrCallback, 1000); var D = new Date(); var day = days[D.getDay()]; var month = months[D.getMonth()]; var year = D.getFullYear(); var hour = D.getHours(); var minute = D.getMinutes(); var second = D.getSeconds(); var date = day + ", " + (D.getDate() < 10 ? "0" +D.getDate() : D.getDate()) + ". " + month + ". " + year + " "; var time = (hour < 10 ? "0" +hour : hour) + ":" + (minute < 10 ? "0" +minute : minute) + ":" + (second < 10 ? "0" +second : second); var timestr = date + time + " Uhr" + " "; var text = " Nightly 64 "; var status = document.getElementById("statusbar-clock-display"); status.setAttribute("value", text + timestr); /* if (hours < 6 || hours > 20) { status.setAttribute("style", "color: white"); } else { status.setAttribute("style", "color: white"); } */ status.setAttribute("style", clockstyle); } var ClockStatus = document.getElementById("urlbar-container"); var ClockLabel = document.createXULElement("label"); ClockLabel.setAttribute("id", "statusbar-clock-display"); ClockLabel.setAttribute("class", "statusbarpanel-text"); ClockLabel.setAttribute("style", "padding-top:3px!important;font-size:19px;font-weight:bold;color:white!important;"); ClockStatus.parentNode.insertBefore(ClockLabel, ClockStatus.nextSibling); doDatUhr();
Zeile 29 muss dann angepasst werden...
BTW: Vielleicht könnte da noch das Script so umgebastelt werden, dass die tatsächliche Bezeichnung erscheint, also z.B. Nightly 137.a1