// ==UserScript== // @name 时代光华课程自动学习 // @namespace https://github.com/zhengchuan // @version 0.3 // @description 时代光华课程自动学习,每10分钟自动刷新页面(延迟30秒,预留网站计算时延),课程完成后自动点击下一步 // @author zhengchuan // @match https://v4.21tb.com/els/html/courseStudyItem/courseStudyItem.learn.do* // @icon https://www.google.com/s2/favicons?sz=64&domain=21tb.com // @require https://code.jquery.com/jquery-2.1.4.min.js // @grant none // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/462667/%E6%97%B6%E4%BB%A3%E5%85%89%E5%8D%8E%E8%AF%BE%E7%A8%8B%E8%87%AA%E5%8A%A8%E5%AD%A6%E4%B9%A0.user.js // @updateURL https://update.greasyfork.icu/scripts/462667/%E6%97%B6%E4%BB%A3%E5%85%89%E5%8D%8E%E8%AF%BE%E7%A8%8B%E8%87%AA%E5%8A%A8%E5%AD%A6%E4%B9%A0.meta.js // ==/UserScript== (function() { 'use strict'; // 间隔次数计数 let count = 0; // 定时任务间隔 let offset = 10000; // 进入页面先执行一次, setInterval(function(){ auto(); },offset); // 自动操作 function auto(){ // 下一步按钮可见时自动点击下一步 let nextBtn = $("#goNextStep"); if(nextBtn.is(":visible")){ $("#goNextStep").click(); return; } // 630秒自动刷新页面 count++; if(count*offset/1000 > 630){ location.reload(); } } })();