您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically toggle built-in dark mode on resetera.com
// ==UserScript== // @name ResetEra Auto Dark Mode // @namespace http://tampermonkey.net/ // @version 0.2 // @description Automatically toggle built-in dark mode on resetera.com // @author Nathaniel Wu // @match *.resetera.com/* // @license Apache-2.0 // @supportURL https://gist.github.com/Nathaniel-Wu/13f3c865e190c2b182e41b9978c49782 // @grant none // ==/UserScript== (function () { 'use strict'; const setDarkMode = on => { const light_dark_switch = document.querySelector('label#js-XFUniqueId3.thstyleswitch_toggleSwitch > input.thstyleswitch_toggleSwitch__checkbox'); if (!Boolean(light_dark_switch)) { console.log('site updated, current script no longer works'); return; } let is_light = !(light_dark_switch.checked); if (on === is_light) light_dark_switch.click(); } if (window.matchMedia) {// if the browser/os supports system-level color scheme setDarkMode(window.matchMedia('(prefers-color-scheme: dark)').matches); window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => setDarkMode(e.matches)); } else {// otherwise use local time to decide let hour = (new Date()).getHours(); setDarkMode(hour > 18 || hour < 8); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址