一、软件介绍:
最新版优学院自动静音播放每页视频、自动作答、修改播放速率。
二、主要功能:
- 自动播放视频
- 多倍速播放
- 缩小不暂停
- 自动答题
- 自动下一集视频
- 模拟鼠标点击100%安全
软件下载:https://wukongstudio.lanzoui.com/b01ib9trg
软件运行界面截图:
三、主要原理:
主要是通过浏览器安装用户脚本管理器Tampermonkey,再添加优学院脚本来实现自动刷视频,答题。
四、主要代码:
function Video(slept = false) { if (!EnableAutoPlay) { return; } if (autoAnswering) { setTimeout(function () { Video(true); }, '1000'); return; } if (!slept) { setTimeout(function () { Video(true); }, '3000'); return; } var videos = $('mediaelementwrapper video:first-child'); var videos_status = $('.video-bottom span:first-child'); if (videos.length === 0) { GotoNextPage(); return; } var v_s = []; if (videos.length === videos_status.length) { $(videos).each(function (index, value) { let state = $(videos_status[index]).attr('data-bind'); if (state === 'text: $root.i18nMessageText().finished') { v_s.push({ 'ele': value, 'status': true, 'seek': 0 }); } else if (state === 'text: $root.i18nMessageText().viewed' || state === 'text: $root.i18nMessageText().unviewed') { v_s.push({ 'ele': value, 'status': false, 'seek': 0 }); } else { v_s.push({ 'ele': value, 'status': null, 'seek': 0 }); } }) } else { GotoNextPage(); return; }