您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a beautiful rainbow background to Shell Shockers That Changes Colors every second.
// ==UserScript== // @name Shell Shockers Rainbow Theme // @namespace http://tampermonkey.net/ // @version V1 // @description Adds a beautiful rainbow background to Shell Shockers That Changes Colors every second. // @author CoffeeGamer2025 // @match https://shellshock.io/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; // Inject CSS for the rainbow background GM_addStyle(` body { background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet); background-size: 400% 400%; animation: rainbowAnimation 10s ease infinite; } @keyframes rainbowAnimation { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Optional: Make the background cover the whole page */ html, body { height: 100%; margin: 0; } `); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址