GBT dark mode (GBTDM)

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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);