Terraria Wiki Cleaner

Terraria Wiki Cleaner removes the annoying header, sidebar and footer banners from the wiki while also fixing the spacing issues when removing those ads.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Terraria Wiki Cleaner
// @description Terraria Wiki Cleaner removes the annoying header, sidebar and footer banners from the wiki while also fixing the spacing issues when removing those ads.
// @match       *://terraria.wiki.gg/*
// @author      Spectrox
// @version     0.2
// @license     http://unlicense.org
// @namespace   *://terraria.wiki.gg/*
// @icon        https://external-content.duckduckgo.com/ip3/terraria.wiki.gg.ico
// @require     https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js
// @require     https://greasyfork.org/scripts/383527-wait-for-key-elements/code/Wait_for_key_elements.js?version=701631
// @grant       GM_addStyle
// ==/UserScript==

waitForKeyElements(".games-showcase-sidebar", killNode);
waitForKeyElements(".header-showcase", killNode);
waitForKeyElements(".games-showcase-footer", killNode);

function killNode(jNode) {
    jNode.remove();
}