您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes all references to Wikipedia donation banners and links.
// ==UserScript== // @name Delete-WikiDonations // @namespace Violentmonkey Scripts // @version 1.2 // @description Removes all references to Wikipedia donation banners and links. // @author Lucas11 // @license MIT // @match https://*.wikipedia.org/* // @grant none // @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2 // @require https://cdn.jsdelivr.net/npm/@violentmonkey/[email protected] // ==/UserScript== VM.observe(document.body, () => { const centralNotice = document.querySelector('#centralNotice'); if (centralNotice) centralNotice.remove(); const donateLinks = document.querySelectorAll('#pt-sitesupport, #pt-sitesupport-2'); donateLinks.forEach(el => el.remove()); const extraDonationElements = document.querySelectorAll(` .cn-fundraising, .frb, .frb-inline, .frb-dialog, .frb-dialog-iad, .frb-nag, [class*="donate"], [id*="donate"], .fundraising, .frbanner, `); extraDonationElements.forEach(el => el.remove()); return true; });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址