Greasy Fork

Greasy Fork is available in English.

Twitch Quality

Disables quality drop on another tab for twitch

目前为 2024-09-11 提交的版本。查看 最新版本

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