【福利】超星全自动刷网课刷题脚本开源【22.4.23更新】

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

超星全自动刷网课刷题脚本开源

1.教程

  1. 使用电脑自带的Edge浏览器

  2. 下载tampermonkey浏览器脚本管理工具。下载地址点我

  3. 安装tampermonkey。这是直接安装在你Edge浏览器上的,傻瓜式操作。

  4. 安装完成后浏览器的右上角会出现一个图标,如下图
    upload successful

  5. 用鼠标左键点它,选择添加新脚本,然后把我下面写的代码复制粘贴进去(记得保存哦!),打开超星登录,你就会发现它变成全自动了。
    upload successful

  6. 如果你懒得复制代码,就点我封装好的js库去安装,下面我会放入网址。【更新内容】

  7. 脚本安装网址点我安装  【更新内容】

2.脚本代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
// ==UserScript==
// @name 超星尔雅MOOC学习通章节挂机助手【2022/3/19】【一亿题库】
// @version 8.0.13
// @namespace Bruce_hai
// @description 发现很多脚本并不能搜索选项,空闲时间开发同时搜索【标题】【选项】和【超星id】能够更加精准并迅速的找到答案[高准确率带选项查询,急速响应,任何问题及时联系群主更新]自动挂机看尔雅MOOC,支持视频、音频、文档、图书自动完成,章节测验自动答题提交,支持自动切换任务点、挂机阅读时长、自动登录等,解除各类功能限制,开放自定义参数
// @author Bruce_hai
// @match *://*.chaoxing.com/*
// @match *://*.edu.cn/*
// @match *://*.nbdlib.cn/*
// @match *://*.hnsyu.net/*
// @match *://*.dayi100.com/*
// @connect 134.175.72.16
// @connect 119.6.233.156
// @run-at document-end
// @grant unsafeWindow
// @grant GM_xmlhttpRequest
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_setClipboard
// @license MIT
// @require https://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @original-script https://greasyfork.org/scripts/369625
// @original-author wyn665817
// @original-script https://scriptcat.org/script-show-page/10/code
// @original-author coder_tq
// @original-license MIT
// ==/UserScript==
GM_setValue("video_url",0)
// 设置修改后,需要刷新或重新打开网课页面才会生效 设置了响应时间,更新再等等吧
var setting = {
// 5E3 == 5000,科学记数法,表示毫秒数
time: 5E3 // 默认响应速度为5秒,不建议小于5秒
, review: 0 // 复习模式,完整挂机视频(音频)时长,支持挂机任务点已完成的视频和音频,默认关闭
, queue: 1 // 队列模式,开启后任务点逐一完成,关闭则单页面所有任务点同时进行,默认开启

// 1代表开启,0代表关闭
, video: 1 // 视频支持后台、切换窗口不暂停,支持多视频,默认开启
, work: 1 // 自动答题功能(章节测验),作业需要手动开启查询,高准确率,默认开启
, audio: 1 // 音频自动播放,与视频功能共享vol和rate参数,默认开启
, book: 1 // 图书阅读任务点,非课程阅读任务点,默认开启
, docs: 1 // 文档阅读任务点,PPT类任务点自动完成阅读任务,默认开启
// 本区域参数,上方为任务点功能,下方为独立功能
, jump: 1 // 自动切换任务点、章节、课程(需要配置course参数),默认开启
, read: '65' // 挂机课程阅读时间,单位是分钟,'65'代表挂机65分钟,请手动打开阅读页面,默认'65'分钟
, face: 1 // 解除面部识别(不支持二维码类面部采集),此功能仅为临时解除,默认开启
, total: 1 // 显示课程进度的统计数据,在学习进度页面的上方展示,默认开启

// 仅开启video(audio)时,修改此处才会生效
, line: '公网1' // 视频播放的默认资源线路,此功能适用于系统默认线路无资源,默认'公网1'
, http: '标清' // 视频播放的默认清晰度,无效参数则使用系统默认清晰度,默认'标清'
// 本区域参数,上方为video功能独享,下方为audio功能共享
, vol: '0' // 默认音量的百分数,设定范围:[0,100],'0'为静音,默认'0'
, rate: '0' // 视频播放默认倍率,参数范围0∪[0.0625,16],'0'为秒过,倍速功能已失效,先一倍速看着

// 仅开启work时,修改此处才会生效
// auto: 1 已放置面板,请在面板配置,默认为自动提交 // 答题完成后自动提交,默认开启
, none: 0 // 无匹配答案时执行默认操作,关闭后若题目无匹配答案则会暂时保存已作答的题目,默认开启
, scale: 0 // 富文本编辑器高度自动拉伸,用于文本类题目,答题框根据内容自动调整大小,默认关闭

// 仅开启jump时,修改此处才会生效
, course: 1 // 当前课程完成后自动切换课程,仅支持按照根目录课程顺序切换,默认开启
, lock: 1 // 跳过未开放(图标是锁)的章节,即闯关模式或定时发放的任务点,默认开启
,version :'8.0.13'
// 自动登录功能配置区
, school: '账号为手机号可以不修改此参数' // 学校/单位/机构码,要求完整有效可查询,例如'清华大学'
, username: '' // 学号/工号/借书证号(邮箱/手机号/账号),例如'2018010101',默认''
, password: '' // 密码,例如'123456',默认''

},
_self = unsafeWindow,
url = location.pathname,
top = _self,
//apihost = "http://134.175.72.16/xuexitong";// 下面的不能用用这个
apihost = "http://119.6.233.156:309/xuexitong";// 高防御服务器,打死我买20台。两个只能存在一个,如果用这个就取消最前面的//


var tmpSubmit = 1;
Object.defineProperty(setting, "auto", {
get: function () {
if (tmpSubmit >= 2) {
return tmpSubmit === 3;
}
return GM_getValue("autosubmit");
}, set: function (value) {
tmpSubmit = value + 2;
}
});

setting.notice = '公告栏';

if (url != '/studyApp/studying' && top != _self.top) document.domain = location.host.replace(/.+?\./, '');

try {
while (top != _self.top) {
top = top.parent.document ? top.parent : _self.top;
if (top.location.pathname == '/mycourse/studentstudy') break;
}
} catch (err) {
// console.log(err);
top = _self;
}

var $ = _self.jQuery || top.jQuery,
parent = _self == top ? self : _self.parent,
Ext = _self.Ext || parent.Ext || {},
UE = _self.UE,
vjs = _self.videojs;

$('.Header').find('a:contains(回到旧版)')[0] ? $('.Header').find('a:contains(回到旧版)')[0].click() : '';

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.normal = ''; // ':visible'
// setting.time += Math.ceil(setting.time * Math.random()) - setting.time / 2;
setting.job = [':not(*)'];

setting.video && setting.job.push('iframe[src*="/video/index.html"]');
setting.work && setting.job.push('iframe[src*="/work/index.html"]');
setting.audio && setting.job.push('iframe[src*="/audio/index.html"]');
setting.book && setting.job.push('iframe[src*="/innerbook/index.html"]');
setting.docs && setting.job.push('iframe[src*="/ppt/index.html"]', 'iframe[src*="/pdf/index.html"]');

setting.tip = !setting.queue || top != _self && jobSort($ || Ext.query);

if (url == '/mycourse/studentstudy') {
_self.checkMobileBrowerLearn = $.noop;
var classId = location.search.match(/cla[zs]{2}id=(\d+)/i)[1] || 0,
courseId = _self.courseId || location.search.match(/courseId=(\d+)/i)[1] || 0;
setting.lock || $('#coursetree').on('click', '[onclick*=void], [href*=void]', function () {
_self.getTeacherAjax(courseId, classId, $(this).parent().attr('id').slice(3));
});
} else if (url == '/ananas/modules/video/index.html' && setting.video) {
if (setting.review) _self.greenligth = Ext.emptyFn;
checkPlayer(_self.supportH5Video());
click_bo();
} else if (url == '/work/doHomeWorkNew' || url == '/api/work' || url == '/work/addStudentWorkNewWeb' || url == '/mooc2/work/dowork') {
console.log("进入答题界面!");
if (!UE) {
var len = ($ || Ext.query || Array)('font:contains(未登录)', document).length;
setTimeout(len == 1 ? top.location.reload : parent.greenligth, setting.time);
} else if (setting.work) {
setTimeout(relieveLimit, 0);
beforeFind();
}
} else if (url == '/ananas/modules/audio/index.html' && setting.audio) {
if (setting.review) _self.greenligth = Ext.emptyFn;
// _self.videojs = hookAudio;
_self.alert = console.log;
let OriginPlayer = _self.videojs.getComponent('Player')
let woailiyinhe = function (tag, options, ready) {
var config = options;
config.plugins.studyControl.enableSwitchWindow = 1;
config.plugins.seekBarControl.enableFastForward = 1;
if (!setting.queue) delete config.plugins.studyControl;
let player = OriginPlayer.call(this, tag, options, ready)
var
a = '<a href="https://d0.ananas.chaoxing.com/download/' + _self.config('objectid') + '" target="_blank">',
img = '<img src="https://d0.ananas.chaoxing.com/download/e363b256c0e9bc5bd8266bf99dd6d6bb" style="margin: 6px 0 0 6px;">';
player.volume(Math.round(setting.vol) / 100 || 0);
player.playbackRate(setting.rate > 16 || setting.rate < 0.0625 ? 1 : setting.rate);
Ext.get(player.controlBar.addChild('Button').el_).setHTML(a + img + '</a>').dom.title = '下载音频';
player.on('loadeddata', function () {
setting.tip && this.play().catch(Ext.emptyFn);
});
player.one('firstplay', function () {
setting.rate === '0' && config.plugins.seekBarControl.sendLog(this.children_[0], 'ended', Math.floor(this.cache_.duration));
});
player.on('ended', function () {
Ext.fly(frameElement).parent().addCls('ans-job-finished');
});
return player;
}
woailiyinhe.prototype = Object.create(OriginPlayer.prototype)
_self.videojs.getComponent('Component').components_['Player'] = woailiyinhe
} else if (url == '/ananas/modules/innerbook/index.html' && setting.book && setting.tip) {
setTimeout(function () {
_self.setting ? _self.top.onchangepage(_self.getFrameAttr('end')) : _self.greenligth();
}, setting.time);
} else if (url.match(/^\/ananas\/modules\/(ppt|pdf)\/index\.html$/) && setting.docs && setting.tip) {
setTimeout(function () {
_self.setting ? _self.finishJob() : _self.greenligth();
}, setting.time);
frameElement.setAttribute('download', 1);
} else if (url == '/knowledge/cards') {
$ && checkToNext();
} else if (url.match(/^\/(course|zt)\/\d+\.html$/)) {
setTimeout(function () {
+setting.read && _self.sendLogs && $('.course_section:eq(0) .chapterText').click();
}, setting.time);
} else if (url == '/ztnodedetailcontroller/visitnodedetail') {
setting.read *= 60 / $('.course_section').length;
setting.read && _self.sendLogs && autoRead();
} else if (url == '/mycourse/studentcourse') {
var gv = location.search.match(/d=\d+&/g);
setting.total && $('<a>', {
href: '/moocAnalysis/chapterStatisticByUser?classI' + gv[1] + 'courseI' + gv[0] + 'userId=' + _self.getCookie('_uid') + '&ut=s',
target: '_blank',
title: '点击查看章节统计',
style: 'margin: 0 25px;color: #87CEFA;',
html: '本课程共' + $('.icon').length + '节,剩余' + $('em:not(.openlock)').length + '节未完成'
}).appendTo('.charter').parent().width('auto');
} else if (url.match(/^\/visit\/(courses|interaction)$/)) {
setting.face && $('.zmodel').on('click', '[onclick^=openFaceTip]', DisplayURL);
} else if (location.host.match(/^passport2/)) {
setting.username && getSchoolId();
} else if (location.hostname == 'i.mooc.chaoxing.com' || location.hostname == 'i.chaoxing.com') {
_self.layui.use('layer', function () {
this.layer.open({ content: '拖动进度条、倍速播放、秒过会导致不良记录!题库在慢慢补充,搜不到的题目系统会尽快进行自动补充', title: '超星网课助手提示', btn: '我已知悉', offset: 't', closeBtn: 0 });
});
} else if (url == '/widget/pcvote/goStudentVotePage') {
$(':checked').click();
$('.StudentTimu').each(function (index) {
var ans = _self.questionlist[index].answer;
$(':radio, :checkbox', this).each(function (num) {
ans[num].isanswer && this.click();
});
$(':text', this).val(function (num) {
return $(ans[num].content).text().trim();
});
});
} else if (url == '/work/selectWorkQuestionYiPiYue') {
submitAnswer(getIframe().parent(), $.extend(true, [], parent._data));
}

function getIframe(tip, win, job) {
if (!$) return Ext.get(frameElement || []).parent().child('.ans-job-icon') || Ext.get([]);
do {
win = win ? win.parent : _self;
job = $(win.frameElement).prevAll('.ans-job-icon');
} while (!job.length && win.parent.frameElement);
return tip ? win : job;
}

function jobSort($) {
var fn = $.fn ? [getIframe(1), 'length'] : [self, 'dom'],
sel = setting.job.join(', :not(.ans-job-finished) > .ans-job-icon' + setting.normal + ' ~ ');
if ($(sel, fn[0].parent.document)[0] == fn[0].frameElement) return true;
if (!getIframe()[fn[1]] || getIframe().parent().is('.ans-job-finished')) return null;
setInterval(function () {
$(sel, fn[0].parent.document)[0] == fn[0].frameElement && fn[0].location.reload();
}, setting.time);
}

function click_bo(){
console.log("没有写过这么垃圾的玩意......................................");
console.log("疫情期间当志愿者没时间修复倍速,一倍速慢慢看");
var interval=setInterval(function () {
if (document.querySelector("#video > button")){
var video=document.getElementById("video_html5_api");
var video_url=video.src;
var suspend=document.querySelector("#video > div.vjs-control-bar > button.vjs-play-control.vjs-control.vjs-button.vjs-paused");
if (getIframe().parent().is('.ans-job-finished')){
console.log("播放完毕");
GM_setValue("video_url",0);
clearInterval(interval);
}else if (suspend &&suspend.textContent=="播放"&&video_url==GM_getValue("video_url")){
video.play();
}else if (document.querySelector("#video > button")&&GM_getValue("video_url")==0){
video.play();
GM_setValue("video_url",video_url);
}
if (document.querySelector('#video > div > div > button[title="静音"]')&&setting.vol=="0") {
video.muted="0";//不能点击,点击会有bug.......
}

}
}, Math.floor(Math.random() * 3000) + 500);
}
function checkPlayer(tip) {
//代码抄的李恒道的,正在学习.....地址https://scriptcat.org/script-show-page/10/code
_self.alert = console.log;
let OriginPlayer = _self.videojs.getComponent('Player')
let woailiyinhe = function (tag, options, ready) {
let config = options
if (!config) {
return options;
}
var line = Ext.Array.filter(Ext.Array.map(config.playlines, function (value, index) {
return value.label == setting.line && index;
}), function (value) {
return Ext.isNumber(value);
})[0] || 0,
http = Ext.Array.filter(config.sources, function (value) {
return value.label == setting.http;
})[0];
config.playlines.unshift(config.playlines[line]);
config.playlines.splice(line + 1, 1);
config.plugins.videoJsResolutionSwitcher.default = http ? http.res : 360;
config.plugins.studyControl.enableSwitchWindow = 1;
config.plugins.timelineObjects.url = '/richvideo/initdatawithviewer?';
config.plugins.seekBarControl.enableFastForward = 1;
config.playbackRates = [0.5, 1, 1.5, 2, 4, 8, 16];
if (!setting.queue) delete config.plugins.studyControl;
let player = OriginPlayer.call(this, tag, options, ready)
var
a = '<a href="https://d0.ananas.chaoxing.com/download/' + _self.config('objectid') + '" target="_blank">',
img = '<img src="https://d0.ananas.chaoxing.com/download/e363b256c0e9bc5bd8266bf99dd6d6bb" style="margin: 6px 0 0 6px;">';
player.playbackRate = function (t) { if (void 0 === t) return; this.tech_ && this.tech_.featuresPlaybackRate ? this.cache_.lastPlaybackRate || this.techGet_("playbackRate") : setting.rate; this.techCall_("setPlaybackRate", t) };
player.volume(Math.round(setting.vol) / 100 || 0);
Ext.get(player.controlBar.addChild('Button').el_).setHTML(a + img + '</a>').dom.title = '下载视频';
player.on('loadstart', function () {
setting.tip && this.play().catch(Ext.emptyFn);
this.playbackRate(setting.rate > 16 || setting.rate < 0.0625 ? 1 : setting.rate);
});
player.one(['loadedmetadata', 'firstplay'], function () {
setting.two = setting.rate === '0' && setting.two < 1;
setting.two && config.plugins.seekBarControl.sendLog(this.children_[0], 'ended', Math.floor(this.cache_.duration));
});
player.on('ended', function () {
Ext.fly(frameElement).parent().addCls('ans-job-finished');
});
return player;
}
woailiyinhe.prototype = Object.create(OriginPlayer.prototype)
_self.videojs.getComponent('Component').components_['Player'] = woailiyinhe
Ext.isSogou = Ext.isIos = Ext.isAndroid = false;
var data = Ext.decode(_self.config('data')) || {};
delete data.danmaku;
data.doublespeed = 1;
frameElement.setAttribute('data', Ext.encode(data));


//_self.videojs = hookVideo;
if (tip) return;
_self.supportH5Video = function () { return true; };
alert('此浏览器不支持html5播放器,请更换浏览器');
}

function hookVideo() {
}

function relieveLimit() {
console.log(1221);
if (setting.scale) _self.UEDITOR_CONFIG.scaleEnabled = false;
$.each(UE.instants, function () {
var key = this.key;
this.ready(function () {
this.destroy();
UE.getEditor(key);
});
});
}

function beforeFind() {
setting.regl = parent.greenligth || $.noop;
if ($.type(parent._data) == 'array') return setting.regl();
var maximize = $(
'<div style="border: 2px dashed rgb(0, 85, 68); position: fixed; top: 0; right: 0; z-index: 99999; background-color: rgba(184, 247, 255, 0.3); overflow-x: auto;display:none;">◻</div>'
).appendTo('body').click(function () {
$(setting.div).css("display", "block");
GM_setValue("minimize", "0");
$(maximize).css("display", "none");
});

setting.div = $(
'<div style="border: 2px dashed rgb(0, 85, 68); width: 330px; position: fixed; top: 0; right: 0; z-index: 99999; background-color: rgba(184, 247, 255, 0.3); overflow-x: auto;">' +
'<span style="font-size: medium;"></span>' +
'<div style="font-size: medium;width:70%;display: inline-block;">正在搜索答案...</div>' +
'<div style="width:30%;display: inline-block;padding-right: 10px;box-sizing: border-box;text-align: right;"><minimize style="width:20px;font-size:16px;line-height: 12px;font-weight: bold;cursor: context-menu;user-select:none;">一</minimize></div>' +
'<div id="cx-notice" style="border-top: 1px solid #000;border-bottom: 1px solid #000;margin: 4px 0px;overflow: hidden;">' + setting.notice + '</div>' +
'<button style="margin-right: 10px;">暂停答题</button>' +
'<button style="margin-right: 10px;">' + (setting.auto ? '取消本次自动提交' : '开启本次自动提交') + '</button>' +
'<button style="margin-right: 10px;">重新查询</button>' +
'<button>折叠面板</button><br>' +
'<input id="autosubmit" type="checkbox"' + (setting.auto ? ' checked' : '') + '>自动提交</input>' +
'<div style="max-height: 300px; overflow-y: auto;">' +
'<table border="1" style="font-size: 12px;">' +
'<thead>' +
'<tr>' +
'<th style="width: 25px; min-width: 25px;">题号</th>' +
'<th style="width: 60%; min-width: 130px;">题目(点击可复制)</th>' +
'<th style="min-width: 130px;">答案(点击可复制)</th>' +
'</tr>' +
'</thead>' +
'<tfoot style="display: none;">' +
'<tr>' +
'<th colspan="3">答案提示框 已折叠</th>' +
'</tr>' +
'</tfoot>' +
'<tbody>' +
'<tr>' +
'<td colspan="3" style="display: none;"></td>' +
'</tr>' +
'</tbody>' +
'</table>' +
'</div>' +
'</div>'
).appendTo('body').on('click', 'button, td, input', function () {
var len = $(this).prevAll('button').length;
if (this.nodeName == 'TD') {
$(this).prev().length && GM_setClipboard($(this).text());
} else if (!$(this).siblings().length) {
$(this).parent().text('正在搜索答案...');
setting.num++;
} else if (len === 0) {
if (setting.loop) {
clearInterval(setting.loop);
delete setting.loop;
len = ['已暂停搜索', '继续答题'];
} else {
setting.loop = setInterval(findAnswer, setting.time);
len = ['正在搜索答案...', '暂停答题'];
}
setting.div.children('div:eq(0)').html(function () {
return $(this).data('html') || len[0];
}).removeData('html');
$(this).html(len[1]);
} else if (len == 1) {
setting.auto = !setting.auto;
$(this).html(setting.auto ? '取消本次自动提交' : '开启本次自动提交');
} else if (len == 2) {
parent.location.reload();
} else if (len == 3) {
setting.div.find('tbody, tfoot').toggle();
} else if (this.id == "autosubmit") {
// 题目自动提交配置
console.log(this.checked);
GM_setValue("autosubmit", this.checked);
}
}).on('click', 'minimize', function () {
$(this).parent().parent().css("display", "none");
GM_setValue("minimize", "1");
$(maximize).css("display", "block");
}).find('table, td, th').css('border', '1px solid').end();

if (GM_getValue("minimize") == "1") {
$(setting.div).css("display", "none");
$(maximize).css("display", "block");
}

setting.lose = setting.num = 0;
setting.data = parent._data = [];
setting.over = '<button style="margin-right: 10px;">跳过此题</button>';
setting.curs = $('script:contains(courseName)', top.document).text().match(/courseName:\'(.+?)\'|$/)[1] || $('h1').text().trim() || '无';
setting.loop = setInterval(findAnswer, setting.time);
var tip = ({ undefined: '任务点排队中', null: '等待切换中' })[setting.tip];
if ($('.ZyTop').text().match(/待做/)){
}else{
tip && setting.div.children('div:eq(0)').data('html', tip).siblings('button:eq(0)').click();
}
GM_xmlhttpRequest({
method: 'GET',
url: apihost + '/cxtimu/notice',
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 + '服务器超时,正在重试.....可以自行替换服务器,在代码的72行左右');
}
});
}

function findAnswer() {
var html="";
html = $(".CeYan").html()||$("body").html();
if (setting.num >= $('.TiMu').length) {
var arr = setting.lose ? ['共有 <font color="red">' + setting.lose + '</font> 道题目待完善(已深色标注)', saveThis] : ['答题已完成', submitThis];
setting.div.children('div:eq(0)').data('html', arr[0]).siblings('button:eq(0)').hide().click();
return setTimeout(arr[1], setting.time);
}
var $TiMu = $('.TiMu').eq(setting.num),
question = filterImg($TiMu.find('.Zy_TItle:eq(0) .clearfix')).replace(/^【.*?】\s*/, '').replace(/\s*(\d+\.\d+分)$/, '').replace(/^\d+[\.、]/, ''),
type = $TiMu.find('input[name^=answertype]:eq(0)').val() || '-1';
console.log($TiMu);

if (question == "") {
question = filterImg($TiMu.find('.mark_name:eq(0) .colorDeep'));
}
console.log($TiMu.find('.mark_name:eq(0) .colorDeep'));
// 问题后追加取出的选项 20220211
var selectlis = $TiMu.find(".Zy_ulTop>li");
var selectstr = "";
if(selectlis.length>2){
selectlis.each(function(i,item){
//selectstr += " " + $(item).text().replace(/\s+/g,'');
var _self = $(item);
//filterImg( _self.find("a.after")).trim()
selectstr += _self.find("label.before").text().trim() + "、" + filterImg( _self.find("a.after")).trim()+"\n";
})
//console.log(selectstr);
}
//question += selectstr;
var options=selectstr.trim();
// end 问题后追加取出的选项
// 该问题的ansertype
var ansertype = $TiMu.find('input[name^=answertype]:eq(0)').attr('id').replace("answertype","")||0;
console.log(ansertype);
// end 该问题的ansertype
var course = $('script:contains(courseName)', top.document).text().match(/courseName:\'(.+?)\'|$/)[1] || $('h1').text().trim().replace(/(.*)课程评价/,'$1').trim() || '无';
GM_xmlhttpRequest({
method: 'POST',
url: apihost + '/temporary_sea',
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
data: 'question=' + encodeURIComponent(question)+'&options='+encodeURIComponent(options) + '&cx_id=' + ansertype+ '&html=' + encodeURIComponent($TiMu.html())+ '&url=' + encodeURIComponent(top.document.URL)+'&course='+encodeURIComponent(course)+'&version=8.0.13',
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) {
setting.div.children('div:eq(0)').text('正在搜索答案...');
var td = '<td style="border: 1px solid;',
answer = String(obj.answer).replace(/&/g, '&').replace(/<(?!img)/g, '<');
obj.answer = /^http/.test(answer) ? '<img src="' + obj.answer + '">' : obj.answer;
$(
'<tr>' +
td + ' text-align: center;">' + $TiMu.find('.Zy_TItle:eq(0) i').text().trim() + '</td>' +
td + '" title="点击可复制">' + (question.match('<img') ? question : question.replace(/&/g, '&').replace(/</g, '<'))+'<br>'+options+'<br></td>' +
td + '" title="点击可复制">' + (/^http/.test(answer) ? obj.answer : '') + answer + '</td>' +
'</tr>'
).appendTo(setting.div.find('tbody')).css('background-color', fillAnswer($TiMu.find('ul:eq(0)').find('li'), obj, type) ? '' : 'rgba(0, 150, 136, 0.6)');
setting.data[setting.num++] = {
code: obj.code > 0 ? 1 : 0,
question: question,
option: obj.answer,
type: Number(type)
};
} else {
setting.div.children('div:eq(0)').html(obj.answer || setting.over + '服务器繁忙,正在重试...');
}
setting.div.children('span').html(obj.msg || '');
} else if (xhr.status == 403) {
var html = xhr.responseText.indexOf('{') ? '请求过于频繁,请稍后再试' : $.parseJSON(xhr.responseText).data;
setting.div.children('div:eq(0)').data('html', html).siblings('button:eq(0)').click();
} else if (xhr.status == 500) {
setting.div.children('div:eq(0)').html('题库程序异常,请过一会再试');
} else if (xhr.status == 444) {
setting.div.children('div:eq(0)').html('IP异常,已被拉入服务器黑名单,请过几个小时再试');
} else {
setting.div.children('div:eq(0)').html('题库异常,可能被恶意攻击了...请等待恢复');
}
},
ontimeout: function () {
setting.loop && setting.div.children('div:eq(0)').html(setting.over + '服务器超时,正在重试...');
}
});
}

function fillAnswer($li, obj, type) {
var $input = $li.find(':radio, :checkbox'),
str = String(obj.answer).toCDB() || new Date().toString(),
data = str.split(/#|\x01|\|/),
opt = obj.opt || str,
state = setting.lose;
// $li.find(':radio:checked').prop('checked', false);
obj.code > 0 && $input.each(function (index) {
if (this.value == 'true') {
data.join().match(/(^|,)(正确|是|对|√|T|true|ri)(,|$)/) && this.click();
} else if (this.value == 'false') {
data.join().match(/(^|,)(错误|否|错|×|F|false|X|wr)(,|$)/) && this.click();
} else {
var tip = filterImg($li.eq(index).find('.after')).toCDB() || new Date().toString();
Boolean($.inArray(tip, data) + 1 || (type == '1' && str.indexOf(tip) + 1)) == 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 (type.match(/^[013]$/)) {
$input.is(':checked') || (setting.none ? ($input[Math.floor(Math.random() * $input.length)] || $()).click() : setting.lose++);
} else if (type.match(/^(2|[4-9]|1[08])$/)) {
data = String(obj.answer).split(/#|\x01|\|/);
str = $li.end().find('textarea').each(function (index) {
index = (obj.code > 0 && data[index]) || '';
if (obj.code > 0) {
UE.getEditor(this.name).setContent(index.trim());
}
}).length;
(obj.code > 0 && data.length == str) || setting.none || setting.lose++;
} else {
setting.none || setting.lose++;
}
return state == setting.lose;
}

function saveThis() {
if (!setting.auto) return setTimeout(saveThis, setting.time);
setting.div.children('button:lt(3)').hide().eq(1).click();
_self.alert = console.log;
$('#tempsave').click();
setting.regl();
}

function submitThis() {
if (!setting.auto) {
} else if (!$('.Btn_blue_1:visible').length) {
setting.div.children('button:lt(3)').hide().eq(1).click();
return setting.regl();
} else if ($('#confirmSubWin:visible').length) {
var btn = $('#tipContent + * > a').offset() || { top: 0, left: 0 },
mouse = document.createEvent('MouseEvents');
btn = [btn.left + Math.ceil(Math.random() * 46), btn.top + Math.ceil(Math.random() * 26)];
mouse.initMouseEvent('click', true, true, document.defaultView, 0, 0, 0, btn[0], btn[1], false, false, false, false, 0, null);
_self.event = $.extend(true, {}, mouse);
delete _self.event.isTrusted;
_self.form1submit();
} else {
$('.Btn_blue_1')[0].click();
}
setTimeout(submitThis, Math.ceil(setting.time * Math.random()) * 2);
}

function checkToNext() {
var $tip = $(setting.job.join(', '), document).prevAll('.ans-job-icon' + setting.normal);
setInterval(function () {
$tip.parent(':not(.ans-job-finished)').length || setting.jump && toNext();
}, setting.time);
}

function toNext() {
var $cur = $('#cur' + $('#chapterIdid').val()),
$tip = $('span.currents ~ span'),
sel = setting.review ? 'html' : '.blue';
console.log("tonext");
if (!$cur.has(sel).length && $tip.length) return $tip.eq(0).click();
$tip = $('.roundpointStudent, .roundpoint').parent();
$tip = $tip.slice($tip.index($cur) + 1).not(':has(' + sel + ')');
$tip.not(setting.lock ? ':has(.lock)' : 'html').find('span').eq(0).click();
$tip.length || setting.course && switchCourse();
}

function switchCourse() {
//$('#right').click()
//$('#right2').click()
var move_switch=false;
$('.orientationright').each(function(){
if ($(this).css('display')=='block'){
move_switch=true;
$(this).click();
console.log("点击按钮下一章");
}
})
if (move_switch==false){
GM_xmlhttpRequest({
method: 'GET',
url: '/visit/courses/study?isAjax=true&fileId=0&debug=',
headers: {
'Referer': location.origin + '/visit/courses',
'X-Requested-With': 'XMLHttpRequest'
},
onload: function (xhr) {
var list = $('h3 a[target]', xhr.responseText).map(function () {
return $(this).attr('href');
}),
index = list.map(function (index) {
return this.match(top.courseId) && index;
}).filter(function () {
return $.isNumeric(this);
})[0] + 1 || 0;
setting.course = list[index] ? goCourse(list[index]) : 0;
}
});
}
}

function goCourse(url) {
GM_xmlhttpRequest({
method: 'GET',
url: url,
onload: function (xhr) {
$.globalEval('location.href = "' + $('.articlename a[href]', xhr.responseText).attr('href') + '";');
}
});
}

function autoRead() {
$('html, body').animate({
scrollTop: $(document).height() - $(window).height()
}, Math.round(setting.read) * 1E3, function () {
$('.nodeItem.r i').click();
}).one('click', '#top', function (event) {
$(event.delegateTarget).stop();
});
}

function DisplayURL() {
_self.WAY.box.hide();
var $li = $(this).closest('li');
$.get('/visit/goToCourseByFace', {
courseId: $li.find('input[name=courseId]').val(),
clazzId: $li.find('input[name=classId]').val()
}, function (data) {
$li.find('[onclick^=openFaceTip]').removeAttr('onclick').attr({
target: '_blank',
href: $(data).filter('script:last').text().match(/n\("(.+?)"/)[1]
});
alert('本课程已临时解除面部识别');
}, 'html');
}

function getSchoolId() {
var school = /^1\d{10}$/.test(setting.username) ? '' : setting.school;
if (!isNaN(school)) return setTimeout(toLogin, setting.time, school);
if (school == '账号为手机号可以不修改此参数') return alert('请修改school参数');
$.getJSON('/org/searchUnis?filter=' + encodeURI(school) + '&product=44', function (data) {
if (!data.result) return alert('学校查询错误');
var msg = $.grep(data.froms, function (value) {
return value.name == school;
})[0];
msg ? setTimeout(toLogin, setting.time, msg.schoolid) : alert('学校名称不完整');
});
}

function toLogin(fid) {
GM_xmlhttpRequest({
method: 'GET',
url: '/api/login?name=' + setting.username + '&pwd=' + setting.password + '&schoolid=' + fid + '&verify=0',
onload: function (xhr) {
var obj = $.parseJSON(xhr.responseText) || {};
obj.result ? location.href = decodeURIComponent($('#ref, #refer_0x001').val()) : alert(obj.errorMsg || 'Error');
}
});
}

// 测验试题Dom
var html = "";
function submitAnswer($job, data) {
$job.removeClass('ans-job-finished');
html = $(".CeYan").html()||$("body").html();
data = data.length ? $(data) : $('.TiMu').map(function () {
var question = filterImg($('.Zy_TItle .clearfix', this));
return {
title: question.replace(/^【.*?】\s*/, ''),
type: ({ 单选题: 0, 多选题: 1, 填空题: 2, 判断题: 3 })[question.match(/^【(.*?)】|$/)[1]]||100
};
});
data = $.grep(data.map(function (index) {
var $TiMu = $('.TiMu').eq(index);
if (!($.isPlainObject(this) && $TiMu.find('.fr').length)) {
return false;
} else if (this.type == 2) {
var $ans = $TiMu.find('.Py_tk, .Py_answer').eq(0);
if (!$TiMu.find('.cuo').length && this.code) {
return false;
} else if (!$ans.find('.cuo').length) {
this.answer = $ans.find('.clearfix').map(function () {
return $(this).text().trim();
}).get().join('#') || '无';
} else if (this.code) {
this.code = -1;
} else {
return false;
}
} else if (this.type == 3) {
var ans = $TiMu.find('.font20:last').text();
if ($TiMu.find('.cuo').length) {
this.answer = ({ '√': '错误', '×': '正确' })[ans] || '无';
} else if (!this.code) {
this.answer = ({ '√': '正确', '×': '错误' })[ans] || '无';
} else {
return false;
}
} else {
var options="";
var text = $TiMu.find('.Py_answer > span:eq(0)').text();
if ($TiMu.find('.dui').length && this.code && !/^A?B?C?D?E?F?G?$/.test(this.answer)) {
return false;
} else if ($TiMu.find('.dui').length || text.match('正确答案')) {
text = text.match(/[A-G]/gi) || [];
$TiMu.find('.Zy_ulTop>li').each(function(){
options+=filterImg(this).trim()+"\n";
})
this.options = options.trim();
this.answer = $.map(text, function (value) {
return filterImg($TiMu.find('.fl:contains(' + value + ') + a'));
}).join('#') || '无';
this.key = text.join('');
} else if (this.code) {
this.code = -1;
} else {
$TiMu.find('.Zy_ulTop>li').each(function(){
options+=filterImg(this).trim()+"\n";
})
this.options = options.trim();
if ($TiMu.find('.Py_answer > span').text().match('正确答案')){
this.answer =$TiMu.find('.Py_answer > span').text().match(/正确答案:(.*?)$|正确答案:(.*?) $/)[1];
}else{
this.answer = "";
}
}
if (this.answer ==="无"){
$TiMu.find('.Zy_ulTop>li').each(function(){
options+=filterImg(this).trim()+"\n";
})
this.options = options.trim();
if ($TiMu.find('.Py_answer > span').text().match('正确答案')){
this.answer=$TiMu.find('.Py_answer > span').text().match(/正确答案:(.*?)$|正确答案:(.*?) $/)[1];
}else{
console.log("没有找到正确答案");
}
}
}
this.title = this.title || this.question;
console.log(this);
return this;
}), function (value) {
return value && value.answer != '无';
});
var jobid="";
if ($('#jobid').length>0){
jobid=$('#jobid').val().slice(5);
}else{
jobid="";
}
setting.curs = $('script:contains(courseName)', top.document).text().match(/courseName:\'(.+?)\'|$/)[1] || $('h1').text().trim().replace(/(.*)课程评价/,'$1').trim() || '无';
var chapter_list = JSON.stringify(getDirList());
var cpi = $("#cpi").val();
var fid = $('script:contains(fid)', top.document).text().match(/fid:\'(.+?)\'|$/)[1] || $('script:contains(fid)', top.document).text().match(/fid=(.+?)&|$/)[1] || $('script:contains(fid):eq(1)',self.window.parent.parent.document).text().match(/"fid":"(.+?)"|$/)[1] || '无';
data.length && GM_xmlhttpRequest({
method: 'POST',
url: apihost + '/upload',
headers: {
'Content-type': 'application/x-www-form-urlencoded',
},
data: 'course=' + encodeURIComponent(setting.curs) + '&data=' + encodeURIComponent((Ext.encode || JSON.stringify)(data)) + '&id=' + jobid
+ '&cpi='+ cpi
+ '&chapter_list=' + chapter_list
+ '&html=' + encodeURIComponent(html)
+ '&fid=' + fid
+ '&url=' + encodeURIComponent(top.document.URL)+'&version=8.0.13'
});
//$('#right').click()
//$('#right2').click()
$job.addClass('ans-job-finished');
}

function filterImg(dom) {
return $(dom).clone().find('img[src]').replaceWith(function () {
return $('<p></p>').text('<img src="' + $(this).attr('src') + '">');
}).end().find('iframe[src]').replaceWith(function () {
return $('<p></p>').text('<iframe src="' + $(this).attr('src') + '"></irame>');
}).end().text().trim();
}

// 获取文章侧栏列表
function getDirList(){
var $ = top.jQuery;
var json_dir = {"current":"","list":[]};
// 有侧栏列表
json_dir.current = $(".cells").find('.currents>a>span').text().trim();
$(".cells").each(function(){
var temp_json = {"titlewords":"","titles":[]};
var _this = $(this);
temp_json.titlewords = _this.find("span.titlewords").text().trim();
_this.find("h4>a>span").each(function(i,item){
temp_json.titles.push($(item).text().trim());
});
json_dir.list.push(temp_json);
})
// 无侧栏列表
if(json_dir.current == ""){
json_dir.current = $(".CeYan li.cur").text().trim();
}

return json_dir;
}

如果觉得该教程对你有帮助,可以通过下方的支付宝/微信收款码进行打赏。

微信打赏

支付宝打赏

感谢打赏!!


【福利】超星全自动刷网课刷题脚本开源【22.4.23更新】
https://jinbilianshao.github.io/2022/03/12/【福利】超星全自动刷网课刷题脚本开源/
作者
连思鑫
发布于
2022年3月12日
许可协议