GBT dark mode (GBTDM)

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

  1. // ==UserScript==
  2. // @name GBT dark mode (GBTDM)
  3. // @description Makes GBT dark... (Quick and dirty, not perfect. And yes, it realy is THAT EASY...)
  4. // @namespace _pc
  5. // @version 0.21
  6. // @license MIT
  7. // @author verydelight
  8. // @icon https://www.gayporntube.com/favicon.ico
  9. // @match *://www.gayboystube.com/*
  10. // @match *://www.gayporntube.com/*
  11. // @grant none
  12. // @run-at document-start
  13. // ==/UserScript==
  14. const darkModeStyles = `* {
  15. background: #202124 !important;
  16. border-color: #3c4043 !important;
  17. color-scheme: dark !important;
  18. color: #bdc1c6 !important;
  19. transition: unset !important; }`;
  20. const styleElement = document.createElement('style');
  21. styleElement.textContent = darkModeStyles;
  22. document.head.appendChild(styleElement);