https://aternos.org/

Remove all ads and the warning popup in Aternos Panel.

Від 13.11.2020. Дивіться остання версія.

// ==UserScript==
// @name https://aternos.org/
// @namespace AternosAd
// @include https://aternos.org/*
// @grant none
// @description Remove all ads and the warning popup in Aternos Panel.
// @version 0.0.1.20201113051831
// ==/UserScript==

$(".ad").remove()
$(".ad-replacement").remove();
$("div[style]").attr("style", "opacity: 0;");
$("div > div > div:nth-child(2) > div:nth-child(3) > div.btn.btn-white").click();


$(".header").removeAttr("style");
$(".body").removeAttr("style", "");

var times = 0;
var interval = setInterval(function(){ 
  $(".header").removeAttr("style");
  $(".body").removeAttr("style");
  
  if(times ++ > 50000){
    clearInterval(interval);
  }
}, 0);