The Wikipedia Cleaner

Wikipedia Remove Money Request

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         The Wikipedia Cleaner
// @description	 Wikipedia Remove Money Request
// @namespace	 http://userscripts.org/users/boku
// @match	     *://*.wikipedia.org/*
// @version	     2026.1
// @require	     https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js#sha384-wNIkdslLz2GMPWQAggQBKQsHXGCGOFYfeR4j60Y5cjmbQAcDwlXVOlJi0790HMq2
// @license      Beerware
// @run-at       document-end
// @icon         https://www.google.com/s2/favicons?sz=64&domain=wikipedia.org
// ==/UserScript==
"use strict";
setInterval(CleanWikipedia, 100);
function CleanWikipedia() {
    /* 2026 */
    $("#portalBanner_en10C_2526_blueBanner").remove();
    document.body.classList.remove("bottom-banner");
    /* 2021 */
    $('#centralNotice').remove();
    $('#frb-inline').remove();
    $('#portalBanner_en6C_2021a_txt_1').remove();
    $('#portalBanner_en6C_2021a_txt_2').remove();
    $('#portalBanner_en6C_2021a_txt_3').remove();
    $('#portalBanner_en6C_2021a_txt_4').remove();
}