Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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';
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment