您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A simple theme for Kick.com
- // ==UserScript==
- // @name Simple Theme for Kick.com
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description A simple theme for Kick.com
- // @author fredtheceo
- // @match https://kick.com/*
- // @grant GM_addStyle
- // ==/UserScript==
- (function() {
- 'use strict';
- // Add custom styles
- GM_addStyle(`
- body {
- background-color: #121212 !important; /* Dark background */
- color: #ffffff !important; /* Light text color */
- }
- a {
- color: #bb86fc !important; /* Custom link color */
- }
- /* Styling for headers */
- h1, h2, h3, h4, h5, h6 {
- color: #ffffff !important;
- }
- /* Optional: Style for buttons */
- button {
- background-color: #1f1f1f !important; /* Dark button background */
- color: #ffffff !important; /* Button text color */
- border: 1px solid #bb86fc !important; /* Button border */
- }
- /* Optional: additional styles */
- /* You can add more styles as needed */
- `);
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址