Old Reddit fix video controls

2025-07-23 - Remove the randomly overlayed garbage that blocks video controls on old.reddit.com

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Old Reddit fix video controls
// @namespace    https://www.reddit.com
//
// @match        https://old.reddit.com/*
// @icon         https://www.redditstatic.com/desktop2x/img/favicon/android-icon-192x192.png
//
// @grant       none
// @version     1.0.2
// @author      mif
// @license     MIT
// @description 2025-07-23 - Remove the randomly overlayed garbage that blocks video controls on old.reddit.com
// ==/UserScript==


function css_overwrite (cssStr) {
    var D               = document;
    var newNode         = D.createElement ('style');
    newNode.textContent = cssStr;

    var targ    = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
    targ.appendChild (newNode);
}

css_overwrite('[id^="video-"] > div.vsc-controller { display: none !important; }');
// Reddit broke this after 1 week somehow ...
// css_overwrite('[id^="video-"] > div.vsc-controller.vcs-show   { display: None; }');
// since something like this doesn't work
// css_overwrite('#video-* > div.vsc-controller.vcs-show   { display: None; }');