您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Works for desktop
当前为
// ==UserScript== // @name Auto Dark Mode for Twitch // @namespace https://bengrant.dev // @version 0.2 // @description Works for desktop // @author Avi (https://avi12.com) // @copyright 2025 Avi (https://avi12.com) // @license MIT // @match https://www.twitch.tv/* // @icon https://www.google.com/s2/favicons?domain=twitch.tv // @grant none // ==/UserScript== (function () { "use strict"; /** * @param theme {"dark" | "light"} */ function setTheme(theme) { document.body.classList.value = document.body.classList.value.replace(/tw-root--theme-(light|dark)/, `tw-root--theme-${theme}`); localStorage.setItem("twilight.theme", `${theme === "dark" ? 1 : 0}`); } const darkQuery = matchMedia("(prefers-color-scheme: dark)"); setTheme(darkQuery.matches ? "dark" : "light"); darkQuery.addEventListener("change", e => setTheme(e.matches ? "dark" : "light")); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址