Greasy Fork is available in English.

Fastest aternos adblocker

Blocks ads on aternos.org (adjust timing for your internet connection I guess)

// ==UserScript==
// @name        Fastest aternos adblocker
// @namespace   Violentmonkey Scripts
// @match       https://aternos.org/*
// @grant       none
// @version     1.0
// @author      rundik
// @description Blocks ads on aternos.org (adjust timing for your internet connection I guess)
// ==/UserScript==
(function () {

  const body = document.querySelector(".body");
  const header = document.querySelector("header.header");
  document.querySelector("div[style*='#F62451']").remove();
  setTimeout(function() {
    body.setAttribute("style", "");
    header.setAttribute("style", "");
    body.style.zIndex = "999999999";
    body.style.width = "100vw";
    body.style.height = "100vh";
  }, 300)
})();