河北干部网络培训视频自动学习
说明
河北干部网络培训视频,学习一段时间会提醒休息(其实看看你是不是挂机),学习完成后,还需要手动切换下一课。
于是有了这个脚本,可以自动从第一课,学习到最后一刻。
安装油猴脚本
自己百度
导入脚本
// ==UserScript==
// home.php?mod=space&uid=170990 河北干部网络培训
// home.php?mod=space&uid=467642 http://tampermonkey.net/
// home.php?mod=space&uid=1248337 0.1
// @description try to take over the world!
// home.php?mod=space&uid=686208 You
// home.php?mod=space&uid=195849 http://www.hebgb.gov.cn/portal/study_play.do?id=*
// home.php?mod=space&uid=593100 https://www.google.com/s2/favicons?domain=hebgb.gov.cn
// home.php?mod=space&uid=609072 none
// ==/UserScript==
(function() {
'use strict';
function video_ended() {
//alert("The audio has ended");
if($('ul.first_list li:last').text() == $('ul.first_list li.current').text()){
setTimeout(function(){
let todos = opener.$('#module_0 input');
if(todos.length > 0){
opener.location.reload();
setTimeout(function(){
opener.$('#module_0 input').click();
},3000);
}
},5000);
}
else{
setTimeout(function(){
var aud = document.getElementById("course_player");
aud.addEventListener("ended", video_ended);
},3000);
}
}
setTimeout(function(){
// debugger;
$(".continue .user_choise").click()
var aud = document.getElementById("course_player");
aud.addEventListener("ended", video_ended);
},3000);
// Your code here...
})();