您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
rahhhh
// ==UserScript== // @name twitch theme // @namespace omega skibidi toilet 69696969 // @version 0.0.5 // @description rahhhh // @author skibidi // @match *://*.twitch.tv/* // @grant none // @license MIT; https://mit-license.org/ // ==/UserScript== (function() { 'use strict'; var style = ` :root { --color-background-base: #42425b !important; --color-background-body: #545474 !important; --color-background-float: #545475 !important; --color-background-tag-default: #70709a !important; --color-text-tag: #4c00a0 !important; --color-text-base: #fff !important; --color-text-alt-2: #fff !important; --color-background-alt: #42425b !important; --color-background-button-secondary-default: #545475 !important; } .shSEm { --color-background-base: #42425b !important; } .kZtCIs, .kHFZLM { background-color: #545474 !important; } .channel-root__info .channel-info-content, .kjJPRk .top-nav, .cjHedp { background-color: #42425b !important; } .simplebar-content, .bHXUdg, .igZqfU { background-color: #545474 !important; } .iUOyOR, .kRwpQS, .GHFzH { --color-background-alt-2: #545474 !important; } .jMqYrH { --color-background-alt: #42425b !important; } .EtOcK { --color-background-alt: #545474 !important; } .jHLEAt { --color-background-alt-2: #42425b !important; } `; var elem = document.createElement('style'); elem.innerText = style; document.head.appendChild(elem); })();