// ==UserScript== // @name 安徽专业技术人员继续教育在线-100倍速度刷课 // @namespace https://www.tuziang.com/ // @version 0.1 // @description 100倍的速度刷课,也就是500分钟的课程5分钟就学完了 // @author github.com/rockxsj // @match *://*.zjzx.ah.cn/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; function isAlert(){ return false } function changeClock() { var d = new Date((++time) * 1000); var d2 = new Date((++totalTime) * 1000); $("#nowTime").html(d.getUTCHours() + ":" + d.getMinutes() + ":" + d.getSeconds()) ; $("#totalTime").html(d2.getUTCHours() + ":" + d2.getMinutes() + ":" + d2.getSeconds()) ; } clockTimer = window.setInterval(changeClock, 10); saveTimer = window.setInterval(learningSave, 1200); })();