Skip to content

Instantly share code, notes, and snippets.

@makimoto
Created November 23, 2011 16:04
Show Gist options
  • Save makimoto/1389061 to your computer and use it in GitHub Desktop.
Save makimoto/1389061 to your computer and use it in GitHub Desktop.
a user script to remove Wikipedia's donation notice
// ==UserScript==
// @name Remove Wikipedia Notice
// @namespace http://makimoto.tsuyabu.in
// @include http://*.wikipedia.org/*
// ==/UserScript==
document.getElementById('siteNotice').style.display = 'none'
@japzone1
Copy link

Updated it for December 2014:
// ==UserScript==
// @name Remove Wikipedia Notice
// @namespace http://makimoto.tsuyabu.in
// @include http://.wikipedia.org/
// ==/UserScript==

document.getElementById('centralNotice').style.display = 'none'
document.getElementById('mw-head').style.top = '0px'

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