Skip to content

Instantly share code, notes, and snippets.

@mathiasbynens
Created November 21, 2011 19:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mathiasbynens/1383687 to your computer and use it in GitHub Desktop.
Save mathiasbynens/1383687 to your computer and use it in GitHub Desktop.
Userscript that hides Jimmy Wales on Wikipedia
// ==UserScript==
// @name Hide Jimmy Wales.
// @match http://*.wikipedia.org/*
// ==/UserScript==
(function() {
var banner = document.getElementById('siteNotice');
banner && banner.style.display = 'none';
}());
@mathiasbynens
Copy link
Author

Note that this avoids the overhead of setting cookies.

@jdalton
Copy link

jdalton commented Nov 21, 2011

Bless you!

@jdalton
Copy link

jdalton commented Nov 21, 2011

@menasheh
Copy link

Does this work with the modern appeal?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment