- Firefox-Version
- Firefox 108.0
- Betriebssystem
- Windows 10 22H2 64 Bit
Hallo @ all.
Standardmäßig sieht Z.B. der Tabtext vom Forum so aus:
Bei Nutzung von diesem Skript in z.B. Tampermonkey
JavaScript
// ==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/
// ==/UserScript==
const strings = [
'- camp-firefox.de',
];
var titlestring = document.title;
for (let str of strings) {
titlestring = titlestring.replace(str, '', 'g');
};
document.title = titlestring;
Alles anzeigen
sieht das dann so aus:
Der Zusatz - camp-firefox.de wird ausgeblendet.
Bei einem Reload der Seite wird dieser Zusatz aber trotzdem kurzzeitig wieder angezeigt.
Meine Frage jetzt:
Fällt evtl. jemandem etwas dazu ein, wie man das verhindern kann, bzw. ob man das Skript um die Funktion dafür erweitern kann?
Für jegliche Hilfe wie immer herzlichen Dank vorweg.