e会学刷课刷视频刷作业软件分享
Posted wukong2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e会学刷课刷视频刷作业软件分享相关的知识,希望对你有一定的参考价值。
一、软件介绍:
e会学刷课刷视频刷作业软件可以轻松自动刷视频、刷作业、答题。
二、软件功能:
1、自动多倍速刷视频
2、刷作业、答题
3、自动播放下一个视频
软件下载:https://wukongstudio.lanzoui.com/b01ibv5gd
e会学刷课运行界面图:
三、软件实现原理:
主要通过浏览器+油猴脚本管理器的形式来实现。油猴脚本必要的前端知识:html/CSS/JS 等;本脚本主要是通过油猴脚本+浏览器的方式去实现e会学自动刷视频答题。
四、软件主要代码:
(function() { \'use strict\'; var i var href = location.href if (href.indexOf(\'cw_nodeId\') > -1) { setTimeout(function() { var video = document.getElementsByTagName("video")[0] console.log(\'找到视频组件,开始静音并自动播放...\', video) // 设置静音并播放 video.muted = true // 设置倍速播放 支持以下速率: [2, 1.5, 1.2, 0.5] ;默认开启 video.playbackRate = 2 video.play() var params = new UrlSearch() // 课程ID var courseId = params.courseId const courseArr = params.cw_nodeId.split(\'_\') // 下一个播放的视频的key var nextKey = \'\' if (courseArr.length == 2) { nextKey = `kcjs_${Number(courseArr[1]) + 1}` } else if (courseArr.length == 3) { nextKey = `kcjs_${courseArr[1]}_${Number(courseArr[2]) + 1}` } const nextUrl = `https://${window.location.host}${window.location.pathname}?teachPlanId=${params.teachPlanId}&periodId=${params.periodId}&courseId=${courseId}&cw_nodeId=${nextKey}&category=${params.category}` console.log(params, \'currentId:\', params.cw_nodeId, \'nextKey:\', nextKey, \'nextUrl:\', nextUrl) // 视频播放结束,自动下一条视频 video.addEventListener("ended",function(){ location.replace(nextUrl); }) }, 5000) // 打印播放进度 getvideoprogress(); } })();
以上是关于e会学刷课刷视频刷作业软件分享的主要内容,如果未能解决你的问题,请参考以下文章