Shell Shockers Rainbow Theme

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或关注我们的公众号极客氢云获取最新地址