本帖最后由 evlon 于 2022-12-7 10:26 编辑
说明
河北干部网络培训视频,学习一段时间会提醒休息(其实看看你是不是挂机),学习完成后,还需要手动切换下一课。
于是有了这个脚本,可以自动从第一课,学习到最后一刻。
按照油猴脚本
略过。
导入脚本
// ==UserScript==
// @name 河北干部网络培训
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @AuThor You
// @match http://www.hebgb.gov.cn/portal/study_play.do?id=*
// @Icon https://www.google.com/s2/favicons?domain=hebgb.gov.cn
// @grant 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...
})();
注意代码里面,这部分会被转义, 用图片里面的部分。
|