Cutty & Exe Bypass

Auto klik Continue / I am not a robot / Go di cuttlinks

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Cutty & Exe Bypass
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Auto klik Continue / I am not a robot / Go di cuttlinks
// @author       pcayb96
// @match        https://cuttlinks.com/*
// @match        https://exe-links.com/*
// @match        https://exeygo.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function autoClick() {
        const keywords = [
            "continue",
            "go",
            "i am not a robot",
        ];

        // cari semua button dan a
        const elements = document.querySelectorAll('button, a, input[type="button"], input[type="submit"]');

        elements.forEach(el => {
            let text = (el.innerText || el.value || "").toLowerCase().trim();

            if (!text) return;

            for (let key of keywords) {
                if (text.includes(key)) {
                    console.log("Auto Click:", text);
                    el.click();
                    break;
                }
            }
        });
    }

    // jalankan tiap 5 detik
    setInterval(autoClick, 5000);
})();