NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Aternos AntiAD // @namespace https://openuserjs.org/users/deltaDelete // @include https://aternos.org/* // @version 0.6 // @description Delete ad elements on aternos.org // @author deltaDelete // @copyright 2019, deltaDelete (https://openuserjs.org/users/deltaDelete) // @license MIT // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js // @grant GM_addStyle // ==/UserScript== $(function () { if ($(".ad").length) { console.log("Ads found!"); $(".ad").remove(); $(".sidebar").remove(); console.log("Ads have been removed"); $(".server-b-tutorials").remove(); } })