Last active
August 29, 2015 14:11
-
-
Save zeroeth/2aee32ea86c152d9d1c0 to your computer and use it in GitHub Desktop.
hide the wiki banner after donating
This file contains hidden or 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
| // This is a Tampermonkey script. | |
| // ==UserScript== | |
| // @name no whales | |
| // @namespace pixelflow | |
| // @version 0.0 | |
| // @description hide the whales | |
| // @author zeroeth | |
| // @match http://*.wikipedia.org/* | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| var banner_style = ".cn-fundraising { display: none !important; }" | |
| var top_space = "#mw-page-base { margin-top: 0 !important; }" | |
| var top_links = "#mw-head { top: 0 !important; }" | |
| GM_addStyle(banner_style); | |
| GM_addStyle(top_space); | |
| GM_addStyle(top_links); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment