Greasy Fork is available in English.

ashrfd bypass

Automatically submit a form on ashrfd.xyz to bypass it

// ==UserScript==
// @name         ashrfd bypass
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically submit a form on ashrfd.xyz to bypass it
// @author       Minoa
// @match        https://ashrfd.xyz/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code to be executed on page load
    window.addEventListener('load', function() {
        // Check if the form exists
        var userForm = document.querySelector("#userForm");
        if (userForm) {
            // Create hidden input element
            var el = document.createElement("input");
            el.type = "hidden";
            el.name = "validator94994";
            el.value = "true";
            userForm.appendChild(el);

            // Disable button
            var btn = document.querySelector("#cbt");
            if (btn) {
                btn.innerText = "Please wait...";
                btn.disabled = true;
            }

            // Submit the form
            userForm.submit();
        }
    });
})();