-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathlowking.boxjs.json
1202 lines (1202 loc) · 39 KB
/
lowking.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": "lowking.app.sub",
"name": "lowking应用订阅",
"author": "@lowking",
"icon": "https://avatars0.githubusercontent.com/u/33308659?s=460&u=9223074586cb14f2ae7ee0953515f8781ded8be9&v=4",
"repo": "https://github.com/lowking/Scripts/",
"apps": [
{
"id": "lk.qqvip",
"name": "QQ会员成长值签到",
"desc_html": "因为接口失效,列表点赞功能移除,只有签到</br>⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/QQVip/qqVipCheckIn.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"keys": [
"lkQQSignHeaderKey"
],
"settings": [
{
"id": "lkIsEnableLogQQVipCheckIn",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailQQVipCheckIn",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyQQVipCheckIn",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlQQVipCheckIn",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkIsEnableNotifyForGetCookie",
"name": "开启/关闭获取Cookie时的通知",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkIsDeleteAllCookie",
"name": "开启/关闭删除Cookie",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableGetCookieQQVIP",
"name": "开启/关闭获取Cookie",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkQQSignBlockListKey",
"name": "点赞黑名单列表",
"val": "",
"type": "text",
"desc": "数据结构看脚本"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts/blob/master/QQVip/qqVipCheckIn.js",
"script": "https://github.com/lowking/Scripts/blob/master/QQVip/qqVipCheckIn.js?raw=true",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/qqvip.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/qqvip.png"
]
},
{
"id": "lk.wifi.assistant",
"name": "Wi-Fi助手(surge专用)",
"settings": [
{
"id": "lkWifiSsids",
"name": "连接这些SSID直连模式",
"val": "",
"type": "text",
"desc": "填写SSID(数组),如果需要流量直连,请把“cellular”加到数组"
}
],
"keys": [
"lkWifiSsids"
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/WIFI.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/WIFI.png"
]
},
{
"id": "lk.sony.club",
"name": "索尼俱乐部",
"keys": [
"lkSonyClubToken"
],
"settings": [
{
"id": "lkIsEnableLogSonyClub",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailSonyClub",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifySonyClub",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlSonyClub",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkSonyClubToken",
"name": "token",
"val": "",
"type": "text",
"desc": "索尼俱乐部token"
},
{
"id": "lkSonyClubLoginId",
"name": "帐号",
"val": "",
"type": "text",
"desc": ""
},
{
"id": "lkSonyClubPassword",
"name": "密码",
"val": "",
"type": "text",
"desc": ""
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts/blob/master/sony/sonyClub.js",
"script": "https://github.com/lowking/Scripts/blob/master/sony/sonyClub.js?raw=true",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/SONY.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/SONY.png"
]
},
{
"id": "lkBilibiliBangumiMonitor",
"name": "哔哩哔哩番剧监控",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/bilibili/bangumiMonitor.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/bilibili.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/bilibili.png"
],
"keys": [
"lkVmidBilibiliBangumiMonitor",
"lkBilibiliBangumiList0",
"lkBilibiliBangumiList1",
"lkBilibiliBangumiList2",
"lkBilibiliBangumiList3"
],
"settings": [
{
"id": "lkIsEnableLogBilibiliBangumiMonitor",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailBilibiliBangumiMonitor",
"name": "只当有番剧更新了才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyBilibiliBangumiMonitor",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlBilibiliBangumiMonitor",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkBilibiliBangumiPageSize",
"name": "页大小",
"val": 15,
"type": "number",
"desc": "每次请求番剧数量,避免数据太大导致错误"
},
{
"id": "lkBilibiliBangumiLimitNo",
"name": "番剧异常通知限制数量",
"val": 10,
"type": "number",
"desc": "有时候B站番剧会更新数据,导致大量番剧更新,设置一个数字,番剧更新数量超过这个数字不通知"
},
{
"id": "lkBilibiliBangumiFollowStatus",
"name": "追番筛选",
"val": "2",
"type": "radios",
"items": [
{
"key": "0",
"label": "全部"
},
{
"key": "1",
"label": "想看"
},
{
"key": "2",
"label": "在看"
},
{
"key": "3",
"label": "看过"
}
],
"desc": "默认-在看"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/bilibili/bangumiMonitor.js?raw=true"
},
{
"id": "lkGithubMonitorPushTg",
"name": "GitHub 监控(tg通知版)",
"desc_html": "⚠️使用说明</br>详情【<a href='https://raw.githubusercontent.com/lowking/Scripts/master/github/githubMonitor.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/github.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/github.png"
],
"keys": [
"lkGithubMonitorRepo",
"lkGithubMonitorToken"
],
"settings": [
{
"id": "lkGithubMonitorRepo",
"name": "仓库地址",
"val": "[\n\t\t{\n\t\t\t\t\"name\": \"NZW9314 脚本\",\n\t\t\t\t\"url\": \"https://github.com/nzw9314/QuantumultX/tree/master\"\n\t\t},\n\t\t{\n\t\t\t\t\"name\": \"Chavy 脚本\",\n\t\t\t\t\"url\": \"https://github.com/chavyleung/scripts\"\n\t\t},\n\t\t{\n\t\t\t\t\"name\": \"NobyDa\",\n\t\t\t\t\"file_names\": [\"JD-DailyBonus/JD_DailyBonus.js\", \"52pojie-DailyBonus\"],\n\t\t\t\t\"url\": \"https://github.com/NobyDa/Script/tree/master\"\n\t\t}\n]",
"type": "textarea",
"autoGrow": true,
"rows": 5,
"desc": "仓库地址 (JSON 格式)",
"primary": [
"name"
],
"child": [
{
"id": "name",
"name": "描述",
"type": "text"
},
{
"id": "url",
"name": "仓库链接",
"type": "text"
},
{
"id": "file_names",
"name": "文件",
"type": "text"
}
]
},
{
"id": "lkGithubMonitorToken",
"name": "Github Token (可选)",
"val": "784a03feb07989d3339dfa41c7eb41777436cbfa",
"type": "text",
"desc": "Github Token"
},
{
"id": "lkGithubMonitorTgNotifyUrl",
"name": "Tg的通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
}
],
"author": "@Peng-YM, @lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://raw.githubusercontent.com/lowking/Scripts/master/github/githubMonitor.js?raw=true"
},
{
"id": "lkBilibiliPrivilegeReceive",
"name": "哔哩哔哩大会员特权领取",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/bilibili/privilegeReceive.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/bilibili.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/bilibili.png"
],
"keys": [
"lkBilibiliPrivilegeReceiveRequestHeaders"
],
"settings": [
{
"id": "lkIsEnableLogBilibiliPrivilegeReceive",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailBilibiliPrivilegeReceive",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyBilibiliPrivilegeReceive",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlBilibiliPrivilegeReceive",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkBilibiliPrivilegeReceiveRequestHeaders",
"name": "哔哩哔哩大会员特权领取Headers",
"val": "",
"type": "text",
"desc": "哔哩哔哩大会员特权领取Headers"
},
{
"id": "lkIsEnableNotifyForGetCookieBilibiliPrivilegeReceive",
"name": "开启/关闭获取Cookie时的通知",
"val": true,
"type": "boolean",
"desc": "默认开启"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/bilibili/privilegeReceive.js?raw=true"
},
{
"id": "lkPuPuCheckIn",
"name": "朴朴签到",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/pupu/pupuCheckIn.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/pupua.png",
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/pupu.png"
],
"keys": [
"lkPuPuTokenKey",
"lkPuPuRefreshTokenKey"
],
"settings": [
{
"id": "lkIsEnableLogPuPuCheckIn",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailPuPuCheckIn",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyPuPuCheckIn",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlPuPuCheckIn",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkPuPuTokenKey",
"name": "朴朴token",
"val": "",
"type": "text",
"desc": "朴朴token"
},
{
"id": "lkPuPuRefreshTokenKey",
"name": "朴朴refresh_token",
"val": "",
"type": "text",
"desc": "朴朴refresh_token"
},
{
"id": "lkPuPuSec",
"name": "抢券等待至xx秒",
"val": 59,
"type": "number",
"desc": "默认59s"
},
{
"id": "lkPuPuMsec",
"name": "抢券等待至xxx毫秒",
"val": 0,
"type": "number",
"desc": "默认0ms"
},
{
"id": "pupuRunCount",
"name": "抢签到第一并发数",
"val": 2,
"type": "number",
"desc": "默认2"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/pupu/pupuCheckIn.js?raw=true"
},
{
"id": "lkHifiniSignIn",
"name": "hifini签到",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/hifini/hifiniSign.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/hifinisignin-dark.png",
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/hifinisignin.png"
],
"keys": [
"lkHifiniCookieKey"
],
"settings": [
{
"id": "lkIsEnableLogHifiniSignIn",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailHifiniSignIn",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyHifiniSignIn",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlHifiniSignIn",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkHifiniCookieKey",
"name": "hifini cookie",
"val": "",
"type": "text",
"desc": "hifini cookie"
},
{
"id": "lkHifiniIsTakeTheFirst",
"name": "是否抢签到第一",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkHifiniTakeTheFirstCount",
"name": "抢签到第一并发数",
"val": 20,
"type": "number",
"desc": "默认20"
},
{
"id": "lkHifiniSec",
"name": "抢签到等待至xx秒",
"val": 59,
"type": "number",
"desc": "默认59s"
},
{
"id": "lkHifiniMsec",
"name": "抢签到等待至xxx毫秒",
"val": 0,
"type": "number",
"desc": "默认0ms"
},
{
"id": "lkHifiniTimeInterval",
"name": "设定固定时间间隔",
"val": 100,
"type": "number",
"desc": "默认100ms"
},
{
"id": "lkHifiniRunType",
"name": "运行脚本方式",
"val": "1",
"type": "radios",
"items": [
{
"key": "1",
"label": "并发执行"
},
{
"key": "2",
"label": "顺序执行"
},
{
"key": "3",
"label": "固定时间间隔顺序执行"
}
],
"desc": "默认并发执行"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/hifini/hifiniSign.js?raw=true"
},
{
"id": "lkAliYunPanCheckIn",
"name": "阿里云盘签到",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/ali/aliYunPanCheckIn.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/aliYunPana.png",
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/aliYunPan.png"
],
"keys": [
"lkAliYunPanTokenKey",
"lkAliYunPanRefreshTokenKey"
],
"settings": [
{
"id": "lkIsEnableLogAliYunPanCheckIn",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailAliYunPanCheckIn",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyAliYunPanCheckIn",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlAliYunPanCheckIn",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "lkAliYunPanTokenKey",
"name": "阿里云盘token",
"val": "",
"type": "text",
"desc": "阿里云盘token"
},
{
"id": "lkAliYunPanRefreshTokenKey",
"name": "阿里云盘refresh_token",
"val": "",
"type": "text",
"desc": "阿里云盘refresh_token"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/ali/aliYunPanCheckIn.js?raw=true"
},
{
"id": "lkBingPoint",
"name": "Bing积分",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/bing/bingPoint.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/bingPoint.png",
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/bingPoint.png"
],
"keys": [
"bingIsExecUSKey",
"bingNicknameKey",
"bingPointCookieKey",
"bingResetHoursKey",
"bingSearchCookieMobileKey",
"bingSearchCookieKey",
"bingSearchRepeatKey",
"searchRepeatMobileKey",
"bingSearchPcCountKey",
"searchPcAmountKey",
"bingSearchMobileCountKey",
"searchMobileAmountKey",
"bingPointAppTokenKey",
"bingPointAppTokenTypeKey",
"bingPointAppRefreshTokenKey",
"bingPointAppClientIdKey",
"bingCachePointKey",
"bingIsContinueWhenZeroKey"
],
"settings": [
{
"id": "lkIsEnableLogBingPoint",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailBingPoint",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyBingPoint",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlBingPoint",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "bingIsExecUSKey",
"name": "是否执行美区任务",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "bingNicknameKey",
"name": "昵称(随意设置)",
"val": "",
"type": "text",
"desc": ""
},
{
"id": "bingResetHoursKey",
"name": "Bing每日任务重置时间",
"val": 8,
"type": "number",
"desc": "写小时数,默认:8"
},
{
"id": "bingPointCookieKey",
"name": "Bing积分cookie",
"val": "",
"type": "text",
"desc": "Bing积分cookie"
},
{
"id": "bingSearchCookieMobileKey",
"name": "Bing每日搜索cookie(移动端)",
"val": "",
"type": "text",
"desc": "请使用手机打开https://cn.bing.com/search?q=test抓去对应请求的cookie"
},
{
"id": "bingSearchCookieKey",
"name": "Bing每日搜索cookie(PC)",
"val": "",
"type": "text",
"desc": "请使用电脑打开https://cn.bing.com/search?q=test抓去对应请求的cookie"
},
{
"id": "bingSearchRepeatKey",
"name": "Bing每日搜索重复执行校验日期存储(PC&Edge)",
"val": "",
"type": "text",
"desc": ""
},
{
"id": "searchRepeatMobileKey",
"name": "Bing每日搜索重复执行校验日期存储(移动端)",
"val": "",
"type": "text",
"desc": ""
},
{
"id": "bingSearchPcCountKey",
"name": "Bing每日搜索次数记录(PC)",
"val": 0,
"type": "number",
"desc": ""
},
{
"id": "searchPcAmountKey",
"name": "Bing每日搜索次数上限(PC)",
"val": 10,
"type": "number",
"desc": ""
},
{
"id": "bingSearchMobileCountKey",
"name": "Bing每日搜索次数记录(移动端)",
"val": 0,
"type": "number",
"desc": ""
},
{
"id": "searchMobileAmountKey",
"name": "Bing每日搜索次数上限(移动端)",
"val": 10,
"type": "number",
"desc": ""
},
{
"id": "bingPointAppTokenKey",
"name": "Bing App token",
"val": "",
"type": "text",
"desc": "请打开bing app获取token"
},
{
"id": "bingPointAppTokenTypeKey",
"name": "Bing App token type",
"val": "",
"type": "text",
"desc": "请打开bing app获取"
},
{
"id": "bingPointAppRefreshTokenKey",
"name": "Bing App refresh_token",
"val": "",
"type": "text",
"desc": "请打开bing app重新登录获取refresh_token"
},
{
"id": "bingPointAppClientIdKey",
"name": "Bing App client_id",
"val": "",
"type": "text",
"desc": "请打开bing app重新登录获取client_id"
},
{
"id": "bingCachePointKey",
"name": "缓存当前积分,用于计算增值",
"val": 0,
"type": "number",
"desc": ""
},
{
"id": "bingIsContinueWhenZeroKey",
"name": "缓存本次执行积分的增量(不懂不需要改)",
"val": 1,
"type": "number",
"desc": "为0时(积分没增加),不再执行搜索,避免不必要的请求"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/bing/bingPoint.js?raw=true",
"script_timeout": 180
},
{
"id": "lkJumpPrice",
"name": "Jump游戏价格监控",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/jump/jumpPrice.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/jump.png",
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/jump.png"
],
"keys": [
"jumpHeaderKey",
"jumpDifferenceLowestPercentp",
"jumpCountry"
],
"settings": [
{
"id": "lkIsEnableLogJumpPrice",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailJumpPrice",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyJumpPrice",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlJumpPrice",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如:https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "jumpDifferenceLowestPercentp",
"name": "过滤 史低折扣-当前折扣 <= 该值的游戏",
"val": 0.15,
"type": "number",
"desc": "写小数,默认:0.15,如:0.8-0.7<=0.15。避免一直等史低,错过差一点史低的价格"
},
{
"id": "jumpCountry",
"name": "监控区服",
"val": "Steam国区,日本,美国",
"type": "text",
"desc": "要监控哪些区服,可以先运行一次看看日志。默认值:Steam国区,日本,美国"
}
],
"author": "@lowking",
"repo": "https://github.com/lowking/Scripts",
"script": "https://github.com/lowking/Scripts/blob/master/jump/jumpPrice.js?raw=true",
"script_timeout": 5
},
{
"id": "lkZzz",
"name": "绝区零",
"desc_html": "⚠️使用说明</br>详情【<a href='https://github.com/lowking/Scripts/blob/master/mihoyo/zzz.js?raw=true'><font class='red--text'>点我查看</font></a>】",
"icons": [
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/zzz.png",
"https://raw.githubusercontent.com/lowking/Scripts/master/doc/icon/zzz.png"
],
"keys": [
"zzzUidKey",
"zzzCookieKey",
"zzzCloudGameCookieKey",
"zzzComboTokenKey",
"zzzDfpKey",
"zzzBbsCookieKey",
"appVersionKey",
"salt6xKey",
"saltK2Key"
],
"settings": [
{
"id": "lkIsEnableLogZzz",
"name": "开启/关闭日志",
"val": true,
"type": "boolean",
"desc": "默认开启"
},
{
"id": "lkNotifyOnlyFailZzz",
"name": "只当执行失败才通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkIsEnableTgNotifyZzz",
"name": "开启/关闭Telegram通知",
"val": false,
"type": "boolean",
"desc": "默认关闭"
},
{
"id": "lkTgNotifyUrlZzz",
"name": "Telegram通知地址",
"val": "",
"type": "text",
"desc": "Tg的通知地址,如: https://api.telegram.org/bot-token/sendMessage?chat_id=-100140&parse_mode=Markdown&text="
},
{
"id": "zzzOpenUrlKey",
"name": "点击跳转链接",
"val": "mihoyobbs://webview?link=https%3A%2F%2Fact.mihoyo.com%2Fbbs%2Fevent%2Fsignin%2Fzzz%2Fe202406242138391.html%3Fact_id%3De202406242138391%26bbs_auth_required%3Dtrue%26bbs_presentation_style%3Dfullscreen",
"type": "text",
"desc": "点击跳转链接"
},
{
"id": "zzzUidKey",
"name": "绝区零Uid",
"val": "",
"type": "text",
"desc": "填写游戏内的uid"
},
{
"id": "zzzCookieKey",
"name": "日常签到cookie",
"val": "",
"type": "text",
"desc": ""
},
{
"id": "zzzSignInCountDownAmountKey",
"name": "n次执行之后才进行日常签到",
"val": 0,
"type": "number",
"desc": "n次执行之后才进行日常签到"
},
{
"id": "zzzDfpKey",
"name": "设备指纹",
"val": "",
"type": "text",
"desc": "设备指纹"
},
{
"id": "zzzBbsCookieKey",
"name": "米游社cookie",
"val": "",
"type": "text",
"desc": "米游社cookie"
},
{
"id": "zzzCloudGameCookieKey",
"name": "绝区零云游戏cookie",
"val": "",
"type": "text",
"desc": "绝区零云游戏cookie"
},
{
"id": "zzzComboTokenKey",
"name": "绝区零云游戏combo_token",
"val": "",
"type": "text",
"desc": "绝区零云游戏combo_token"
},
{
"id": "zzzBbsSignInCountDownAmountKey",
"name": "n次执行之后才进行打卡",
"val": 0,
"type": "number",
"desc": "n次执行之后才进行打卡"
},
{
"id": "appVersionKey",
"name": "米游社API版本",
"val": "2.71.1",
"type": "text",
"desc": "米游社API版本"
},
{
"id": "salt6xKey",
"name": "salt 6x",
"val": "t0qEgfub6cvueAPgR5m9aQWWVciEer7v",
"type": "text",
"desc": "t0qEgfub6cvueAPgR5m9aQWWVciEer7v"
},