U校园自动刷课插件脚本
程序员文章站
2022-01-13 10:58:58
打包好的脚本+浏览器,打开即用,无需配置下载地址:https://afeixz.lanzous.com/b01hihtxg一、软件介绍主要由浏览器+插件的形式实现辅助看课完全模拟人工操作,自动答题,刷时长适用于U校园 welearn随行课堂二、主要功能进入课程后自动寻找未完成的任务点自动答题自动查找答案,可设置时长等三、注意事项不自动切换下一题的话按F5刷新页面即可,重新加载四、效果图五、核心代码function initView() {....
打包好的脚本+浏览器,打开即用,无需配置
下载地址:https://afeixz.lanzous.com/b01hihtxg
一、软件介绍
主要由浏览器+插件的形式实现辅助看课
完全模拟人工操作,自动答题,刷时长
适用于U校园 welearn随行课堂
二、主要功能
进入课程后自动寻找未完成的任务点自动答题
自动查找答案,可设置时长等
三、注意事项
不自动切换下一题的话按F5刷新页面即可,重新加载
四、效果图
五、核心代码
function initView() {
view.top = $(
'<div id="box" style="border-radius: 1em;position: fixed;border: 1px double rgb(0,0,0); width: 300px; top: 30px; left: 1%; z-index: 999999; font-size: 15px; background-color: rgb(255,255,255); color: #000000;">' +
//'<div style="height: 1px;"><button name="show" style="float:right;border-radius:0 0em 0 0;overflow:hidden;border: 1px dashed rgb(0,0,0);background-color: rgb(0,0,0);width:4px;height: 6px;margin-top: 5px;margin-right: 10px;">隐藏</button></div>'+
'<div><button name="show" style="float:right;border-radius:0 1em 0 0;overflow:hidden;border: 0px double rgb(0,0,0);background-color: rgb(255,255,255);">隐藏</button></div>' +
'<div style="height: 25px; margin-top: 10px; text-align: center; font-size: x-large;">Uer Help</div>' +
'<div style="" id="div_main">' +
'<div style="margin: 0 5px; font-size: 15px;" id="info"></div>' +
'<hr>' +
'<div id="answerContent" style="margin: 10px; color: orange; font-size: medium; overflow-y: auto; max-height: 400px"></div>' +
'<hr>' +
'<div style="margin-left: 10px;margin-top: 5px;margin-bottom: 5px;text-align: left; color: rgb(114,188,114);">积分: <input οnfοcus="this.blur()" style="border:none;width: 55px;color: rgb(114,188,114);" id="score" name="score">' +
'<button id="showscore" name="showscore" style="float:right;margin-right: 10px;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">刷新</button></div>' +
'<hr>' +
'<div><button name="showb" style="float:right;border-radius:1em;overflow:hidden;border: 0px double rgb(0,0,0);background-color: rgb(255,255,255);">隐藏</button></div>' +
'<form style="margin: 0 5px;">' +
'<div style="" id="div_foot">' +
'<div style="color: red;margin-left: 70px;">参数修改后自动保存</div>' +
'<div>' +
'<label style="margin-left: 60px;float:center;"fo7="utoken">key(自动生成刷新即可):   </label>' +
'<input disabled="true" style="width: 70%;margin-left: 40px;margin-top: 5px;" id="utoken" name="utoken" placeholder="自动生成刷新即可">' +
'</div>' +
'<div>' +
'<label style="margin-left: 50px;float:left;margin-top: 5px;" for="timeout">答题延迟:   </label>' +
'<input id="timeout" name="timeout" type="number" min="500" style="margin-top: 5px;width: 55px; text-align: center;">' +
'<label for="timeout" style="margin-right: 15px;"> 毫秒</label>' +
'<div style="margin-top: 5px;overflow-y: auto;">' +
//<button name="dtbutton" style="margin-right: 10px;float:right;border-radius:0em;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">关闭普通自动答题</button>' +
'<button name="cz" style="margin-left: 20px;float:left;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">充值</button>' +
'<button name="dtbutton" style="margin-left: 10px;float:left;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">关闭普通自动答题</button>' +
'<button id="cleanlog" name="cleanlog" style="margin-left: 10px;float:left;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">清空日志</button>'+
'<button id="copykey" name="copykey" style="margin-top: 5px;margin-left: 20px;float:left;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">复制KEY</button>' +
'<button id="changekey" name="changekey" style="margin-top: 5px;margin-left: 20px;float:left;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">修改KEY</button>' +
'<button name="jsindex" style="margin-top: 5px;margin-left: 20px;float:left;border-radius:0em;overflow:hidden;border: 1px double rgb(0,0,0);background-color: rgb(255,255,255);">脚本主页</button>' +
'</div>' +
'</form><br>' +
本文地址:https://blog.csdn.net/m0_49296092/article/details/107885299
推荐阅读