Skip to content

Instantly share code, notes, and snippets.

@jefftriplett
Last active December 18, 2015 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jefftriplett/5851007 to your computer and use it in GitHub Desktop.
Save jefftriplett/5851007 to your computer and use it in GitHub Desktop.
Taming the new Django Docs banner.
// ==UserScript==
// @name Django Docs Banner removal
// @namespace http://use.i.E.your.homepage/
// @version 0.0.2
// @description Removes the annoying "dev-warning" at the top of the website.
// @include https://docs.djangoproject.com/*
// @copyright 2013+, Jeff Triplett (Update by @fcurella)
// ==/UserScript==
(function() {
document.getElementById('dev-warning').style.display = 'none';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment