您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
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秒 })();