Twitch web video player downscale fix

disables the annoying video playback downscaling when a tab is inactive

  1. // ==UserScript==
  2. // @name Twitch web video player downscale fix
  3. // @namespace http://tampermonkey.net/
  4. // @version 2.1
  5. // @description disables the annoying video playback downscaling when a tab is inactive
  6. // @author Slapsy
  7. // @match https://*.twitch.tv/*
  8. // @match http://*.twitch.tv/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. Object.defineProperty(document, 'hidden', {value: false});
  15. Object.defineProperty(document, 'visibilityState', {value: 'visible'});
  16. }
  17. )();

QingJ © 2025

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