forked from deezertidal/private
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoxjs.json
9735 lines (9719 loc) · 416 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": "All",
"name": "All-自用合集",
"author": "All Masters",
"icon": "https://avatars.githubusercontent.com/u/539868?v=4",
"apps": [
{
"id": "10010Ck",
"name": "中国联通 Cookie",
"keys": [
"@YaYa_10010.cookie"
],
"author": "@dompling",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/10010.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/10010.png"
]
},
{
"id": "gistBackup",
"name": "gist 备份",
"keys": [
"@gist.token",
"@gist.username"
],
"author": "@dompling",
"icons": [
"https://github.githubassets.com/favicons/favicon.png",
"https://github.githubassets.com/favicons/favicon.png"
],
"descs_html": [
"Token的获取方式:",
"头像菜单->\n Settings ->\n Developer settings ->\n Personal access tokens ->\n Generate new token ->\n 在里面找到 gist 勾选提交"
],
"scripts": [
{
"name": "备份 Gist",
"script": "https://raw.githubusercontent.com/dompling/Script/master/gist/backup.js"
},
{
"name": "从 Gist 恢复",
"script": "https://raw.githubusercontent.com/dompling/Script/master/gist/restore.js"
}
],
"settings": [
{
"id": "@gist.username",
"name": "用户名",
"val": null,
"type": "text",
"placeholder": "github 用户名",
"desc": "必填"
},
{
"id": "@gist.token",
"name": "Personal access tokens",
"val": null,
"type": "text",
"placeholder": "github personal access tokens",
"desc": "必填"
}
]
},
{
"id": "ZXTrains",
"name": "智行火车行程提醒",
"keys": [
"@ZXTrains.travels"
],
"author": "@dompling",
"descs_html": [
"使用智行火车票 app,在未出行中获取该列表。"
],
"repo": "https://github.com/dompling/Script/blob/master/ZXTrians/ZXTrians.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/ZXTrians/ZXTrains.js",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/zxhc.png",
"https://raw.githubusercontent.com/Orz-3/task/master/zxhc.png"
]
},
{
"id": "gov",
"name": "每日健康打卡",
"keys": [
"@gov.body.phone",
"@gov.body.city",
"@gov.body.xzqhdm",
"@gov.body.isContactPatient",
"@gov.body.symptom",
"@gov.body.temperature"
],
"descs_html": [
"小程序:国家政务服务",
"打卡半自动,进入小程序之后会自动打卡上报健康信息",
"城市的编码可使用【<a href=\"https://raw.githubusercontent.com/modood/Administrative-divisions-of-China/master/dist/areas.json\">城市区域</a>】获取对应的数据Code,并按照此脚本注释进行配置。"
],
"settings": [
{
"id": "@gov.body.phone",
"name": "手机号",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "联系方式",
"desc": "必填"
},
{
"id": "@gov.body.city",
"name": "省市区",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "地址",
"desc": "必填"
},
{
"id": "@gov.body.xzqhdm",
"name": "定位城市编码",
"val": "",
"type": "text",
"rows": 2,
"placeholder": "510105",
"desc": "必填"
},
{
"id": "@gov.body.symptom",
"name": "健康状况",
"val": "1",
"type": "text",
"rows": 2,
"placeholder": " 1 没有出现症状",
"desc": "必填"
},
{
"id": "@gov.body.isContactPatient",
"name": "是否接触新冠",
"val": "2",
"type": "text",
"rows": 2,
"placeholder": "2 不确定",
"desc": "必填"
},
{
"id": "@gov.body.temperature",
"name": "体温",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "默认随机上报健康区间体温",
"desc": "非必填"
}
],
"icons": [],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/gov/gov.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/gov/gov.js"
},
{
"id": "zk789",
"name": "自考打卡",
"keys": [
"@zk789.data.userName",
"@zk789.data.sex",
"@zk789.data.mobile",
"@zk789.data.idCard",
"@zk789.data.address",
"@zk789.data.spareuser",
"@zk789.data.spareid",
"@zk789.headers.Referer",
"@zk789.headers.Cookie"
],
"settings": [
{
"id": "@zk789.headers.Cookie",
"name": "Cookie",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "Cookie",
"desc": "必填"
},
{
"id": "@zk789.headers.Referer",
"name": "Referer",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "链接来源",
"desc": "必填"
},
{
"id": "@zk789.data.userName",
"name": "用户名",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "用户名",
"desc": "必填"
},
{
"id": "@zk789.data.address",
"name": "地址",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "地址",
"desc": "必填"
},
{
"id": "@zk789.data.sex",
"name": "性别",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "性别",
"desc": "必填"
},
{
"id": "@zk789.data.idCard",
"name": "身份证",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "身份证",
"desc": "必填"
},
{
"id": "@zk789.data.mobile",
"name": "手机号",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "手机号",
"desc": "必填"
},
{
"id": "@zk789.data.spareuser",
"name": "用户 spareCode",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "spareCode",
"desc": "必填"
},
{
"id": "@zk789.data.spareid",
"name": "用户 ID",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "用户 ID",
"desc": "必填"
}
],
"icons": [
"http://wx.qlogo.cn/mmhead/Q3auHgzwzM7GCsADbkOIE4pOYW0MUa3gojhTV8G5trloMPNWHNHCibg/0",
"http://wx.qlogo.cn/mmhead/Q3auHgzwzM7GCsADbkOIE4pOYW0MUa3gojhTV8G5trloMPNWHNHCibg/0"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/gov/gov.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/gov/gov.js"
},
{
"id": "xiaomiyp",
"name": "小米有品",
"keys": [
"@xiaomiyp.cookie"
],
"icons": [
"https://raw.githubusercontent.com/Orz-3/task/master/xiaomiyp.png",
"https://raw.githubusercontent.com/Orz-3/task/master/xiaomiyp.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/xiaomiyp/xiaomiyp.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/xiaomiyp/xiaomiyp.js"
},
{
"id": "bilibili",
"name": "哔哩哔哩关注中心/番剧监控",
"keys": [
"@bilibili.cookie",
"@BiliBiliMonitor.subscriptions"
],
"icons": [
"https://raw.githubusercontent.com/Orz-3/task/master/bilibili.png",
"https://raw.githubusercontent.com/Orz-3/task/master/bilibili.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/BiliBili/bilibili.cookie.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/BiliBiliMonitor/BiliBiliMonitor.js"
},
{
"id": "DJT",
"name": "毒汤日历",
"keys": [
"@DJT.unid"
],
"icons": [],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/DJT/djt.cookie.js"
},
{
"id": "scriptable",
"name": "桌面组件",
"keys": [
"scriptable"
],
"icons": [
"https://scriptablejs.gitee.io/store/favicon.ico",
"https://scriptablejs.gitee.io/store/favicon.ico"
],
"author": "@dompling",
"repo": ""
},
{
"id": "ql",
"name": "青龙 Cookie 同步",
"keys": [
"@ql.ip",
"@ql.username",
"@ql.password"
],
"settings": [
{
"id": "@ql.ip",
"name": "青龙登陆的域名或IP:端口号",
"val": "",
"type": "text",
"placeholder": "111.21.0.32:5700"
},
{
"id": "@ql.username",
"name": "账号",
"val": "",
"type": "text"
},
{
"id": "@ql.password",
"name": "密码",
"val": "",
"type": "text"
}
],
"icons": [
"https://qinglong.whyour.cn/qinglong.png",
"https://qinglong.whyour.cn/qinglong.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/jd/ql_cookie_sync.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/jd/ql_cookie_sync.js",
"descs_html": [
"青龙 docker 的安装方式请移步 tg 频道",
"青龙 docker 作者仓库:【<a href=\"https://github.com/whyour\">github</a>】",
"青龙 docker 频道:【<a href=\"https://t.me/qiongqiya\">电报频道</a>】"
]
},
{
"id": "JD_Cookies",
"name": "京东多账号 Ck 管理",
"keys": [
"CookiesJD"
],
"descs_html": [
"请勿随意在输入框修改内容,建议通过脚本去获取cookie,若要修改,请按照JSON 格式修改(<a href=\"https://www.bejson.com/json/format\">可使用此JSON校验</a> ,或点击右上角按钮🔘进行校验(如有弹窗提示则为异常JSON))。",
"示例:[{\"userName\":\"jd_xxx\",\"cookie\":\"pt_key=AAJ;pt_pin=jd_xxx;\"},{\"userName\":\"jd_66\",\"cookie\":\"pt_key=AAJ;pt_pin=jd_66;\"}]",
"脚本地址【<a href=\"https://jdsharedresourcescdn.azureedge.net/jdresource/JD_extra_cookie.js\">京东多 CK获取</a>】,并按照此脚本注释进行配置",
"使用方式【<a href=\"https://home.m.jd.com/myJd/newhome.action\">个人中心</a>】获取对应的数据Code",
"注:如与NobyDa的京东cookie重复,建议在此处删除重复的cookie"
],
"settings": [
{
"id": "CookiesJD",
"name": "CK 列表",
"val": "",
"type": "textarea",
"autoGrow": true,
"rows": 8,
"desc": "CK 列表 (JSON 格式)"
}
],
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/jd.png",
"https://raw.githubusercontent.com/Orz-3/task/master/jd.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/jd/JD_extra.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/jd/JD_extra_sign.js"
},
{
"id": "JD_jr_Cookies",
"name": "京东金融领豆",
"keys": [
"@jd_jr.cookies",
"@jd_jr.bodys"
],
"descs_html": [
"请勿随意在输入框修改内容,只能通过脚本去获取cookie,若要修改,请按照JSON 格式修改(<a href=\"https://www.bejson.com/json/format\">可使用此JSON校验</a> ,或点击右上角按钮🔘进行校验(如有弹窗提示则为异常JSON))。",
"仅能修改phoneNumber内容",
"JSON示例:[{phoneNumber: \"13348751678\", username: \"yaya\" }]"
],
"settings": [
{
"id": "@jd_jr.cookies",
"name": "CK 列表",
"val": "",
"type": "textarea",
"autoGrow": true,
"rows": 8,
"desc": "CK 列表 (JSON 格式)"
}
],
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/jd.png",
"https://raw.githubusercontent.com/Orz-3/task/master/jd.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/jd/jd_jr_cookie.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/jd/jd_jr_sign.js"
},
{
"id": "oneSay",
"name": "每天一句",
"keys": [
"@oneSay.mediaImg",
"@oneSay.username"
],
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/calendar.png",
"https://raw.githubusercontent.com/Orz-3/task/master/calendar.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/oneSay/oneSay.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/oneSay/oneSay.js",
"settings": [
{
"id": "@oneSay.username",
"name": "姓名",
"val": null,
"type": "text",
"autoGrow": false,
"rows": 2,
"placeholder": "必填姓名"
},
{
"id": "@oneSay.mediaImg",
"name": "内容媒体图",
"val": null,
"type": "text",
"autoGrow": false,
"rows": 2,
"placeholder": "系统配送图,或者自定义",
"desc": "非必填"
}
]
},
{
"id": "birthday",
"name": "生日倒计时",
"keys": [
"@birthday.mediaImg",
"@birthday.username",
"@birthday.time",
"@birthday.pDefault",
"@birthday.pCycle",
"@birthday.nongli",
"@birthday.eday",
"@birthday.loveWords"
],
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/birthday.png",
"https://raw.githubusercontent.com/Orz-3/task/master/birthday.png"
],
"author": "@dompling",
"repo": "https://github.com/dompling/Script/blob/master/birthdayCountDown/index.js",
"script": "https://raw.githubusercontent.com/dompling/Script/master/birthdayCountDown/index.js",
"settings": [
{
"id": "@birthday.nongli",
"name": "农历",
"val": true,
"type": "boolean"
},
{
"id": "@birthday.loveWords",
"name": "情话",
"val": true,
"type": "boolean"
},
{
"id": "@birthday.username",
"name": "姓名",
"val": null,
"type": "text",
"autoGrow": false,
"rows": 2,
"placeholder": "必填姓名"
},
{
"id": "@birthday.time",
"name": "出生年月",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "必填内容,出身年月格式为:年-月-日。"
},
{
"id": "@birthday.mediaImg",
"name": "内容媒体图",
"val": null,
"type": "text",
"autoGrow": false,
"rows": 2,
"placeholder": "默认取的随机推送图片",
"desc": "非必填"
},
{
"id": "@birthday.eday",
"name": "情侣相识日期",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "相识的日期",
"desc": "非必填"
},
{
"id": "@birthday.pDefault",
"name": "生理期",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "最近一次生理期时间",
"desc": "非必填"
},
{
"id": "@birthday.pCycle",
"name": "生理期区间",
"val": null,
"type": "text",
"rows": 2,
"placeholder": "生理期区间,最近一次生理期开始计算。",
"desc": "非必填;计算不准时,请重填生理期。"
}
]
},
{
"id": "JD_UA",
"name": "自定义京东脚本的UserAgent",
"keys": [
"JDUA"
],
"descs_html": [
"自行抓包京东APP获得,UserAgent类似下面:",
"jdapp;iPhone;9.3.0;14.2;network/4g;Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1"
],
"settings": [
{
"id": "JDUA",
"name": "自定义京东脚本的UserAgent",
"val": "",
"type": "text",
"desc": "不懂不知不会UserAgent的请不要随意填写内容,如需填写使用建议使用京东APP的UserAgent"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/jd.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png"
]
},
{
"id": "JS_UA",
"name": "自定义京东极速版脚本的UserAgent",
"keys": [
"JS_UA"
],
"descs_html": [
"自行抓包京东极速版APP获得,UserAgent类似下面:",
"jdltapp;iPad;3.1.0;14.4;network/wifi;Mozilla/5.0 (iPad; CPU OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1"
],
"settings": [
{
"id": "JS_UA",
"name": "自定义京东极速版脚本的UserAgent",
"val": "",
"type": "text",
"desc": "不懂不知不会UserAgent的请不要随意填写内容,如需填写使用建议使用京东APP的UserAgent"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/jd.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png"
]
},
{
"id": "jd_fruit",
"name": "东东农场",
"keys": ["jd_fruit_inviter"],
"descs_html": [
"请在输入框输入跟你互助的东东农场的好友互助码",
"同一个京东账号的好友邀请码用@隔开,不同京东账号互助码用换行(return按键)隔开。例:<br/>账号1-好友1邀请码@账号1邀请码-好友2邀请码<br/><br/>账号2-好友1邀请码@账号2-好友2邀请码",
"下方输入框给出一个示例,自己使用时删除示例邀请码然后按示例填写(只填邀请码)即可"
],
"settings": [
{
"id": "jdFruitNotify",
"name": "静默运行",
"val": false,
"type": "boolean",
"desc": "运行东东农场脚本时不发出系统通知"
},
{
"id": "jdFruitBeanCard",
"name": "使用水滴换豆卡",
"val": false,
"type": "boolean",
"desc": "使用水滴换豆卡(如果出现限时活动是100g水换20豆,此时比浇水划算,推荐换豆)"
},
{
"id": "jd_fruit_inviter",
"name": "东东农场好友邀请码 列表",
"val": "",
"placeholder": "账号1的好友1邀请码@账号1的好友2邀请码\n\n账号2的好友1邀请码@账号2的好友2邀请码",
"type": "textarea",
"autoGrow": true,
"rows": 8,
"desc": "好友邀请码,同一个京东账号的好友邀请码用@隔开,不同京东账号互助码用换行(return按键)隔开"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_fruit.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdnc_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdnc.png"
]
},
{
"id": "jd_pet",
"name": "东东萌宠",
"keys": ["jd_pet_inviter"],
"descs_html": [
"请在输入框输入跟你互助的东东萌宠的好友互助码",
"同一个京东账号的好友邀请码用@隔开,不同京东账号互助码用换行(return按键)隔开。例:<br/>账号1-好友1邀请码@账号1邀请码-好友2邀请码<br/><br/>账号2-好友1邀请码@账号2-好友2邀请码",
"下方输入框给出一个示例,自己使用时删除示例邀请码然后按示例填写(只填邀请码)即可"
],
"settings": [
{
"id": "jdPetNotify",
"name": "静默运行",
"val": false,
"type": "boolean",
"desc": "运行东东萌宠脚本时不发出系统通知"
},
{
"id": "jd_pet_inviter",
"name": "东东萌宠好友邀请码 列表",
"val": "",
"placeholder": "账号1的好友1邀请码@账号1的好友2邀请码\n\n账号2的好友1邀请码@账号2的好友2邀请码",
"type": "textarea",
"autoGrow": true,
"rows": 8,
"desc": "好友邀请码,同一个京东账号的好友邀请码用@隔开,不同京东账号互助码用换行(return按键)隔开"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_pet.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdmc_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdmc.png"
]
},
{
"id": "jd_plantBean",
"name": "京东种豆",
"keys": ["jd_plantbean_inviter"],
"descs_html": [
"请在输入框输入跟你互助的京东种豆得豆的好友互助码",
"同一个京东账号的好友邀请码用@隔开,不同京东账号互助码用换行(return按键)隔开。例:<br/>账号1-好友1邀请码@账号1邀请码-好友2邀请码<br/><br/>账号2-好友1邀请码@账号2-好友2邀请码",
"下方输入框给出一个示例,自己使用时删除示例邀请码然后按示例填写(只填邀请码)即可"
],
"settings": [
{
"id": "jdPlantBeanNotify",
"name": "静默运行",
"val": true,
"type": "boolean",
"desc": "运行种豆脚本时不发出系统通知"
},
{
"id": "jd_plantbean_inviter",
"name": "京东种豆好友邀请码 列表",
"val": "",
"placeholder": "账号1的好友1邀请码@账号1的好友2邀请码\n\n账号2的好友1邀请码@账号2的好友2邀请码",
"type": "textarea",
"autoGrow": true,
"rows": 8,
"desc": "好友邀请码,同一个京东账号的好友邀请码用@隔开,不同京东账号互助码用换行(return按键)隔开"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_plantBean.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdzd_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdzd.png"
]
},
{
"id": "jd_Joy",
"name": "宠汪汪",
"keys": [],
"settings": [
{
"id": "jdJoyNotify",
"name": "静默运行",
"val": true,
"type": "boolean",
"desc": "运行宠汪汪(jd_joy.js)脚本时不发出系统弹窗通知"
},
{
"id": "jdJoyStealNotify",
"name": "静默运行",
"val": false,
"type": "boolean",
"desc": "运行宠汪汪(jd_joy_steal.js)脚本时不发出系统弹窗通知"
},
{
"id": "joyFeedCount",
"name": "每次喂养数量(默认10g)",
"val": "10",
"type": "radios",
"desc": "每次喂养狗粮克数(默认10g)",
"items": [
{
"key": "0",
"label": "不喂食"
},
{
"key": "10",
"label": "消耗10g"
},
{
"key": "20",
"label": "消耗20g"
},
{
"key": "40",
"label": "消耗40g"
},
{
"key": "80",
"label": "消耗80g"
}
]
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdcww_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdcww.png"
]
},
{
"id": "jd_Joy_Reward",
"name": "宠汪汪积分兑换京豆",
"keys": [],
"settings": [
{
"id": "jdJoyRewardNotify",
"name": "静默运行",
"val": false,
"type": "boolean",
"desc": "开启后成功兑换到京豆也不发出系统弹窗通知"
},
{
"id": "joyRewardName",
"name": "是否兑换京豆",
"val": "1",
"type": "radios",
"desc": "默认开启兑换,如不想兑换可选择不兑换",
"items": [
{
"key": "0",
"label": "不兑换奖品(选择此项将不兑换奖品)"
},
{
"key": "1",
"label": "兑换20京豆"
},
{
"key": "500",
"label": "兑换500京豆"
},
{
"key": "1000",
"label": "兑换1000京豆"
}
]
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_reward.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdcww_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdcww.png"
]
},
{
"id": "jd_Joy_Run",
"name": "宠汪汪邀请助力与赛跑助力",
"keys": [
"jdJoyRunToken",
"jd_joy_run_name",
"jd_joy_invite_pin",
"jd_joy_run_pin",
"jd2_joy_run_name",
"jd2_joy_invite_pin",
"jd2_joy_run_pin"
],
"desc": "宠汪汪的互助码friendPin是京东用户名,不是昵称(可在京东APP->我的->设置查看)。互助码之间用英文逗号隔开,下面给出具体示例,使用时可自行清空重新按格式填写你自己的",
"settings": [
{
"id": "joyRunFlag",
"name": "是否参加赛跑(默认参加)",
"val": true,
"type": "boolean",
"desc": "开启脚本将会为您自动参加赛跑(默认参加双人赛跑)"
},
{
"id": "JOY_TEAM_LEVEL",
"name": "宠汪汪赛跑级别选择",
"val": "2",
"type": "text",
"desc": "参加多少人的赛跑比赛,其中2代表参加双人PK赛,10代表参加10人突围赛,50代表参加50人挑战赛,多账号参加不同级别的赛跑用&符号隔开,例如2&10&50"
},
{
"id": "joyRunNotify",
"name": "宠汪汪赛跑获胜是否通知",
"val": true,
"type": "boolean",
"desc": "宠汪汪赛跑获胜是否通知,默认通知"
},
{
"id": "jd_joy_run_name",
"name": "京东账号一昵称",
"val": "",
"type": "text",
"desc": "京东账号昵称,用于区分自己的京东账号(非必填,建议多个京东账号使用)"
},
{
"id": "jd_joy_invite_pin",
"name": "账号一邀请助力friendPin名单",
"val": "jd_6cd93e613b0e5,被折叠的记忆33",
"type": "text",
"desc": "多个账号使用英文逗号','隔开,最多3个"
},
{
"id": "jd_joy_run_pin",
"name": "账号一赛跑助力friendPin名单",
"val": "jd_6cd93e613b0e5,被折叠的记忆33",
"type": "text",
"desc": "多个账号使用英文逗号','隔开,最多6个"
},
{
"id": "jd2_joy_run_name",
"name": "京东账号二昵称",
"val": "",
"type": "text",
"desc": "京东账号昵称,用于区分自己的京东账号(非必填,建议多个京东账号使用)"
},
{
"id": "jd2_joy_invite_pin",
"name": "账号二邀请助力friendPin名单",
"val": "jd_6cd93e613b0e5,被折叠的记忆33",
"type": "text",
"desc": "多个账号使用英文逗号','隔开,最多3个"
},
{
"id": "jd2_joy_run_pin",
"name": "账号二赛跑助力friendPin名单",
"val": "jd_6cd93e613b0e5,被折叠的记忆33",
"type": "text",
"desc": "多个账号使用英文逗号','隔开,最多6个"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_run.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdcww_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdcww.png"
]
},
{
"id": "jd_MoneyTree",
"name": "京东摇钱树",
"keys": [],
"settings": [
{
"id": "jdMoneyTreeNotify",
"name": "静默运行",
"val": true,
"type": "boolean",
"desc": "运行京东摇钱树脚本时不发出系统弹窗通知"
},
{
"id": "MONEY_TREE_SELL_FRUIT",
"name": "是否卖出金果获得金币",
"val": true,
"type": "boolean",
"desc": "是否卖出金果获得金币,金币具有有效期,默认卖出"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_moneyTree.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdyqs_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdyqs.png"
]
},
{
"id": "jd_Speed",
"name": "京东天天加速",
"keys": [],
"settings": [
{
"id": "jdSpeedNotify",
"name": "静默运行",
"val": true,
"type": "boolean",
"desc": "运行京东天天加速脚本时不发出系统弹窗通知"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_speed.js",
"icons": [
"https://raw.githubusercontent.com/58xinian/icon/master/jdjs_mini.png",
"https://raw.githubusercontent.com/58xinian/icon/master/jdjs.png"
]
},
{
"id": "jdUnsubscribe",
"name": "取关京东店铺和商品",
"keys": [
"jdUnsubscribeStopGoods",
"jdUnsubscribeStopShop"
],
"settings": [
{
"id": "jdUnsubscribeNotify",
"name": "静默运行",
"val": false,
"type": "boolean",
"desc": "运行脚本时不发出系统弹窗通知"
},
{
"id": "jdUnsubscribePageSize",
"name": "取消已关注商品的数量",
"val": 10,
"type": "number",
"desc": "运行一次脚本取消多少个已关注的商品(默认10个,输入0表示不取关)"
},
{
"id": "jdUnsubscribeShopPageSize",
"name": "取消已关注店铺的数量",
"val": 10,
"type": "number",
"desc": "运行一次脚本取消多少个已关注的店铺(默认10个,输入0表示不取关)"
},
{
"id": "jdUnsubscribeStopGoods",
"name": "遇到此商品不再进行取关",
"val": "",
"type": "text",
"desc": "匹配到此处商品后面(包括此商品)不再进行取关(此处内容需去商品详情页长按(自营处)文字拷贝商品信息)"
},
{
"id": "jdUnsubscribeStopShop",
"name": "遇到此店铺不再进行取关",
"val": "",
"type": "text",
"desc": "匹配到此处店铺后面(包括此店铺)的不再进行取关(此处内容请尽量从头开始输入店铺名称)"
}
],
"author": "@lxk0301",
"repo": "https://gitee.com/lxk0301/jd_scripts/tree/master",
"script": "https://gitee.com/lxk0301/jd_scripts/raw/master/jd_unsubscribe.js",
"icons": [
"https://raw.githubusercontent.com/Orz-3/mini/master/Alpha/jd.png",
"https://raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png"
]