// ==UserScript== // @name Twitch Quality // @namespace http://tampermonkey.net/ // @version 0.1 // @description Disables quality drop on another tab for twitch // @author blacksquirtle // @match https://www.twitch.tv/* // @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; Object.defineProperty(document, "hidden", {value: false, writable: true}); })();