Greasy Fork is available in English.

去你大爷的暂停背景

删除Twitch播放器暂停时的灰色背景

// ==UserScript==
// @name         去你大爷的暂停背景
// @namespace    gqqnbig.me
// @version      0.1
// @description  删除Twitch播放器暂停时的灰色背景
// @author       gqqnbig
// @match        https://www.twitch.tv/videos/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`.player-play-overlay {
    background-color: unset !important;
}`);
})();