Block the donation prompts!
// ==UserScript==
// @name Wikipedia Donate Blocker India
// @namespace https://doctorlife.in/
// @version 0.1
// @description Block the donation prompts!
// @author DrGS
// @match https://*.wikipedia.org/wiki/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('div.frb').forEach(
function myFunction(item, index, arr) {item.style.display = "none";}
)
})();