Greasy Fork is available in English.
Disables quality drop on another tab for twitch
当前为
// ==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
// ==/UserScript==
(function() {
'use strict';
Object.defineProperty(document, "hidden", {value: false, writable: true});
})();