解决中铁微课堂视频学习中每五分钟暂停一次问题,插件可以自动点击继续。
// ==UserScript==
// @name 中铁微课堂刷课时
// @namespace http://tampermonkey.net/
// @version 0.2.1
// @description 解决中铁微课堂视频学习中每五分钟暂停一次问题,插件可以自动点击继续。
// @author Lionel
// @match http://aqpx.crec.cn/student/study*
// @license GPL License
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
var bt = $(".layui-layer-btn0");
if(bt.length > 0){
bt[0].click();
}
},5000);
// Your code here...
})();