Cutty & Exe Bypass

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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);
})();