Created
January 27, 2026 04:11
-
-
Save nesrak1/01e4896cc8bf0053deb2c47ec67263de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name hidive style fixes | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.hidive.com/video/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description 4/8/2024, 2:13:39 AM | |
| // @grant GM_addStyle | |
| // @inject-into content | |
| // ==/UserScript== | |
| var intv = setInterval(function() { | |
| var res = document.getElementById("ds-vtt-styles"); | |
| if (res != null) { | |
| res.remove(); | |
| var dstt = document.getElementsByClassName("ds-text-track")[0]; | |
| dstt.style.height = "100%"; | |
| dstt.style.fontSize = "35px"; | |
| clearInterval(intv); | |
| } | |
| }, 2000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment