-
-
Save fcurella/5851065 to your computer and use it in GitHub Desktop.
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/*/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