Greasy Fork is available in English.

Aternos SkipClick

Make aternos's stupid adblock thing auto click the skip button.

// ==UserScript==
// @name         Aternos SkipClick
// @namespace    http://cdn.playingallday383.pages.dev/plugins/aternos.js
// @version      1.0.1
// @description  Make aternos's stupid adblock thing auto click the skip button.
// @author       Notplayingallday383
// @match        https://aternos.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=aternos.org
// @license      AGPL
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function () {
        const btn = document.querySelector('.btn.btn-white.fueujWNDqqgo')
        btn.click()
    }, 1000);
})();