Skip to content

Instantly share code, notes, and snippets.

@stripedpurple
Last active January 3, 2019 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stripedpurple/7c1f0f12295f1b04652341767ca687e7 to your computer and use it in GitHub Desktop.
Save stripedpurple/7c1f0f12295f1b04652341767ca687e7 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name DC Universe Capture Modifier
// @namespace http://stripedpurple.io
// @version 2019.01.03.1
// @description makes css tweaks for my benafit
// @author Austin Barrett
// @match *://www.dcuniverse.com/videos/watch/*
// @grant none
// ==/UserScript==
window.onload = function () {
'use strict';
document.querySelectorAll('.video-player')[0].parentNode.style.background = 'red';
document.querySelectorAll('.vjs-control-bar')[0].style.opacity = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment