Last active
December 18, 2015 21:59
-
-
Save jefftriplett/5851007 to your computer and use it in GitHub Desktop.
Taming the new Django Docs banner.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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