Persistent Auto-Click "Continue" on UpLearn

Continuously simulates user click on UpLearn's "Continue" button across multiple lessons/pages in SPA environment like React (no full reloads needed). 🧠✨

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

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Persistent Auto-Click "Continue" on UpLearn
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  Continuously simulates user click on UpLearn's "Continue" button across multiple lessons/pages in SPA environment like React (no full reloads needed). 🧠✨
// @author       JustSimplyDnaie
// @match        *://*.uplearn.co.uk/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    const BUTTON_SELECTOR = 'button[type="submit"]';
    const OBSERVER_DELAY = 500; // How often to check DOM changes
    let clickedRecently = false;

    function simulateClick(element) {
        console.log('[Auto-Click] Simulating click on "Continue"...');
        const mouseEvent = new MouseEvent('click', {
            bubbles: true,
            cancelable: true,
            view: window,
        });
        element.dispatchEvent(mouseEvent);
        clickedRecently = true;

        setTimeout(() => {
            clickedRecently = false;
        }, 3000); // prevent double-clicking during countdown transitions
    }

    function tryClickContinue() {
        if (clickedRecently) return;

        const buttons = document.querySelectorAll(BUTTON_SELECTOR);
        for (const btn of buttons) {
            if (btn.textContent.trim().toLowerCase() === 'continue') {
                console.log('[Auto-Click] Found "Continue" button. Clicking...');
                simulateClick(btn);
                break;
            }
        }
    }

    // Setup MutationObserver to detect dynamic content changes
    const observer = new MutationObserver(() => {
        tryClickContinue();
    });

    window.addEventListener('load', () => {
        console.log('[Auto-Click] Loaded. Watching for DOM changes...');
        observer.observe(document.body, {
            childList: true,
            subtree: true
        });

        // Initial check in case button already present
        setTimeout(tryClickContinue, 1000);
    });
})();