Twitch web video player downscale fix

disables the annoying video playback downscaling when a tab is inactive

目前為 2020-07-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Twitch web video player downscale fix
// @namespace    http://tampermonkey.net/
// @version      2.1
// @description  disables the annoying video playback downscaling when a tab is inactive
// @author       Slapsy
// @match        https://www.tampermonkey.net/index.php?version=4.9.5941&ext=fire&updated=true
// @match        https://*.twitch.tv/*
// @match        http://*.twitch.tv/*
// @match        https://*.jsbin.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    Object.defineProperty(document, 'hidden', {value: false});
    Object.defineProperty(document, 'visibilityState', {value: 'visible'});
}
)();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址