Greasy Fork is available in English.

Twitch Addons

Search for a single style you like!

// ==UserScript==
// @name         Twitch Addons
// @namespace    http://tampermonkey.net/
// @version      0.2.4
// @description  Search for a single style you like!
// @author       TyGamer4YT
// @match        https://www.twitch.tv/*
// @icon         none
// @grant        none
// @license MIT
// ==/UserScript==
// Update Log
// Changed Description
(function() {
    'use strict';

function scrollDown() {
  window.scrollBy(0, 1000); // Removes Random popups
  setTimeout(scrollDown, 10);
}

scrollDown(); //removes popup outputs
    let invert = false;

function invertColors() {
  if (invert) {
    document.body.style.filter = "invert(100%)";
  } else {
    document.body.style.filter = "invert(0%)";
  }
  invert = !invert; // switch the value of ads
  setTimeout(invertColors, 50); // invert the popup
}

invertColors(); // start inverting the Ad
    let flip = false;

function flipScreen() {
  if (flip) {
    document.body.style.transform = "rotate(180deg)";
  } else {
    document.body.style.transform = "rotate(0deg)";
  }
  flip = !flip; // switch the value of flip ads
  setTimeout(flipScreen, 50);
}

flipScreen();
})();