超星网课考试专用版脚本使用教程 您所在的位置:网站首页 网课代码怎么使用 超星网课考试专用版脚本使用教程

超星网课考试专用版脚本使用教程

2024-05-26 00:37| 来源: 网络整理| 查看: 265

超星网课考试专用版脚本使用教程

本文最后更新于:2022年7月9日 下午

超星网课考试专用版脚本使用教程一.准备工作电脑一台电脑内装有Edge浏览器脚本管理器Tampermonkey导入我的脚本打开超星进入考试即可全自动答题二.步骤首先打开电脑,连上网络,打开Edge浏览器安装Tampermonkey脚本管理器选择添加脚本复制粘贴下方的脚本代码并保存登录你的超星账号进去考试,你会发现它全自动答题了三.工具导航Tampermonkey脚本管理器安装网址 点我进入

如图

脚本代码

// ==UserScript== // @name 超星网课助手(考试专版)(改) // @namespace coder_tq // @version 3.3.10 // @description 自动搜索尔雅MOOC考试答案,支持自动答题、自动切换题目、隐藏答案搜索提示框等,解除各类功能限制,开放自定义参数 // @author coder_tq // @match *://*.chaoxing.com/exam/test/reVersionTestStartNew* // @match *://*.edu.cn/exam/test/reVersionTestStartNew* // @match *://*.nbdlib.cn/exam/test/reVersionTestStartNew* // @match *://*.hnsyu.net/exam/test/reVersionTestStartNew* // @connect cx.icodef.com // @run-at document-end // @grant unsafeWindow // @grant GM_xmlhttpRequest // @grant GM_setClipboard // @grant GM_setValue // @grant GM_getValue // @license MIT // ==/UserScript== // 设置修改后,需要刷新或重新打开网课页面才会生效 var setting = { // 8E3 == 8000,科学记数法,表示毫秒数 time: 5E3 // 默认响应速度为8秒,不建议小于5秒 ,token: '' // token可以增加并发次数,用来打码,采集题库奖励 // 1代表开启,0代表关闭 ,none: 0 // 未找到答案或无匹配答案时执行默认操作,默认关闭 ,jump: 1 // 答题完成后自动切换,默认开启 ,copy: 0 // 自动复制答案到剪贴板,也可以通过手动点击按钮或答案进行复制,默认关闭 // 非自动化操作 ,hide: 0 // 不加载答案搜索提示框,键盘↑和↓可以临时移除和加载,默认关闭 ,scale: 0 // 富文本编辑器高度自动拉伸,用于文本类题目,答题框根据内容自动调整大小,默认关闭 }, _self = unsafeWindow, $ = _self.jQuery, UE = _self.UE; setting.notice = '公告栏'; GM_xmlhttpRequest({ method: 'GET', url: 'http://cx.icodef.com/update?s=wyn3', timeout: setting.time, onload: function (xhr) { if (xhr.status == 200) { var obj = $.parseJSON(xhr.responseText) || {}; setting.notice = obj.injection; document.querySelector('#cx-notice').innerHTML = setting.notice; } }, ontimeout: function () { setting.loop && setting.div.children('div:eq(0)').html(setting.over + '服务器超时,正在重试...'); } }); String.prototype.toCDB = function() { return this.replace(/\s/g, '').replace(/[\uff01-\uff5e]/g, function(str) { return String.fromCharCode(str.charCodeAt(0) - 65248); }).replace(/[“”]/g, '"').replace(/[‘’]/g, "'").replace(/。/g, '.'); }; // setting.time += Math.ceil(setting.time * Math.random()) - setting.time / 2; setting.TiMu = [ filterImg('.Cy_TItle .clearfix').replace(/\s*(\d+\.\d+分)$/, ''), $('[name^=type]:not([id])').val() || '-1', $('.cur a').text().trim() || '无', $('li .clearfix').map(function() { return filterImg(this); }) ]; var maximize=$( '◻' ).appendTo('body').click(function(){ $(setting.div).css("display","block"); GM_setValue("minimize","0"); $(maximize).css("display","none"); }); setting.div = $( '' + '' + '正在搜索答案...'+ '一' + '' + setting.notice + '' + '暂停答题' + '点击停止本次切换' + '重新查询' + '复制答案' + '答题详情' + '' + '' + '' + '' + '' + ($('#randomOptions').val() == 'false' ? '' : '本次考试的选项为乱序 脚本会选择正确的选项') + '' + '' + '' + '题目(点击可复制)' + '答案(点击可复制)' + '' + '' + '' + '' + '已关闭 本次自动切换' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' ).appendTo('body').on('click', 'button, td', function() { var num = setting.$btn.index(this); if (num == -1) { GM_setClipboard($(this).text()); } else if (num === 0) { if (setting.loop) { clearInterval(setting.loop); delete setting.loop; num = ['已暂停搜索', '继续答题']; } else { setting.loop = setInterval(findTiMu, setting.time); num = ['正在搜索答案...', '暂停答题']; } setting.$div.html(function() { return $(this).data('html') || num[0]; }).removeData('html'); $(this).html(num[1]); } else if (num == 1) { setting.jump = 0; setting.$div.html(function() { return arguments[1].replace('即将切换下一题', '未开启自动切换'); }); setting.div.find('tfoot').add(this).toggle(); } else if (num == 2) { location.reload(); } else if (num == 3) { GM_setClipboard(setting.div.find('td:last').text()); } else if (num == 4) { ($('.leftCard .saveYl')[0] || $()).click(); } else if (num == 5) { setting.tk_num++; GM_setValue('tk_num_1',setting.tk_num); setting.tk_num = GM_getValue('tk_num_1'); console.log(setting.tk_num); parent.location.reload(); } }).on('click','minimize', function() { $(this).parent().parent().css("display","none"); GM_setValue("minimize","1"); $(maximize).css("display","block"); }).detach(setting.hide ? '*' : 'html'); if(GM_getValue("minimize")=="1"){ $(setting.div).css("display","none"); $(maximize).css("display","block"); } setting.$btn = setting.div.children('button'); setting.$div = setting.div.children('div:eq(0)'); $(document).keydown(function(event) { if (event.keyCode == 38) { setting.div.detach(); } else if (event.keyCode == 40) { setting.div.appendTo('body'); } }); if (setting.scale) _self.UEDITOR_CONFIG.scaleEnabled = false; $.each(UE.instants, function() { var key = this.key; this.ready(function() { this.destroy(); UE.getEditor(key); }); }); setting.loop = setInterval(findTiMu, setting.time); function findTiMu() { GM_xmlhttpRequest({ method: 'POST', url: 'http://cx.icodef.com/wyn-nb?v=4', headers: { 'Content-type': 'application/x-www-form-urlencoded', 'Authorization': setting.token, }, data: 'question=' + encodeURIComponent(setting.TiMu[0]) + '&type=' + setting.TiMu[1] + '&id=' + $('#paperId').val(), timeout: setting.time, onload: function(xhr) { if (!setting.loop) { } else if (xhr.status == 200) { var obj = $.parseJSON(xhr.responseText) || {}; obj.answer = obj.data; if (obj.code) { var answer = String(obj.answer).replace(/&/g, '&').replace(/ 0 && $input.each(function(index) { if (this.value == 'true') { data.join().match(/(^|,)(正确|是|对|√|T|ri)(,|$)/) && this.click(); } else if (this.value == 'false') { data.join().match(/(^|,)(错误|否|错|×|F|wr)(,|$)/) && this.click(); } else { index = setting.TiMu[3][index].toCDB() || new Date().toString(); index = $.inArray(index, data) + 1 || (setting.TiMu[1] == '1' && str.indexOf(index) + 1); Boolean(index) == this.checked || this.click(); } }).each(function() { if (!/^A?B?C?D?E?F?G?$/.test(opt)) return false; Boolean(opt.match(this.value)) == this.checked || this.click(); }); if (setting.TiMu[1].match(/^[013]$/)) { tip = $input.is(':checked') || setting.none && (($input[Math.floor(Math.random() * $input.length)] || $()).click(), ' '); } else if (setting.TiMu[1].match(/^(2|[4-9]|1[08])$/)) { data = String(obj.answer).split(/#|\x01|\|/); tip = $('.Cy_ulTk textarea').each(function(index) { index = (obj.code > 0 && data[index]) || ''; UE.getEditor(this.name).setContent(index.trim()); }).length; tip = (obj.code > 0 && data.length == tip) || setting.none && ' '; setting.len = str.length * setting.time / 10; } if (tip == ' ') { tip = '已执行默认操作'; } else if (tip) { tip = '自动答题已完成'; } else if (tip === undefined) { tip = '该题型不支持自动答题'; } else { tip = '未找到有效答案'; } if (btn) { tip += setting.jump ? ',即将切换下一题' : ',未开启自动切换'; setInterval(function() { if (!setting.jump) return; var mouse = document.createEvent('MouseEvents'), arr = [btn.left + Math.ceil(Math.random() * 80), btn.top + Math.ceil(Math.random() * 26)]; mouse.initMouseEvent('click', true, true, document.defaultView, 0, 0, 0, arr[0], arr[1], false, false, false, false, 0, null); _self.event = $.extend(true, {}, mouse); delete _self.event.isTrusted; _self.getTheNextQuestion(1); }, setting.len || Math.ceil(setting.time * Math.random()) * 2); } else { setting.$btn.eq(1).hide(); tip = '答题已完成,请自行查看答题详情'; } setting.$div.data('html', tip).siblings('button:eq(0)').hide().click(); } function filterImg(dom) { return $(dom).clone().find('img[src]').replaceWith(function() { return $('

').text(''); }).end().find('iframe[src]').replaceWith(function() { return $('

').text(''); }).end().text().trim(); }

导入脚本

根据图中步骤来即可

打开超星,登录,进去考试即可

(完!)

教程 > 脚本 #福利 #超星 #教程 #脚本超星网课考试专用版脚本使用教程https://jinbilianshao.github.io/2021/11/20/超星网课考试专用版脚本使用教程/作者连思鑫发布于2021年11月20日许可协议 C盘清理脚本使用工具及教程 上一篇《深度学习入门》学习笔记(二) 下一篇


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有