您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Discord theme: Crimson Moon without nitro.. its a work in progress and is still buggy
// ==UserScript== // @name Discord Crimson Moon // @namespace http://tampermonkey.net/ // @version 0.1 // @description Discord theme: Crimson Moon without nitro.. its a work in progress and is still buggy // @author MrBlank // @license MIT // @match https://discord.com/* // @match https://discordapp.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function modifyHTMLTag() { var htmlTag = document.documentElement; htmlTag.setAttribute('lang', 'en-GB'); htmlTag.setAttribute('style', 'font-size: 100%; --saturation-factor: 1; --devtools-sidebar-width: 0px;'); htmlTag.setAttribute('data-rh', 'lang,style,class'); htmlTag.classList.add('custom-theme-background', 'full-motion', 'show-redesigned-icons', 'has-webkit-scrollbar', 'theme-dark', 'platform-web', 'font-size-16'); } function e() { var style = document.createElement('style'); style.setAttribute('data-client-themes', 'true'); style.setAttribute('data-rh', 'true'); style.textContent = ` .custom-theme-background { --custom-theme-background: linear-gradient(64.92deg, var(--bg-gradient-crimson-moon-1) 16.17%, var(--bg-gradient-crimson-moon-2) 72%); }`; document.head.appendChild(style); } e() modifyHTMLTag(); setInterval(modifyHTMLTag, 1); setInterval(e, 1); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址