// ==UserScript== // @name 重庆继续教育选修小节自动播放 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author moxiaoying // @match https://rcpx.21tb.com/els/html/courseStudyItem/courseStudyItem.learn.do* // @grant none // @downloadURL none // ==/UserScript== (function() { setInterval(function(){ var min_time = parseInt($('#minStudyTime').text()); var studied_time = parseInt($('#studiedTime').text()); if(min_time-studied_time <=1){ window.location.reload(); } console.log(studied_time); },1000*60); })();