uhdmovies - Auto Bypass Timer and Click Start Verification

Automatically click "Start Verification" after the 10-second timer finishes or button appears

当前为 2025-02-04 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name uhdmovies - Auto Bypass Timer and Click Start Verification
// @namespace http://tampermonkey.net/
// @author       Hasan-Abbas
// @version 0.1
// @description Automatically click "Start Verification" after the 10-second timer finishes or button appears
// @match https://*.unblockedgames.*/*
// @grant none
// ==/UserScript==

(function () {
    'use strict';

    function clickStartVerificationButton() {
        let startVerificationButton = document.querySelector('a[onclick="document.getElementById(\'landing\').submit();"]');
        if (startVerificationButton) {
            startVerificationButton.click();
        }
    }

    const observer = new MutationObserver((mutationsList, observer) => {
        for (const mutation of mutationsList) {
            if (mutation.type === 'childList') {
                const startVerificationButton = document.querySelector('a[onclick="document.getElementById(\'landing\').submit();"]');
                if (startVerificationButton) {
                    clickStartVerificationButton();
                    observer.disconnect();
                }
            }
        }
    });

    observer.observe(document.body, { childList: true, subtree: true });

    setTimeout(clickStartVerificationButton, 100);
})();


// ==UserScript==
// @name         Auto Bypass Timer and Click Buttons (For 3rd URL - tech.unblockedgames.world)
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automates clicking buttons and handling delays between each step for 3rd URL
// @match        https://tech.unblockedgames.world/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    function clickVerifyButton() {
        let verifyButton = document.getElementById('verify_button2');
        if (verifyButton) {
            verifyButton.click();
        }
    }

    function clickContinueButton() {
        let continueButton = document.getElementById('verify_button');
        if (continueButton) {
            continueButton.click();
        }
    }

    function scrollToDownloadButton() {
        window.scrollTo(0, document.body.scrollHeight);
    }

    function clickDownloadButton() {
        let downloadButton = document.getElementById('two_steps_btn');
        if (downloadButton) {
            downloadButton.click();
        }
    }

    setTimeout(() => {
        clickVerifyButton();
    }, 20);


    setTimeout(() => {
    }, 7);


    setTimeout(() => {
        clickContinueButton();
    }, 10);


    setTimeout(() => {
        scrollToDownloadButton();
    }, 20);


    setTimeout(() => {
        clickDownloadButton();
    }, 27000);
})();