您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.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);