Skip to content
This repository was archived by the owner on Apr 25, 2022. It is now read-only.

Commit c0a4b9e

Browse files
committed
end
1 parent 58cf48b commit c0a4b9e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Diff for: src/config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export class SystemConfig {
2-
public static version = 2.3;
3-
public static url = "https://cx.icodef.com/";
4-
public static hotVersion = "2.3.0";
2+
public static version = 2.4;
3+
public static url = "http://localhost/";
4+
public static hotVersion = "2.4.0";
55
public static match = [
66
"*://*/mycourse/studentstudy?*",
77
"*://*/work/doHomeWorkNew?*",

Diff for: src/tampermonkey/course163.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
// ==/UserScript==
1515

1616
let config = {
17-
answer_ignore: false, //忽略题目,勾选此处将不会答题
17+
answer_ignore: true, //忽略题目,勾选此处将不会答题
1818
auto: true, //全自动挂机,无需手动操作,即可自动观看视频等
1919
rand_answer: false, //随机答案,没有答案的题目将自动的生成一个答案
2020
interval: 1, //时间间隔,当任务点完成后,会等待1分钟然后跳转到下一个任务点
2121
video_multiple: 1, //视频播放倍速,视频播放的倍数,建议不要改动,为1即可,这是危险的功能
2222
video_mute: true, //视频静音,视频自动静音播放
23-
vtoken: "user", //鉴权token,用于验证码打码,提交题目可获得打码次数
23+
vtoken: "",
2424
};
2525

2626
Object.keys(config).forEach(k => {

Diff for: src/tampermonkey/cxmooc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
// ==/UserScript==
2424

2525
let config = {
26-
answer_ignore: false, //忽略题目,勾选此处将不会答题
26+
answer_ignore: true, //忽略题目,勾选此处将不会答题
2727
auto: true, //全自动挂机,无需手动操作,即可自动观看视频等
2828
interval: 2, //时间间隔,当任务点完成后,会等待2分钟然后跳转到下一个任务点
2929
rand_answer: false, //随机答案,没有答案的题目将自动的生成一个答案
3030
video_multiple: 1, //视频播放倍速,视频播放的倍数,建议不要改动,为1即可,这是危险的功能
3131
video_mute: true, //视频静音,视频自动静音播放
32-
vtoken: "", //鉴权token,用于验证码打码,提交题目可获得打码次数
32+
vtoken: "",
3333
video_cdn: "公网1", //锁定视频播放源,为空为记录最后一次选中的源(公网1,公网2等)
3434
super_mode: true, //解锁flash弹幕视频等,详情请看文档
3535
};

Diff for: src/tampermonkey/zhihuishu.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let config = {
2121
rand_answer: false, //随机答案,没有答案的题目将自动的生成一个答案
2222
video_multiple: 1, //视频播放倍速,视频播放的倍数,建议不要改动,为1即可,这是危险的功能
2323
video_mute: true, //视频静音,视频自动静音播放
24-
vtoken: "", //鉴权token,用于题库提交和记录
24+
vtoken: "",
2525
};
2626

2727
Object.keys(config).forEach(k => {

0 commit comments

Comments
 (0)