GBT dark mode (GBTDM)

Makes GBT dark... (Quick and dirty, not perfect. And yes, it realy is THAT EASY...)

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name	          GBT dark mode (GBTDM)
// @description	      Makes GBT dark... (Quick and dirty, not perfect. And yes, it realy is THAT EASY...)
// @namespace         _pc
// @version           0.21
// @license           MIT
// @author            verydelight
// @icon              https://www.gayporntube.com/favicon.ico
// @match             *://www.gayboystube.com/*
// @match             *://www.gayporntube.com/*
// @grant             none
// @run-at            document-start
// ==/UserScript==
const darkModeStyles = `* {
background: #202124 !important;
border-color: #3c4043 !important;
color-scheme: dark !important;
color: #bdc1c6 !important;
transition: unset !important; }`;
const styleElement = document.createElement('style');
styleElement.textContent = darkModeStyles;
document.head.appendChild(styleElement);