Skip to content

Instantly share code, notes, and snippets.

@fcurella
Forked from jefftriplett/gist:5851007
Created June 24, 2013 15:49
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 fcurella/5851065 to your computer and use it in GitHub Desktop.
Save fcurella/5851065 to your computer and use it in GitHub Desktop.
// ==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/*/dev/
// @copyright 2013+, Jeff Triplett
// ==/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