Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aninhumer/98e8494633624ae5a84d to your computer and use it in GitHub Desktop.
Save aninhumer/98e8494633624ae5a84d to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Netflix Disable Billboard Video
// @namespace aninhumer
// @include https://www.netflix.com/browse
// @version 1
// @grant none
// ==/UserScript==
var billboard = document.getElementsByClassName('billboard-motion')[0];
billboard.parentNode.removeChild(billboard);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment