Cutty & Exe Bypass

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

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);
})();