Skip to content

Instantly share code, notes, and snippets.

@nesrak1
Created January 27, 2026 04:11
Show Gist options
  • Select an option

  • Save nesrak1/01e4896cc8bf0053deb2c47ec67263de to your computer and use it in GitHub Desktop.

Select an option

Save nesrak1/01e4896cc8bf0053deb2c47ec67263de to your computer and use it in GitHub Desktop.
// ==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