Twitch Rainbow Background

Adds a rainbow gradient background to Twitch

// ==UserScript==
// @name         Twitch Rainbow Background
// @namespace    http://tampermonkey.net/
// @version      V1
// @description  Adds a rainbow gradient background to Twitch
// @author       You
// @match        https://www.twitch.tv/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Add a CSS rule for the rainbow background
    GM_addStyle(`
        body {
            background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #00ff00, #00b0ff, #8a00ff, #ff00cc, #ff0000);
            background-size: 300% 300%;
            animation: rainbowBackground 10s ease infinite;
            height: 100%;
            margin: 0;
            color: white; /* Adjust text color for better contrast */
        }

        @keyframes rainbowBackground {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
    `);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址