Forked from mathiasbynens/hide-jimmy-wales.user.js
Created
November 28, 2011 12:50
-
-
Save mbernson/1400281 to your computer and use it in GitHub Desktop.
Userscript that hides Jimmy Wales on Wikipedia
This file contains 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 Hide Jimmy Wales. | |
// @match http://*.wikipedia.org/* | |
// ==/UserScript== | |
(function() { | |
var banner = document.getElementById('siteNotice'); | |
banner && banner.style.display = 'none'; | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment