首页 > 其他 > 详细

优学院自动刷视频自动答题软件分享

时间:2021-05-14 09:37:11      阅读:74      评论:0      收藏:0      [点我收藏+]

一、软件介绍:

      最新版优学院自动静音播放每页视频、自动作答、修改播放速率。

二、主要功能:

  • 自动播放视频
  • 多倍速播放
  • 缩小不暂停
  • 自动答题
  • 自动下一集视频
  • 模拟鼠标点击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;
        }

 

优学院自动刷视频自动答题软件分享

原文:https://www.cnblogs.com/wukong2020/p/14766810.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!