Skip to content

Instantly share code, notes, and snippets.

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 keesiemeijer/0b844fc4e43f6fcb0740f34697aff7fa to your computer and use it in GitHub Desktop.
Save keesiemeijer/0b844fc4e43f6fcb0740f34697aff7fa to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Imbd SkipAd
// @namespace Imbdskipad
// @version 0.1
// @description Remove IMBD header ad
// @author keesiemeijer
// @match https://www.imdb.com/*
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('body#styleguide-v2 { background: none !important; }');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment