Sleazy Fork is available in English.

GBT dark mode (GBTDM)

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

// ==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.2
// @license           MIT
// @author            verydelight
// @icon              https://www.gayboystube.com/favicon.ico
// @match             *://www.gayboystube.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);