Created
November 23, 2011 16:04
-
-
Save makimoto/1389061 to your computer and use it in GitHub Desktop.
a user script to remove Wikipedia's donation notice
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 Remove Wikipedia Notice | |
// @namespace http://makimoto.tsuyabu.in | |
// @include http://*.wikipedia.org/* | |
// ==/UserScript== | |
document.getElementById('siteNotice').style.display = 'none' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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'