forked from CYB0223/jztt18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boxjs.json
1280 lines (1279 loc) · 37 KB
/
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": "guan.app.sub",
"name": "guan 脚本订阅",
"description": "该订阅兼容BoxJs以及QX Gallery",
"author": "guan",
"icon": "https://avatars.githubusercontent.com/u/30943064",
"repo": "https://github.com/kongjianweimei/18",
"apps": [
{
"id": "多合一签到",
"name": "京东",
"keys": [
"CookieJD",
"CookieJD2",
"CookiesJD"
],
"descs_html": [
"<h4 align=\"center\">获取Cookie以及脚本配置请查看<a href=\"https://raw.githubusercontent.com/NobyDa/Script/master/JD-DailyBonus/JD_DailyBonus.js\">脚本注释</a></h4>",
"<br />",
"<h3 align=\"center\">签到相关教程</h3>",
"<p align=\"center\"><iframe src=\"https://www.youtube.com/embed/6vMz1LKF1-8\" width=\"100%\" height=\"100%\"></iframe></p>"
],
"settings": [
{
"id": "JD_DailyBonusLog",
"name": "详细响应日志",
"val": false,
"type": "boolean",
"desc": "打印原始签到结果, 用于调试脚本, 一般用户建议关闭."
},
{
"id": "JD_Crash_disable",
"name": "崩溃自动禁用",
"val": true,
"type": "boolean",
"desc": "脚本运行崩溃时(如VPN断连), 下次运行时将自动禁用相关崩溃接口(仅部分接口启用), 注: 崩溃时可能会误禁用正常接口."
},
{
"id": "JD_Retry_disable",
"name": "签到接口增强",
"val": true,
"type": "boolean",
"desc": "用于部分接口提示\"不含活动数据\"问题, 开启后会进行二次查询, 注: 可能会导致崩溃(小概率)."
},
{
"id": "JD_Follow_disable",
"name": "自动关注店铺",
"val": true,
"type": "boolean",
"desc": "部分接口签到过程可能需要关注店铺, 如介意可选择关闭."
},
{
"id": "JD_DailyBonusDisables",
"name": "签到接口禁用",
"val": "",
"type": "checkboxes",
"desc": "",
"items": [
{
"key": "SpeedUp",
"label": "天天加速"
},
{
"key": "JDBean",
"label": "京东京豆"
},
{
"key": "JDCustomized",
"label": "京东定制"
},
{
"key": "JRDoll",
"label": "金融签壹"
},
{
"key": "JRTwoDoll",
"label": "金融签贰"
},
{
"key": "JRThreeDoll",
"label": "金融签叁"
},
{
"key": "JRFourDoll",
"label": "金融签肆"
},
{
"key": "JRFiveDoll",
"label": "金融签伍"
},
{
"key": "XJDouble",
"label": "现金双签"
},
{
"key": "JRSteel",
"label": "金融钢镚"
},
{
"key": "JDTurn",
"label": "京东转盘"
},
{
"key": "JDGStore",
"label": "京东超市"
},
{
"key": "JDComputer",
"label": "京东电脑"
},
{
"key": "JDCard",
"label": "京东卡包"
},
{
"key": "JD3C",
"label": "京东数码"
},
{
"key": "JDClothing",
"label": "京东服饰"
},
{
"key": "JDSuitcase",
"label": "京东箱包"
},
{
"key": "JDChild",
"label": "京东童装"
},
{
"key": "JDBaby",
"label": "京东母婴"
},
{
"key": "JDCash",
"label": "京东红包"
},
{
"key": "JDFSale",
"label": "京东闪购"
},
{
"key": "JDBook",
"label": "京东图书"
},
{
"key": "JDSchool",
"label": "京东校园"
},
{
"key": "JDShoes",
"label": "京东鞋靴"
},
{
"key": "JDHealth",
"label": "京东健康"
},
{
"key": "JDWomen",
"label": "京东女装"
},
{
"key": "JDSecKill",
"label": "京东秒杀"
},
{
"key": "JTDouble",
"label": "金贴双签"
},
{
"key": "JDMakeup",
"label": "京东美妆"
},
{
"key": "JDVege",
"label": "京东菜场"
},
{
"key": "JDClean",
"label": "京东清洁"
},
{
"key": "JDCare",
"label": "京东个护"
},
{
"key": "JDJewels",
"label": "京东珠宝"
},
{
"key": "JDCube",
"label": "京东魔方"
},
{
"key": "JDBuyCar",
"label": "京东汽车"
},
{
"key": "JDDouble",
"label": "京豆双签"
},
{
"key": "subsidy",
"label": "京东金贴"
},
{
"key": "JDGetCash",
"label": "京东现金"
},
{
"key": "JDShake",
"label": "京东摇一摇"
},
{
"key": "Qbear",
"label": "总京豆查询"
},
{
"key": "TCash",
"label": "总红包查询"
},
{
"key": "TSteel",
"label": "总钢镚查询"
},
{
"key": "TotalSubsidy",
"label": "总金贴查询"
},
{
"key": "TotalMoney",
"label": "总现金查询"
}
]
},
{
"id": "JD_DailyBonusTimeOut",
"name": "超时退出 (毫秒)",
"val": "",
"type": "number",
"placeholder": "默认无超时 (点击以展开说明)",
"desc": "按需填写, 用于由网络不稳定引起的脚本中断, 正常或越狱用户建议留空. 如QX日志出现大量\"JS Context timeout\"后脚本中断时, 建议填写6000"
},
{
"id": "JD_DailyBonusDelay",
"name": "接口延迟 (毫秒)",
"val": "",
"type": "number",
"placeholder": "默认并发无延迟 (点击以展开说明)",
"desc": "延迟作用于每个签到接口, 该参数接受随机或指定延迟(例: '2000'则表示延迟2秒; '2000-5000'则表示延迟最小2秒,最大5秒内的随机延迟), 如填入延迟则切换顺序签到(耗时较长); VPN重启或越狱用户建议填写1(顺序执行), Surge用户请注意在SurgeUI界面调整脚本超时."
}
],
"scripts": [
{
"name": "京东签到",
"script": "https://raw.githubusercontent.com/NobyDa/Script/master/JD-DailyBonus/JD_DailyBonus.js"
},
{
"name": "初始化设置",
"script": "https://gist.githubusercontent.com/NobyDa/91cbe57dd50b3588a975af8922507a72/raw/JD_initial.js"
}
],
"author": "@NobyDa",
"repo": "https://github.com/NobyDa/Script/tree/master/JD-DailyBonus",
"icons": [
"https://raw.githubusercontent.com/NobyDa/mini/master/Alpha/jd.png",
"https://raw.githubusercontent.com/NobyDa/mini/master/Color/jd.png"
]
},
{
"id": "youth",
"name": "中青看点",
"author": "@sunert",
"descs_html": [
"<h4 align=\"center\">获取Cookie以及脚本配置请查看<a href=\"https://github.com/Sunert/Scripts/raw/master/TaskConf/youth/readme.md\">配置说明</a></h4>",
"<br />",
"<p>其中zq_nick、zqcash和zqcard为昵称、提现金额和早起打卡开关,无需另外获取,相关项设置后自动生成,cashurl_zq和cashbody_zq为提现请求,获取后方可自动提现,可选</p>"
],
"keys": [
"zq_nick",
"youthheader_zq",
"read_zq",
"readtime_zq",
"cashurl_zq",
"cashbody_zq",
"zqcash",
"zqcard"
],
"repo": "https://github.com/Sunert/Scripts/blob/master/Task/youth.js",
"script": "https://raw.githubusercontent.com/Sunert/Scripts/master/Task/youth.js",
"settings": [
{
"id": "zqcard",
"val": "false",
"name": "打卡赚钱",
"type": "boolean",
"desc": "每日打卡报名及早起打卡"
},
{
"id": "zqtime",
"val": "05",
"name": "打卡时间",
"type": "number",
"desc": "每日早起打卡时间"
},
{
"id": "delay_rotary_zq",
"val": "10",
"name": "转盘时间间隔",
"type": "number",
"desc": "间隔时间设置,如1秒填1即可"
},
{
"id": "notifytimes",
"val": "",
"name": "通知频率 (点击查看设置说明)",
"type": "number",
"desc": "设定通知频率,前三次为全部通知,之后转盘次数/设定频率整除时通知,如设置0为无通知,设置1为全部通知,设置其他数可整除余0时通知,默认值50"
},
{
"id": "zqcash",
"val": "30",
"name": "提现金额",
"type": "radios",
"desc": "自动提现金额需和获取提现请求保持一致",
"items": [
{
"key": "10",
"label": "10元"
},
{
"key": "30",
"label": "30元"
},
{
"key": "100",
"label": "100元"
}
]
}
],
"icons": [
"https://cdn.jsdelivr.net/gh/Orz-3/mini@master/Alpha/youth.png",
"https://cdn.jsdelivr.net/gh/Orz-3/mini@master/Color/youth.png"
]
},
{
"id": "youthRead",
"name": "中青自动阅读",
"author": "@sunert",
"keys": [
"youth_autoread",
"autotime_zq"
],
"settings": [
{
"id": "youth_cut",
"val": false,
"name": "缩减请求",
"type": "boolean",
"desc": "自动删除收益为0或者错误的阅读请求,使用完后请立即关闭,避免清空阅读请求"
}
],
"repo": "https://github.com/Sunert/Scripts/blob/master/Task/Youth_Read.js",
"script": "https://raw.githubusercontent.com/Sunert/Scripts/master/Task/Youth_Read.js",
"icons": [
"https://cdn.jsdelivr.net/gh/Orz-3/mini@master/Alpha/youth.png",
"https://cdn.jsdelivr.net/gh/Orz-3/mini@master/Color/youth.png"
]
},
{
"id": "tls",
"name": "特仑苏小程序",
"keys": [
"tlsurl",
"tlsheader",
"tlsurl2",
"tlsheader2",
"tlsurl3",
"tlsheader3",
"tlsurl4",
"tlsheader4",
"tlsurl5",
"tlsheader5",
"tlsurl6",
"tlsheader6",
"tlsurl7",
"tlsheader7",
"tlsurl8",
"tlsheader8",
"tlsurl9",
"tlsheader9",
"tlsurl10",
"tlsheader10",
"tlsurl11",
"tlsheader11",
"tlsurl12",
"tlsheader12",
"tlsurl13",
"tlsheader13",
"tlsurl14",
"tlsheader14",
"tlsurl15",
"tlsheader15",
"tlsurl16",
"tlsheader16",
"tlsurl17",
"tlsheader17",
"tlsurl18",
"tlsheader18",
"tlsurl19",
"tlsheader19",
"tlsurl20",
"tlsheader20"
],
"author": "@ziye",
"settings": [
{
"id": "tlsSuffix",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、"
},
{
"id": "tlsCount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "tlshyidA",
"name": "好友A",
"val": "109960",
"type": "number",
"desc": "默认内置,自行修改"
},
{
"id": "tlshyidB",
"name": "好友B",
"val": "155133",
"type": "number",
"desc": "默认内置,自行修改"
},
{
"id": "tlshyidC",
"name": "好友C",
"val": "4163643",
"type": "number",
"desc": "默认内置,自行修改"
},
{
"id": "tlshyidD",
"name": "好友D",
"val": "4164153",
"type": "number",
"desc": "默认内置,自行修改"
},
{
"id": "tlsXYZ",
"name": "执行概率",
"val": "100",
"type": "number",
"desc": "0不执行 可设置0-100,默认百分百"
},
{
"id": "tlsnotifyttt",
"name": "推送控制",
"val": "1",
"type": "number",
"desc": "0关闭,1推送,默认12点以及23点推送"
},
{
"id": "tlsnotifyInterval",
"name": "通知控制",
"val": "2",
"type": "number",
"desc": "0关闭,1为 所有通知,2为 12,23 点通知,3为 6,12,18,23 点通知 "
},
{
"id": "tlsMinutes",
"name": "推送-通知 分钟控制",
"val": "10",
"type": "number",
"desc": "推送以及通知控制在什么分钟段,可设置0-59,默认0到10"
}
],
"repo": "https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/tls.js",
"icons": [
"https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/tls.png",
"https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/tls.png"
],
"script": "https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/tls.js"
},
{
"id": "kxddx",
"name": "开心点点消",
"keys": [
"kxddxhd",
"kxddxbody",
"kxddxhd2",
"kxddxbody2",
"kxddxhd3",
"kxddxbody3",
"kxddxhd4",
"kxddxbody4",
"kxddxhd5",
"kxddxbody5"
],
"author": "@tom",
"settings": [
{
"id": "kxddxstatus",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4"
},
{
"id": "kxddxcount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "tz",
"name": "通知",
"val": "1",
"type": "number",
"desc": "0关闭通知,1打开通知"
}
],
"repo": "https://raw.githubusercontent.com/xl2101200/-/main/kxddx.js",
"icons": [
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg",
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg"
],
"script": "https://raw.githubusercontent.com/xl2101200/-/main/kxddx.js"
},
{
"id": "hbsp",
"name": "红包视频",
"keys": [
"hbsphd",
"hbspbody",
"hbsphd2",
"hbspbody2",
"hbsphd3",
"hbspbody3",
"hbsphd4",
"hbspbody4",
"hbspbody5",
"hbsphd5"
],
"author": "@tom",
"settings": [
{
"id": "hbspstatus",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4"
},
{
"id": "hbspcount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "tz",
"name": "通知",
"val": "1",
"type": "number",
"desc": "0关闭通知,1打开通知"
}
],
"repo": "https://raw.githubusercontent.com/xl2101200/-/main/hbsp.js",
"icons": [
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg",
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg"
],
"script": "https://raw.githubusercontent.com/xl2101200/-/main/hbsp.js"
},
{
"id": "jsz",
"name": "金银手指阅读",
"keys": [
"jszhd",
"jszhd2",
"jszhd3",
"jszhd4",
"jszhd5"
],
"settings": [
{
"id": "jszstatus",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4等"
},
{
"id": "jszcount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
}
],
"repo": "https://github.com/shaolin-kongfu/js_scripts/blob/main/jsz.js",
"script": "https://raw.githubusercontent.com/shaolin-kongfu/js_scripts/main/jsz.js",
"icons": [
"https://raw.githubusercontent.com/shaolin-kongfu/js_scripts/main/kongfu.jpg",
"https://raw.githubusercontent.com/shaolin-kongfu/js_scripts/main/kongfu.jpg"
]
},
{
"id": "jztt",
"name": "九章头条",
"keys": [
"jztturl",
"jztturl2",
"jztturl3",
"jztturl4",
"jztturl5"
],
"author": "@tom",
"settings": [
{
"id": "jzttSuffix",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4"
},
{
"id": "jzttCount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "jzttXH",
"name": "循环获取ck",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "jzttTXTX",
"name": "txtx",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "jzttSC",
"name": "sc",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "jzttnotifyttt",
"name": "推送控制",
"val": "1",
"type": "number",
"desc": "0关闭,1推送,默认12点以及23点推送"
},
{
"id": "jzttnotifyInterval",
"name": "通知控制",
"val": "2",
"type": "number",
"desc": "0关闭,1为 所有通知,2为 12,23 点通知,3为 6,12,18,23 点通知"
},
{
"id": "jzttMinutes",
"name": "推送-通知 分钟控制",
"val": "10",
"type": "number",
"desc": "推送以及通知控制在什么分钟段,可设置0-59,默认0到10"
}
],
"repo": "https://raw.githubusercontent.com/xl2101200/-/main/jztt.js",
"icons": [
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg",
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg"
],
"script": "https://raw.githubusercontent.com/xl2101200/-/main/jztt.js"
},
{
"id": "gqsl",
"name": "广汽三菱",
"keys": [
"gqslheader",
"gqslbody",
"gqslheader2",
"gqslbody2",
"gqslheader3",
"gqslbody3",
"gqslheader4",
"gqslbody4",
"gqslheader5",
"gqslbody5"
],
"author": "@tom",
"settings": [
{
"id": "gqslSuffix",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4"
},
{
"id": "gqslCount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "gqslXH",
"name": "循环获取ck",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "gqslTXTX",
"name": "txtx",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "gqslSC",
"name": "sc",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "gqslnotifyttt",
"name": "推送控制",
"val": "1",
"type": "number",
"desc": "0关闭,1推送,默认12点以及23点推送"
},
{
"id": "gqslnotifyInterval",
"name": "通知控制",
"val": "2",
"type": "number",
"desc": "0关闭,1为 所有通知,2为 12,23 点通知,3为 6,12,18,23 点通知"
},
{
"id": "gqslMinutes",
"name": "推送-通知 分钟控制",
"val": "10",
"type": "number",
"desc": "推送以及通知控制在什么分钟段,可设置0-59,默认0到10"
}
],
"repo": "https://raw.githubusercontent.com/xl2101200/-/main/gqsl.js",
"icons": [
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg",
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg"
],
"script": "https://raw.githubusercontent.com/xl2101200/-/main/gqsl.js"
},
{
"id": "qxq",
"name": "趣星球",
"keys": [
"qxqurl",
"qxqhd",
"qxqurl2",
"qxqhd2",
"qxqurl3",
"qxqhd3",
"qxqurl4",
"qxqhd4"
],
"author": "@YaphetS0903",
"settings": [
{
"id": "qxqstatus",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4"
},
{
"id": "qxqcount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "tz",
"name": "通知",
"val": "1",
"type": "number",
"desc": "0关闭通知,1打开通知"
}
],
"repo": "https://github.com/YaphetS0903/JStest/blob/main/qxq.js",
"icons": [
"https://raw.githubusercontent.com/YaphetS0903/JStest/main/image/YaphetS.jpg",
"https://raw.githubusercontent.com/YaphetS0903/JStest/main/image/YaphetS.jpg"
],
"script": "https://raw.githubusercontent.com/YaphetS0903/JStest/main/qxq.js"
},
{
"id": "dsj",
"name": "电视家APP",
"keys": [
"dsjheader",
"dsjheader2",
"dsjheader3",
"dsjheader4",
"dsjheader5"
],
"author": "@ziye",
"settings": [
{
"id": "dsjSuffix",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、"
},
{
"id": "dsjCount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "dsjXH",
"name": "循环获取CK",
"val": "0",
"type": "number",
"desc": "0关闭 1开启,默认关闭"
},
{
"id": "dsjXYZ",
"name": "执行概率",
"val": "100",
"type": "number",
"desc": "0不执行 可设置0-100,默认百分百"
},
{
"id": "dsjTXTX",
"name": "余额提醒",
"val": "0",
"type": "number",
"desc": "0不提醒 可设置0,5,10,20,25,30,50,100"
},
{
"id": "dsjnotifyttt",
"name": "推送控制",
"val": "1",
"type": "number",
"desc": "0关闭,1推送,默认12点以及23点推送"
},
{
"id": "dsjnotifyInterval",
"name": "通知控制",
"val": "2",
"type": "number",
"desc": "0关闭,1为 所有通知,2为 12,23 点通知,3为 6,12,18,23 点通知 "
},
{
"id": "dsjMinutes",
"name": "推送-通知 分钟控制",
"val": "10",
"type": "number",
"desc": "推送以及通知控制在什么分钟段,可设置0-59,默认0到10"
}
],
"repo": "https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/dsj.js",
"icons": [
"https://raw.githubusercontent.com/jianglin521/QuantumultX/main/image/dsj.jpg",
"https://raw.githubusercontent.com/jianglin521/QuantumultX/main/image/dsj.jpg"
],
"script": "https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/dsj.js"
},
{
"id": "dt",
"name": "读特",
"keys": [
"dturl",
"dturl2",
"dturl3",
"dturl4",
"dturl5"
],
"author": "@tom",
"settings": [
{
"id": "dtSuffix",
"name": "当前账号",
"val": "1",
"type": "number",
"desc": "当前抓取ck记录的账号序号,如:1、2、3、4"
},
{
"id": "dtCount",
"name": "账号个数",
"val": "1",
"type": "number",
"desc": "指定任务最多跑几个账号,根据抓取的账号数据个数来设值"
},
{
"id": "dtXH",
"name": "循环获取ck",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "dtTXTX",
"name": "txtx",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "dtSC",
"name": "sc",
"val": "0",
"type": "number",
"desc": "0关闭,1打开,默认关闭"
},
{
"id": "dtnotifyttt",
"name": "推送控制",
"val": "1",
"type": "number",
"desc": "0关闭,1推送,默认12点以及23点推送"
},
{
"id": "dtnotifyInterval",
"name": "通知控制",
"val": "2",
"type": "number",
"desc": "0关闭,1为 所有通知,2为 12,23 点通知,3为 6,12,18,23 点通知"
},
{
"id": "dtMinutes",
"name": "推送-通知 分钟控制",
"val": "10",
"type": "number",
"desc": "推送以及通知控制在什么分钟段,可设置0-59,默认0到10"
}
],
"repo": "https://raw.githubusercontent.com/xl2101200/-/main/dt.js",
"icons": [
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg",
"https://raw.githubusercontent.com/xl2101200/-/main/tom/tom.jpg"
],
"script": "https://raw.githubusercontent.com/xl2101200/-/main/dt.js"
},
{
"id": "ysy",
"name": "萤石云",
"keys": [
"ysyhd",
"ysybody",
"cookie",
"txbody",
"ysyhd2",
"ysybody2",
"cookie2",
"txbody2",
"ysyhd3",
"ysybody3",
"cookie3",
"txbody3",
"ysyhd4",
"ysybody4",
"cookie4",
"txbody4"
],
"author": "@YaphetS0903",
"settings": [
{
"id": "ysystatus",
"name": "当前账号",