🥇🥇奥鹏模拟鼠标自动点击"开始学习"或者"继续学习"按钮,彻底解放双手!轻松刷课

Click the continue button automatically

// ==UserScript==
// @name        🥇🥇奥鹏模拟鼠标自动点击"开始学习"或者"继续学习"按钮,彻底解放双手!轻松刷课
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Click the continue button automatically
// @author       牵马过河
// @match        https://learn.open.com.cn/*
// @grant        none
// @license      MIT
// ==/UserScript==
(function() {
    'use strict';

    // 在页面加载完成10秒后自动点击"开始学习"或者"继续学习"按钮
    setTimeout(function() {
        var continueButton = document.querySelector('a.continue');
        if (continueButton) {
            window.location.href = continueButton.href;
        }
    }, 30000);  // 设置延迟为30秒
})();