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
// ==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);
}
Alles anzeigen
Irgendein Problem mit dem Icon aus Zeile 8

