forked from yuanteng1234566/Auto-jd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jd_task.json
778 lines (778 loc) · 19.8 KB
/
jd_task.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
{
"name": "京东定时任务",
"desc": "elecV2P 京东定时任务订阅。该订阅仅可用于 elecV2P, 与其他软件并不兼容。相关说明参考: https://github.com/elecV2/elecV2P-dei/tree/master/docs/06-task.md",
"author": "zero205",
"date": "2021-05-15 16:16:30",
"surl": "https://gitee.com/zero205/JD_tencent_scf",
"list": [
{
"name": "京豆变动通知",
"type": "cron",
"time": "0 20 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_bean_change.js"
}
},
{
"name": "领京豆额外奖励",
"type": "cron",
"time": "15 7 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_bean_home.js"
}
},
{
"name": "京东签到",
"type": "cron",
"time": "0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://ghproxy.com/https://raw.githubusercontent.com/NobyDa/Script/master/JD-DailyBonus/JD_DailyBonus.js"
}
},
{
"name": "东东超市兑换奖品",
"type": "cron",
"time": "0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_blueCoin.js"
}
},
{
"name": "口袋书店",
"type": "cron",
"time": "2 8,12,18 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_bookshop.js"
}
},
{
"name": "京东汽车",
"type": "cron",
"time": "15 7 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_car.js"
}
},
{
"name": "京东汽车兑换",
"type": "cron",
"time": "0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_car_exchange.js"
}
},
{
"name": "签到领现金",
"type": "cron",
"time": "5 0,6-23/4 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_cash.js"
}
},
{
"name": "领现金兑换红包",
"type": "cron",
"time": "0,1 0 0 * * 6,7,0,1",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_cash_exchange.js"
}
},
{
"name": "京喜财富岛",
"type": "cron",
"time": "10 8,13,19,22 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_cfd.js"
}
},
{
"name": "京喜财富岛提现",
"type": "cron",
"time": "0-5/1 0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_cfdtx.js"
}
},
{
"name": "摇京豆",
"type": "cron",
"time": "6 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_club_lottery.js"
}
},
{
"name": "疯狂的Joy",
"type": "cron",
"time": "6 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_crazy_joy.js"
}
},
{
"name": "天天提鹅",
"type": "cron",
"time": "15 0,7-23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_daily_egg.js"
}
},
{
"name": "京喜工厂",
"type": "cron",
"time": "20 0,6-23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_dreamFactory.js"
}
},
{
"name": "东东农场",
"type": "cron",
"time": "10 6-18/6 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_fruit.js"
}
},
{
"name": "获取互助码",
"type": "schedule",
"time": "0",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_get_share_code.js"
}
},
{
"name": "东东工厂",
"type": "cron",
"time": "15 0,7-23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jdfactory.js"
}
},
{
"name": "京东赚赚",
"type": "cron",
"time": "15 0,7-23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jdzz.js"
}
},
{
"name": "领金贴",
"type": "cron",
"time": "12 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jin_tie.js"
}
},
{
"name": "京东宠汪汪",
"type": "cron",
"time": "18 0-23/2 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_joy.js"
}
},
{
"name": "京东宠汪汪喂食",
"type": "cron",
"time": "15 0,7-23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_joy_feedPets.js"
}
},
{
"name": "宠汪汪积分兑换奖品",
"type": "cron",
"time": "0 0-16/8 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_joy_reward.js"
}
},
{
"name": "京喜农场",
"type": "cron",
"time": "10 9,12,18 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jxnc.js"
}
},
{
"name": "京喜农场2",
"type": "cron",
"time": "30 10,15,21 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jxnc2.js"
}
},
{
"name": "京东快递签到",
"type": "cron",
"time": "25 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_kd.js"
}
},
{
"name": "京东直播",
"type": "cron",
"time": "10-20/5 12 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_live.js"
}
},
{
"name": "超级直播间红包雨",
"type": "cron",
"time": "0,30,31 20-23/1 18 * *",
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_live_redrain.js"
}
},
{
"name": "京东抽奖机",
"type": "cron",
"time": "2 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_lotteryMachine.js"
}
},
{
"name": "京东摇钱树",
"type": "cron",
"time": "35 0-23/2 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_moneyTree.js"
}
},
{
"name": "京东秒秒币",
"type": "cron",
"time": "12 7 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_ms.js"
}
},
{
"name": "点点券",
"type": "cron",
"time": "23 0,20 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_necklace.js"
}
},
{
"name": "女装盲盒",
"type": "cron",
"time": "20 9,23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_nzmh.js"
}
},
{
"name": "东东萌宠",
"type": "cron",
"time": "16 6-18/6 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_pet.js"
}
},
{
"name": "京东金融养猪猪",
"type": "cron",
"time": "12 0,7-23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_pigPet.js"
}
},
{
"name": "种豆得豆",
"type": "cron",
"time": "6 7-21/2 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_plantBean.js"
}
},
{
"name": "京东排行榜",
"type": "cron",
"time": "6 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_rankingList.js"
}
},
{
"name": "京东全民开红包",
"type": "cron",
"time": "30,35 */3 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_redPacket.js"
}
},
{
"name": "闪购盲盒",
"type": "cron",
"time": "25 8 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_sgmh.js"
}
},
{
"name": "进店领豆",
"type": "cron",
"time": "10 0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_shop.js"
}
},
{
"name": "东东小窝",
"type": "cron",
"time": "18 22 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_small_home.js"
}
},
{
"name": "京东极速版红包",
"type": "cron",
"time": "1 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_speed_redpocke.js"
}
},
{
"name": "京东极速版",
"type": "cron",
"time": "2 7 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_speed_sign.js"
}
},
{
"name": "东东超市",
"type": "cron",
"time": "18 0,7-23/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_superMarket.js"
}
},
{
"name": "赚京豆",
"type": "cron",
"time": "15 0,7,8-10/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_syj.js"
}
},
{
"name": "取关京东店铺商品",
"type": "cron",
"time": "30 23 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_unsubscribe.js"
}
},
{
"name": "京东粉丝互动",
"type": "cron",
"time": "30 8 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_z_fanslove.js"
}
},
{
"name": "健康社区",
"type": "cron",
"time": "30 10-22/3 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_z_health_community.js"
}
},
{
"name": "健康社区收取能量",
"type": "cron",
"time": "30 0,6-23/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_z_health_energy.js"
}
},
{
"name": "京小兑",
"type": "cron",
"time": "35 8 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jxd.js"
}
},
{
"name": "interCenter渠道店铺签到",
"type": "cron",
"time": "0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_monk_inter_shop_sign.js"
}
},
{
"name": "蒙牛有机牧场",
"type": "cron",
"time": "1 7-23/2 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_monk_pasture.js"
}
},
{
"name": "店铺关注有礼",
"type": "cron",
"time": "10 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_monk_shop_follow_sku.js"
}
},
{
"name": "店铺大转盘",
"type": "cron",
"time": "1 8,20 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_monk_shop_lottery.js"
}
},
{
"name": "京东每日红包雨(由sngxpro代管随缘维护)",
"type": "cron",
"time": "1 8-23 * * 1-5",
"running": true,
"job": {
"type": "runjs",
"target": "https://ghproxy.com/https://raw.githubusercontent.com/sngxpro2/jdliveredrain/main/lxk0301_live_redrain.js"
}
},
{
"name": "整点京豆雨",
"type": "cron",
"time": "1 0,6-23/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_super_redrain.js"
}
},
{
"name": "半点京豆雨",
"type": "cron",
"time": "30 20-23/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_half_redrain.js"
}
},
{
"name": "幸运大转盘",
"type": "cron",
"time": "20 10 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_market_lottery.js"
}
},
{
"name": "京东手机狂欢城",
"type": "cron",
"time": "0 0-18/6 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_carnivalcity.js"
}
},
{
"name": "跳跳乐瓜分京豆",
"type": "cron",
"time": "2 0,11,21 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jump.js"
}
},
{
"name": "飞利浦电视成长记",
"type": "cron",
"time": "30 9 * 5,6 *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_adolf_flp.js"
}
},
{
"name": "赢一加新品手机",
"type": "cron",
"time": "28 9 * 5,6 *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_adolf_oneplus.js"
}
},
{
"name": "618大势新品赏",
"type": "cron",
"time": "17 9,20 * 5,6 *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_adolf_newInteraction.js"
}
},
{
"name": "京喜阶梯红包",
"type": "cron",
"time": "35 9,20 * 5,6 *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_adolf_jxhb.js"
}
},
{
"name": "京东超级盒子",
"type": "cron",
"time": "20 9,20 * 5,6 *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_adolf_superbox.js"
}
},
{
"name": "618动物联萌",
"type": "cron",
"time": "35 0,5-23/2 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_zoo.js"
}
},
{
"name": "618动物联萌收集金币",
"type": "cron",
"time": "*/30 0,5-23/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_zooCollect.js"
}
},
{
"name": "家电星推官",
"type": "cron",
"time": "0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_xtg.js"
}
},
{
"name": "家电星推官好友互助",
"type": "cron",
"time": "0 0 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_xtg_help.js"
}
},
{
"name": "金榜创造营",
"type": "cron",
"time": "25 6,22 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_gold_creator.js"
}
},
{
"name": "京喜领88元红包",
"type": "cron",
"time": "8 10,19 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_jxlhb.js"
}
},
{
"name": "新潮品牌狂欢",
"type": "cron",
"time": "13 10 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_mcxhd.js"
}
},
{
"name": "星店长",
"type": "cron",
"time": "26 7,21 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_star_shop.js"
}
},
{
"name": "5G超级盲盒",
"type": "cron",
"time": "0 0,6-23/3 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_mohe.js"
}
},
{
"name": "省钱大赢家之翻翻乐",
"type": "cron",
"time": "25 0,6-23/1 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_big_winner.js"
}
},
{
"name": "京享值PK",
"type": "cron",
"time": "25 0,6-23/6 * * *",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_ddo_pk.js"
}
},
{
"name": "超级无线组队分京豆",
"type": "cron",
"time": "15 6 * * 2",
"running": true,
"job": {
"type": "runjs",
"target": "https://gitee.com/zero205/JD_tencent_scf/raw/main/jd_z_shop_captain.js"
}
}
]
}