Bye bye Ads
// ==UserScript==
// @name [NO ADS] Gamepedia
// @namespace noads-gamepedia
// @version 0.1
// @description Bye bye Ads
// @author You
// @match https://*.gamepedia.com/*
// @grant GM_addStyle
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
$('#bodyContent').css('width', '100%');
$('#btfheroContainer').remove();
$('#siderail_terraria_gamepedia').remove();
$('#atflb').remove();
$('.ad-placement').remove();
console.log('[NO ADS] Gamepedia Loaded.');
})();