Wikipedia Donation Ad Remover

By realwx Last update Dec 8, 2007 — Installed 433 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0
// ==UserScript==
// @name		Wikipedia Donation Ad Remover
// @description		Removes the annoying contribute from the top of the page.
// @include		http://*wikipedia.org/wiki*
// @include		http://*wikipedia.org/w*
// ==/UserScript==

(function() {

	if(document.getElementById("siteNotice")) {
		document.getElementById("siteNotice").style.display="none";
	}

})();