BaapGPT

Verandert ChatGPT naar BaapGPT

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

Autor
micha or start with m
Dziennych instalacji
0
Wszystkich instalacji
1
Oceny
0 0 0
Wersja
1.0
Utworzono
31-05-2026
Zaktualizowano
31-05-2026
Rozmiar
820 bajtów
Licencja
Brak licencji
Dotyczy

// ==UserScript==
// @name BaapGPT
// @description Verandert ChatGPT naar BaapGPT
// @namespace baapgpt
// @version 1.0
// @match https://chatgpt.com/*
// @match https://chat.openai.com/*
// ==/UserScript==

(function () {
'use strict';

function replaceText() {
document.title = document.title.replace(/ChatGPT/g, "BaapGPT");

document.querySelectorAll("*").forEach(el => {
if (
el.childNodes.length === 1 &&
el.childNodes[0].nodeType === Node.TEXT_NODE
) {
el.textContent = el.textContent.replace(/ChatGPT/g, "BaapGPT");
}
});
}

replaceText();

new MutationObserver(replaceText).observe(document.body, {
childList: true,
subtree: true
});
})();