-
Notifications
You must be signed in to change notification settings - Fork 12
/
evilbutcher.boxjs.json
1047 lines (1047 loc) · 37.4 KB
/
evilbutcher.boxjs.json
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
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"id": "evilbutcher.app.sub",
"name": "evilbutcher 应用订阅",
"author": "@evilbutcher",
"icon": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/13th.png",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master",
"apps": [
{
"id": "weibotalk",
"name": "微博超话单账号",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/weibo/weibotalk.js\">脚本地址</a>】",
"Cookie获取指南",
"<iframe type=\"text/html\" src=\"https://www.youtube.com/embed/SKR0stikm-8?autoplay=1\" frameborder=\"0\"></iframe>",
"Cookie获取分为三步,请仔细查看视频中弹出的<font class=\"error--text\">三个通知</font>。如果下面应用设置第四个,检查签到开关<font class=\"error--text\">打开</font>时,第三个Cookie必须获取;关闭时获取前两个即可运行。",
"<font class=\"error--text\">注意!</font>如果超话数量不足20个无法触发视频流程中第三个重写,请关闭检查签到状态开关运行即可。"
],
"keys": [
"evil_tokenurl",
"evil_tokenheaders",
"evil_tokencheckinurl",
"evil_tokencheckinheaders",
"evil_tokensinceurl",
"evil_tokensinceheaders"
],
"settings": [
{
"id": "wb_delete_cookie",
"name": "清空Cookie",
"val": false,
"type": "boolean",
"desc": "打开则会清空Cookie,清除完毕后关闭"
},
{
"id": "wb_msg_max_num",
"name": "每个通知显示超话数",
"val": 30,
"type": "text",
"desc": "每页最显示多少个超话"
},
{
"id": "wb_request_time",
"name": "签到间隔 (毫秒)",
"val": 1000,
"type": "text",
"desc": "每个超话签到的间隔(超话大于50个的,建议填1000以上)"
},
{
"id": "wb_check_first",
"name": "检查签到状态",
"val": false,
"type": "boolean",
"desc": "打开则先检查签到状态,再签到(超话数量不足20个请关闭)"
}
],
"author": "@toulanboy, @evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/weibo",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/weibo.png",
"https://raw.githubusercontent.com/Orz-3/task/master/weibo.png"
],
"scripts": [
{
"name": "执行微博超话签到",
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/weibo/weibotalk.js"
},
{
"name": "一键清除Cookie",
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/weibo/deletecookie.js"
}
]
},
{
"id": "hot",
"name": "热门监控",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/hotsearch/hot.js\">脚本地址</a>】",
"只有关闭<font class=\"error--text\">关键词匹配</font>才会通知最新内容,否则没匹配关键词不会通知。 ",
"<font class=\"error--text\">Quantumult X</font>用户:B站、豆瓣榜单独立推送时可显示封面;关闭附带跳转链接点击通知也可跳转。"
],
"keys": [
"evil_saveditem",
"evil_savedtime"
],
"settings": [
{
"id": "evil_wb_keyword",
"name": "监控关键词",
"val": "",
"placeholder": "万茜",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "请输入监控关键词,以中文逗号分隔(请指定一个关键词,避免消息爆炸式推送)"
},
{
"id": "evil_refreshtime",
"name": "刷新时间(时)",
"val": 6,
"type": "number",
"desc": "重复内容默认在6小时内不再通知,之后清空,可自行修改"
},
{
"id": "evil_rsslink",
"name": "RSS订阅",
"val": "",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "请输入RSS订阅链接,以中文逗号分隔"
},
{
"id": "evil_rss",
"name": "rss订阅",
"val": false,
"type": "boolean",
"desc": "打开则会监控rss订阅"
},
{
"id": "evil_splitpushrss",
"name": "分开推送rss内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewrss",
"name": "忽略关键词推送rss最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_rssnum",
"name": "忽略关键词时获取的rss订阅数量",
"val": 6,
"type": "number",
"desc": "自定匹配rss订阅内容数量"
},
{
"id": "evil_wb",
"name": "微博热搜",
"val": true,
"type": "boolean",
"desc": "打开则会监控微博热搜"
},
{
"id": "evil_splitpushwb",
"name": "分开推送微博内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewwb",
"name": "忽略关键词推送微博最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_wbnum",
"name": "忽略关键词时获取的微博热搜数量",
"val": 6,
"type": "number",
"desc": "自定匹配微博热搜内容数量"
},
{
"id": "evil_zh",
"name": "知乎热榜",
"val": true,
"type": "boolean",
"desc": "打开则会监控知乎热榜"
},
{
"id": "evil_splitpushzh",
"name": "分开推送知乎内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewzh",
"name": "忽略关键词推送知乎最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_zhnum",
"name": "忽略关键词时获取的知乎热榜数量",
"val": 6,
"type": "number",
"desc": "自定匹配知乎热榜内容数量"
},
{
"id": "evil_bd",
"name": "百度风云榜",
"val": false,
"type": "boolean",
"desc": "打开则会监控百度风云榜"
},
{
"id": "evil_splitpushbd",
"name": "分开推送百度内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewbd",
"name": "忽略关键词推送百度最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_bdnum",
"name": "忽略关键词时获取的百度风云榜数量",
"val": 6,
"type": "number",
"desc": "自定匹配百度风云榜内容数量"
},
{
"id": "evil_bl",
"name": "B站日榜",
"val": true,
"type": "boolean",
"desc": "打开则会监控B站日榜"
},
{
"id": "evil_splitpushbl",
"name": "分开推送B站内容",
"val": true,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewbl",
"name": "忽略关键词推送B站最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_blrid",
"name": "榜单编号(点击查看对应关系)",
"val": 0,
"type": "number",
"desc": "B站榜单对应关系:0全站,1动画,3音乐,4游戏,5娱乐,36科技,119鬼畜,129舞蹈"
},
{
"id": "evil_blnum",
"name": "忽略关键词时获取的B站榜单数量",
"val": 6,
"type": "number",
"desc": "自定匹配B站榜单内容数量"
},
{
"id": "evil_db",
"name": "豆瓣榜单",
"val": false,
"type": "boolean",
"desc": "打开则会监控豆瓣榜单"
},
{
"id": "evil_splitpushdb",
"name": "分开推送豆瓣内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewdb",
"name": "忽略关键词推送豆瓣最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_dbnum",
"name": "忽略关键词时获取的豆瓣榜单数量",
"val": 6,
"type": "number",
"desc": "自定匹配豆瓣榜单内容数量"
},
{
"id": "evil_dy",
"name": "抖音榜单",
"val": false,
"type": "boolean",
"desc": "打开则会监控抖音榜单"
},
{
"id": "evil_splitpushdy",
"name": "分开推送抖音内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewdy",
"name": "忽略关键词推送抖音最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_dynum",
"name": "忽略关键词时获取的抖音榜单数量",
"val": 6,
"type": "number",
"desc": "自定匹配抖音榜单内容数量"
},
{
"id": "evil_k36",
"name": "36氪榜单",
"val": false,
"type": "boolean",
"desc": "打开则会监控36氪榜单"
},
{
"id": "evil_splitpushk36",
"name": "分开推送36氪内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewk36",
"name": "忽略关键词推送36氪最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_k36num",
"name": "忽略关键词时获取的36氪榜单数量",
"val": 6,
"type": "number",
"desc": "自定匹配36氪榜单内容数量"
},
{
"id": "evil_amazon",
"name": "Kindle图书榜单",
"val": false,
"type": "boolean",
"desc": "打开则会监控Kindle图书榜单"
},
{
"id": "evil_splitpushamz",
"name": "分开推送Kindle图书内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewamz",
"name": "忽略关键词推送Kindle图书最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_amznum",
"name": "忽略关键词时获取的Kindle图书榜单数量",
"val": 6,
"type": "number",
"desc": "自定匹配Kindle图书榜单内容数量"
},
{
"id": "evil_zmz",
"name": "人人影视榜单",
"val": false,
"type": "boolean",
"desc": "打开则会监控人人影视榜单"
},
{
"id": "evil_splitpushzmz",
"name": "分开推送人人影视内容",
"val": false,
"type": "boolean",
"desc": "打开则会独立推送每条更新"
},
{
"id": "evil_pushnewzmz",
"name": "忽略关键词推送人人影视最新内容",
"val": false,
"type": "boolean",
"desc": "打开则会忽略关键词,自动推送最新内容"
},
{
"id": "evil_zmznum",
"name": "忽略关键词时获取的人人影视榜单数量",
"val": 6,
"type": "number",
"desc": "自定匹配人人影视榜单内容数量"
},
{
"id": "evil_cltz",
"name": "人人影视磁力跳转",
"val": "1",
"type": "radios",
"desc": "选择跳转方式",
"items": [
{
"key": "1",
"label": "调用迅雷离线"
},
{
"key": "2",
"label": "调用115离线"
},
{
"key": "3",
"label": "调用袋鼠下载"
},
{
"key": "4",
"label": "调用闪电下载"
}
]
},
{
"id": "evil_attachurl",
"name": "附带跳转链接",
"val": true,
"type": "boolean",
"desc": "打开则会附带跳转链接"
},
{
"id": "evil_time",
"name": "榜单获取时限(s)",
"val": 2,
"type": "number",
"desc": "榜单获取时限"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/hotsearch",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/hot.png",
"https://raw.githubusercontent.com/58xinian/icon/master/hot.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/hotsearch/hot.js"
},
{
"id": "checkin",
"name": "机场签到",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/checkin_env.js\">脚本地址</a>】",
"多个机场使用请用<font class=\"error--text\">中文逗号</font>分隔,顺序需要对应。",
"也可利用BoxJs<font class=\"error--text\">会话切换</font>功能,一次保存一个机场信息,切换会话签到。"
],
"keys": [
"evil_checkintitle",
"evil_checkinlogin",
"evil_checkinemail",
"evil_checkinpwd"
],
"settings": [
{
"id": "evil_autoLogout",
"name": "重新登陆",
"val": false,
"type": "boolean",
"desc": "打开则会重新登陆后签到"
},
{
"id": "evil_checkintitle",
"name": "标题",
"val": "",
"placeholder": "请填写,例如:隔壁西站",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "请依次填入标题,以中文逗号分隔"
},
{
"id": "evil_checkinlogin",
"name": "网址",
"val": "",
"placeholder": "请填写,例如:https://example.com/auth/login",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "请依次填入网址,以中文逗号分隔"
},
{
"id": "evil_checkinemail",
"name": "邮箱",
"val": "",
"placeholder": "请填写,例如:example@v2bz.com",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "请依次填入邮箱,以中文逗号分隔"
},
{
"id": "evil_checkinpwd",
"name": "密码",
"val": "",
"placeholder": "请填写,例如:password",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "请依次填入密码,以中文逗号分隔"
}
],
"author": "@Neurogram, @evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/glados",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/glados_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/glados_animation.gif"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/checkin_env.js"
},
{
"id": "checkincookie",
"name": "机场签到Cookie",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/checkincookie_env.js\">脚本地址</a>】",
"此版本为尝试用Cookie签到,针对有登陆验证或跳转的机场。",
"可利用BoxJs<font class=\"error--text\">会话切换</font>功能,一次保存一个机场信息,切换会话签到。"
],
"keys": [
"evil_checkincktitle",
"evil_checkinurl",
"evil_checkincookie"
],
"settings": [
{
"id": "evil_checkincktitle",
"name": "机场名称",
"val": "",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "手动填入机场名称"
},
{
"id": "evil_checkinurl",
"name": "登录链接",
"val": "",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "手动填入登陆链接"
},
{
"id": "evil_checkincookie",
"name": "Cookie",
"val": "",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "自动获取,也可手动填入Cookie,请不要修改"
}
],
"author": "@Neurogram, @evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/glados",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/glados_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/glados_animation.gif"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/checkincookie_env.js"
},
{
"id": "glados",
"name": "GLaDOS",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/glados.js\">脚本地址</a>】",
"签到较为特殊,故独立写了一个。",
"注册地址:https://github.com/glados-network/GLaDOS",
"邀请码:3JRG4-KSGZJ-8QPXF-8PPOO"
],
"keys": [
"evil_gladoscookie",
"evil_galdosauthorization"
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/glados",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/glados1_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/glados1.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/glados.js"
},
{
"id": "appmonitor",
"name": "AppMonitor",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/appstore/AppMonitor.js\">脚本地址</a>】",
"修改自Quantumult X群友分享,支持BoxJs。",
"填写App ID可通过AppStore分享按钮拷贝想要监控App的链接,在链接最后有id,复制到监控ID内即可;未单独设置区域,则采用reg默认区域",
"关于ID,例如:https://apps.apple.com/cn/app/nplayer-plus/id<font class=\"error--text\">539397400</font>",
"@App价格监控.app_monitor为本地记录的监控相关信息,可以忽略"
],
"keys": [
"@App价格监控.apps",
"@App价格监控.reg",
"@App价格监控.app_monitor"
],
"settings": [
{
"id": "@App价格监控.apps",
"name": "监控ID",
"val": "",
"placeholder": "例如,1312014438 cn,1282297037_au",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "ID与区域分隔符支持 空格/:|_-,但不同App之间请用中文逗号\",\"分隔。"
},
{
"id": "@App价格监控.reg",
"name": "默认区域",
"val": "",
"placeholder": "例如,cn/us/au",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "请填写一个默认区域"
}
],
"author": "@t.me/QuanXApp群友",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/appstore",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Apple.png",
"https://raw.githubusercontent.com/Orz-3/task/master/appstore.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/appstore/AppMonitor.js"
},
{
"id": "nasapic",
"name": "NASA每日一图",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/nasa/nasapic.js\">脚本地址</a>】",
"首先前往<a href=\"https://api.nasa.gov\">NASA</a>申请一个API,申请流程非常简单,把得到的API填入脚本即可"
],
"keys": [
"@NASA.nasaapi"
],
"settings": [
{
"id": "@NASA.translate",
"name": "翻译",
"val": false,
"type": "boolean",
"desc": "是否进行翻译"
},
{
"id": "@NASA.nasaapi",
"name": "API",
"val": "",
"placeholder": "686BJ2YbpY****************Op8gaVTeVs0t",
"type": "textarea",
"autoGrow": true,
"rows": 1,
"desc": "请填入API"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/nasa",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/nasa_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/nasa.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/nasa/nasapic.js"
},
{
"id": "idaily",
"name": "iDaily",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/idaily/idaily.js\">脚本地址</a>】"
],
"keys": [
"@iDaily.random"
],
"settings": [
{
"id": "@iDaily.random",
"name": "随机获取",
"val": false,
"type": "boolean",
"desc": "打开将会随机获取内容"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/idaily",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/idaily_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/idaily.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/idaily/idaily.js"
},
{
"id": "jiumu",
"name": "九木杂物社",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/jiumu/jiumu.js\">脚本地址</a>】"
],
"keys": [
"@Jiumu.evil_jiumuSignStr",
"@Jiumu.evil_jiumuReferer",
"@Jiumu.evil_jiumuVip",
"@Jiumu.evil_jiumuEncrypt",
"@Jiumu.evil_jiumuBody"
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/jiumu",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/jiumu_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/jiumu.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/jiumu/jiumu.js"
},
{
"id": "wechatsubs",
"name": "公众号监控",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/wechatsubs.js\">脚本地址</a>】"
],
"keys": [
"@Wechatsubs.wechatkeyword1",
"@Wechatsubs.wechatkeyword2",
"@Wechatsubs.wechatsavedtime",
"@Wechatsubs.wechatrefreshtime",
"@Wechatsubs.wechatsaveditem"
],
"settings": [
{
"id": "@Wechatsubs.wechatkeyword1",
"name": "关键词-1",
"val": "",
"placeholder": "",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "请填入要监控的第一组关键词,多个词用中文逗号“,”分隔。"
},
{
"id": "@Wechatsubs.wechatkeyword2",
"name": "关键词-2",
"val": "",
"placeholder": "",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "请填入要监控的第二组关键词,多个词用中文逗号“,”分隔。"
},
{
"id": "@Wechatsubs.wechatrefreshtime",
"name": "刷新时间(时)",
"val": 6,
"type": "number",
"desc": "重复内容默认在6小时内不再通知,之后清空,可自行修改"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/wechatsubs",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/wechat_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/wechat.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/wechatsubs.js"
},
{
"id": "klcwapp",
"name": "酷乐潮玩App",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/klcw/klcw-app.js\">脚本地址</a>】"
],
"keys": [
"@klcwapp.evil_klcwappBody"
],
"settings": [
{
"id": "@klcwapp.evil_klcwappBody",
"name": "Cookie",
"val": "",
"placeholder": "",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "可自行抓包填入。"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/klcw",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/klcw_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/klcw.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/klcw/klcw-app.js"
},
{
"id": "klcw",
"name": "酷乐潮玩小程序",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/klcw/klcw.js\">脚本地址</a>】"
],
"keys": [
"@klcw.evil_klcwid",
"@klcw.evil_klcwSignStr",
"@klcw.evil_klcwReferer",
"@klcw.evil_klcwVip",
"@klcw.evil_klcwEncrypt",
"@klcw.evil_klcwBody"
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/klcw",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/klcw_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/klcw.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/klcw/klcw.js"
},
{
"id": "funboat",
"name": "Funboat",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/funboat/funboat.js\">脚本地址</a>】",
"微信小程序搜索 Funboat,按照脚本提示获取Cookie。",
"⚠️其他基于有赞的小程序也可能触发获取Cookie,请获取完后及时禁用获取Cookie重写/脚本。"
],
"keys": [
"evil_funkourl",
"evil_funkocookie",
"evil_funkostatusurl",
"evil_funkostatuscookie"
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/funboat",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/funko_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/funko.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/funboat/funboat.js"
},
{
"id": "timepop",
"name": "Timepop",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/timepop/timepop.js\">脚本地址</a>】",
"微信小程序搜索 Timepop,按照脚本提示获取Cookie。",
"⚠️其他基于有赞的小程序也可能触发获取Cookie,请获取完后及时禁用获取Cookie重写/脚本。"
],
"keys": [
"evil_timepopurl",
"evil_timepopcookie",
"evil_timepopstatusurl",
"evil_timepopstatuscookie"
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/timepop",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/timepop_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/timepop.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/timepop/timepop.js"
},
{
"id": "sydwzp",
"name": "事业单位招聘监控",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/sydwzp.js\">脚本地址</a>】"
],
"keys": [
"@sydwzp.sydwarea",
"@sydwzp.sydwsavedtime",
"@sydwzp.sydwrefreshtime",
"@sydwzp.sydwsaveditem",
"@sydwzp.sydwdetailsetting"
],
"settings": [
{
"id": "@sydwzp.sydwarea",
"name": "地区",
"val": "",
"placeholder": "",
"type": "textarea",
"autoGrow": true,
"rows": 2,
"desc": "请填入要监控的地区。"
},
{
"id": "@sydwzp.sydwdetailsetting",
"name": "获取附件链接",
"val": true,
"type": "boolean",
"desc": "是否获取附件链接"
},
{
"id": "@sydwzp.sydwrefreshtime",
"name": "刷新时间(时)",
"val": 6,
"type": "number",
"desc": "重复内容默认在6小时内不再通知,之后清空,可自行修改"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/wechatsubs",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/sydw_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/sydw.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/sydwzp.js"
},
{
"id": "gxrcw",
"name": "高校人才网招聘监控",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/gxrcw.js\">脚本地址</a>】"
],
"keys": [
"@gxrcw.gxrcwsavedtime",
"@gxrcw.gxrcwrefreshtime",
"@gxrcw.gxrcwsaveditem"
],
"settings": [
{
"id": "@gxrcw.gxrcwrefreshtime",
"name": "刷新时间(时)",
"val": 6,
"type": "number",
"desc": "重复内容默认在6小时内不再通知,之后清空,可自行修改"
}
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/wechatsubs",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/gxrcw_tran.png",
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/gxrcw.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/gxrcw.js"
},
{
"id": "ssq",
"name": "彩票结果查询",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/ssq/ssq.js\">脚本地址</a>】"
],
"settings": [
{
"id": "@ssq.ssq",
"name": "双色球",
"val": true,
"type": "boolean",
"desc": "打开即可查询双色球开奖结果"
},
{
"id": "@ssq.dlt",
"name": "大乐透",
"val": true,
"type": "boolean",
"desc": "打开即可查询大乐透开奖结果"
},
{
"id": "@ssq.3d",
"name": "福彩3D",
"val": true,
"type": "boolean",
"desc": "打开即可查询福彩3D开奖结果"
},
{
"id": "@ssq.qlc",
"name": "七乐彩",
"val": true,
"type": "boolean",
"desc": "打开即可查询七乐彩开奖结果"
},
{
"id": "@ssq.new",
"name": "仅查询当日开奖",
"val": true,
"type": "boolean",
"desc": "打开则会只查询今日开奖的彩票"
}
],
"author": "@evilbutcher, @Phantom",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/ssq",
"icons": [
"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/ssq_tran.png",
"https://raw.githubusercontent.com/58xinian/icon/master/Two_color_ball.png"
],
"script": "https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/ssq/ssq.js"
},
{
"id": "hzh",
"name": "华住会",
"descs_html": [
"点此直达【<a href=\"https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/hzh/hzh.js\">脚本地址</a>】"
],
"keys": [
"@hzh.evil_hzhCookie",
"@hzh.evil_hzhUserToken"
],
"author": "@evilbutcher",
"repo": "https://github.com/evilbutcher/Quantumult_X/tree/master/check_in/hzh",