Skip to content

Instantly share code, notes, and snippets.

@zeroeth
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save zeroeth/2aee32ea86c152d9d1c0 to your computer and use it in GitHub Desktop.

Select an option

Save zeroeth/2aee32ea86c152d9d1c0 to your computer and use it in GitHub Desktop.
hide the wiki banner after donating
// 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