GBT dark mode (GBTDM)

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

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