Twitch Rainbow Background

Adds a rainbow gradient background to Twitch

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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%; }
        }
    `);
})();