-
Notifications
You must be signed in to change notification settings - Fork 70
/
quantumult.conf
1012 lines (719 loc) · 74.8 KB
/
quantumult.conf
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
# Sample Quantumult Configuration
#
# Line started with ”;“ or ”#“ or ”//“ shall be comments.
# 以 ”;“ 或 ”#“ 或 ”//“ 开头的行为注释行。
#
# SS-URI scheme can be found at https://shadowsocks.org/en/spec/SIP002-URI-Scheme.html
#
# Quantumult uses HEAD method send HTTP request to the server_check_url to test the proxy‘s status, the results should be two latencies, the first one is TCP handshake to the proxy server, the second one is the total time that Quantumult successfully received the HTTP response from the server_check_url. The lightning icon means that the TCP fast open is successful. If the server in section [server_local] or section [server_remote] has its own server_check_url, its own server_check_url will be used instead of the server_check_url in section [general].
#
# Quantumult 使用 HTTP HEAD 方法对测试网址(server_check_url)进行网页响应性测试(测试结果为通过该节点访问此网页获得响应所需要的时间),来确认节点的可用性。
# Quantumult 界面中的延迟测试方式均为网页响应性测试,显示的最终延迟均为通过对应节点访问测试网页获得响应所需要时间。
#
# The dns_exclusion_list contains the domains that disabled the placeholder IP(240.*), domains that are not in the dns_exclusion_list all have placeholder IP enabled and have turned on the resolve-on-remote setting.
#
# The udp_whitelist contains the destination UDP port, empty means all the ports are in udp_whitelist. UDP packtes(through Quantumult tunnel interface) with destination ports that are not in the udp_whitelist will be dropped. This setting has nothing to do with the policy and has nothing to do with the proxy(server) port either.
#
# The traffic to excluded_routes will not be handled by Quantumult. It is better to reboot your device after modification.
#
[general]
;server_check_url=http://www.google.com/server_check_url=http://bing.com/
dns_exclusion_list = *.cmpassport.com, *.jegotrip.com.cn, *.icitymobile.mobi, id6.me, *.icitymobile.mobi, *.pingan.com.cn, *.cmbchina.com, *.localnetwork.uop, mfs.ykimg.com*.ttf
geo_location_checker=http://ip-api.com/json/?lang=zh-CN, https://raw.githubusercontent.com/Orz-3/QuantumultX/master/IP.js
resource_parser_url=https://raw.githubusercontent.com/KOP-XIAO/QuantumultX/master/Scripts/resource-parser.js
profile_img_url=https://raw.githubusercontent.com/Orz-3/mini/none/qikuo.png
#
# The DNS servers fetched from current network will always be used for better performance.
# The result of query will only be used for evaluating filter or connecting through direct policy, when connecting through server the result will not be used and Quantumult will never know the destination IP of related domain.
# Specially directly set 127.0.0.1 for a domain is not allowed in here. if you want some domain(eg: example.com) to be 127.0.0.1, just add ”host, example.com, reject“ to the ”filter_local“ section. The reject action will return DNS response with 127.0.0.1 to the query.
#
[dns]
server=114.114.114.114
server=223.5.5.5
server=119.29.29.29
server=8.8.8.8
server=203.196.0.6
server=1.1.1.1
;server=/example0.com/system
;server=/example1.com/8.8.4.4
;server=/*.example2.com/223.5.5.5
;server=/example4.com/[2001:4860:4860::8888]:53
;address=/example5.com/192.168.16.18
;address=/example6.com/[2001:8d3:8d3:8d3:8d3:8d3:8d3:8d3]
#
# static policy points to the server in candidates you manually selected.
# available policy points to the first available server in candidates based on server_check_url(concurrent url latency test will be immediately launched when the policy has been triggered and the policy result is unavailable. If no network request is taking the policy at that time, that means the policy is in the idle state and the test won’t be launched even if the server is down. At that time you can update the server status by manually launching the test, but it doesn‘t make any sense).
# round-robin policy points to the next server in candidates for next connection.
# ssid policy points to the server depending on the network environment.
#
[policy]
url-latency-benchmark=AVA, server-tag-regex=HK|香港, check-interval=600, tolerance=0, img-url=circle.system
static=新加坡, server-tag-regex=(?=.*(新加坡|狮城|SG|(?i)Singapore))^((?!(专线|手游|游戏|(?i)IPLC|IEPL|game)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/SG.png
static=美国, server-tag-regex=(?=.*(美国|美國|US|(?i)States|American))^((?!(专线|手游|游戏|(?i)IPLC|IEPL|game)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/US.png
static=日本, server-tag-regex=(?=.*(日本|JP|(?i)Japan))^((?!(专线|手游|游戏|(?i)IPLC|IEPL|game)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/JP.png
static=韩国, server-tag-regex=(?=.*(韩国|韓國|南朝鲜|KR|(?i)Korean))^((?!(专线|手游|游戏|(?i)IPLC|IEPL|game)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/KR.png
static=香港, server-tag-regex=(?=.*(香港|HK|(?i)Hong))^((?!(专线|手游|游戏|(?i)IPLC|IEPL|game)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/HK.png
static=台湾, server-tag-regex=(?=.*(台湾|台灣|TW|(?i)Taiwan))^((?!(专线|手游|游戏)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/TW.png
static=特殊, server-tag-regex=^((?!(专线|手游|游戏|香港|台湾|日本|新加坡|美国|韩国|狮城|南朝鲜|US|SG|JP|KR|HK|TW|台灣|美國|韓國|獅城|账号|试用|流量|电报|网址|最新|域名|剩余|(?i)IPLC|IEPL|game|States|American|Singapore|Japan|Korea|Hong|Taiwan|data|date|website)).)*$, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/UN.png
static=IPLC, server-tag-regex=(手游|游戏|专线|(?i)IPLC|IEPL|game), img-url=https://raw.githubusercontent.com/Orz-3/mini/master/IPLC.png
static=苹果服务, direct, 美国, 香港, proxy, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Apple.png
static=全球加速, proxy, 美国, 新加坡, 日本, 韩国, 香港, 台湾, 特殊, IPLC, direct, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Global.png
static=港台番剧, direct, 香港, 台湾, proxy, 中国-台湾 IEPL HiNet固接 A01 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A02 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A03 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A04 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A05 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A06 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A07 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A08 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A09 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A10 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A11 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A12 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A13 Netflix 动画疯, 中国-台湾 IEPL HiNet固接 A14 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A01 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A02 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A03 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A04 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A05 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A06 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A08 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A09 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A10 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A07 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A11 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A12 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A13 Netflix 动画疯, 中国-台湾 IPLC 台湾固网 A14 Netflix 动画疯, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/StreamingSE.png
static=国际媒体, proxy, 美国, 新加坡, 日本, 韩国, 香港, 台湾, 特殊, direct, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Streaming.png
static=声田音乐, proxy, 美国, 香港, 日本, direct, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Spotify.png
static=网飞影视, proxy, 新加坡, 香港, 台湾, direct, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Netflix.png
static=电报代理, proxy, direct, 新加坡, IPLC, AVA, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Telegram.png
static=黑白名单, proxy, direct, 美国, 新加坡, 日本, 韩国, 香港, 台湾, 特殊, IPLC, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Final.png
# 静态策略(static)
;static=policy-name-1, Sample-A, Sample-B, Sample-C, img-url=http://example.com/icon.png
# 健康策略(available)
;available=健康
# 负载均衡(round-robin)
#round-robin=policy-name-3
# SSID 改变某个 Wi-Fi 下的策略,比 ssid_suspended_list 更灵活
;ssid=policy-name-4, Sample-A, Sample-B, LINK_22E171:Sample-B, LINK_22E172:Sample-C
;static=policy-name-1, Sample-A, Sample-B, Sample-C, img-url=http://example.com/icon.png
;available=policy-name-2, Sample-A, Sample-B, Sample-C
;round-robin=policy-name-3, Sample-A, Sample-B, Sample-C
;ssid=policy-name-4, Sample-A, Sample-B, LINK_22E171:Sample-B, LINK_22E172:Sample-C
#
# Params ”tag“ and ”enabled“ are optional.
# The default sync interval for all kinds of remote resources is 24*60*60 seconds.
#
[server_remote]
https://losadhwselfff2332dasd.xyz/link/qSY8ENq6c1pdXWhp?sub=1, tag=薯条, update-interval=86400, opt-parser=true, enabled=true
;https://raw.githubusercontent.com/crossutility/Quantumult-X/master/server.txt, tag=Sample-01
;https://raw.githubusercontent.com/crossutility/Quantumult-X/master/server-complete.txt, tag=Sample-02, as-policy=static, img-url=http://example.com/icon.png, enabled=false
#
# Params ”tag“, ”force-policy“ and ”enabled“ are optional.
# When there is a force-policy, then the policy in filter of remote resource will be ignored and the force-policy will be used.
#
[filter_remote]
https://raw.githubusercontent.com/GPC-debug/qx-1/master/QuantumultX/Filter/AsianMedia.txt, force-policy=🇨🇳 Taiwan, update-interval=86400, opt-parser=false, enabled=false
#分流订阅
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Unbreak.list, tag=规则修正, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Guard/Advertising.list, tag=广告拦截, force-policy=reject, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/AdRule.list, tag=广告拦截, force-policy=reject, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Guard/Privacy.list, tag=隐私保护, force-policy=reject, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Guard/Hijacking.list, tag=运营劫持, force-policy=reject, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Extra/Telegram/Telegram.list, tag=电报代理, force-policy=电报代理, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/StreamingMedia/Music/Spotify.list, tag=声田音乐, force-policy=声田音乐, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/StreamingMedia/Video/Netflix.list, tag=网飞影视, force-policy=网飞影视, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/StreamingMedia/Video/TikTok.list, tag=海外抖音, force-policy=国际媒体, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/StreamingMedia/Video/Bahamut.list, tag=动画疯, force-policy=台湾, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/StreamingMedia/Streaming.list, tag=国际媒体, force-policy=国际媒体, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/StreamingMedia/StreamingSE.list, tag=港台番剧, force-policy=港台番剧, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Global.list, tag=全球加速, force-policy=全球加速, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Extra/Apple/AppStoreConnect.list, tag=苹果服务, force-policy=苹果服务, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Extra/Apple/AppStore.list, tag=苹果服务, force-policy=苹果服务, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/Extra/Apple/TestFlight.list, tag=苹果服务, force-policy=苹果服务, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/DivineEngine/Profiles/master/Quantumult/Filter/China.list, tag=国内网站, force-policy=direct, update-interval=86400, opt-parser=false, enabled=true
#
# Params ”tag“ and ”enabled“ are optional.
#
[rewrite_remote]
https://gitee.com/lxk0301/jd_scripts/raw/master/QuantumultX/lxk0301_cookies.conf, tag=jdcookies, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/zZPiglet/Task/master/zhihu.conf, tag=知乎, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/elecV2/QuantumultX-Tools/master/dianx/dianx.cookie.conf, tag=电信金币兑换, update-interval=86400, opt-parser=false, enabled=true
https://gitee.com/chavyleung/scripts/raw/master/box/rewrite/boxjs.rewrite.quanx.tf.conf, tag=BoxJs, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/eHpo1/Rules/master/QuantumultX/Rewrite.txt, tag=eHpo1去广告, update-interval=86400, opt-parser=false, enabled=true
https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Q-Search_All_in_one.conf, tag=Q-Search, enabled=true
https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Get_Cookie_Remote.conf, tag=cookies, update-interval=86400, opt-parser=true, enabled=false
https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Js.conf#out=jd_price.js, tag=脚本, update-interval=86400, opt-parser=true, enabled=true
https://raw.githubusercontent.com/songyangzz/QxSrcipts/master/Js_local_WorkingCopy.conf, update-interval=86400, opt-parser=false, enabled=false
https://raw.githubusercontent.com/songyangzz/QxSrcipts/master/Get_Cookie_New.conf, update-interval=86400, opt-parser=false, enabled=false
https://raw.githubusercontent.com/ConnersHua/Profiles/master/Quantumult/X/Rewrite.conf, update-interval=86400, opt-parser=false, enabled=false
;https://raw.githubusercontent.com/crossutility/Quantumult-X/master/sample-import-rewrite.txt, tag=Sample, enabled=true
#
# Only obfs=http, obfs=ws, obfs=wss can have optional ”obfs-uri“ field.
# When using obfs=ws and obfs=wss the server side can be deployed by v2ray-plugin with mux = 0 or by v2ray-core.
# The obfs plugin tls1.2_ticket_auth has one more RTT than tls1.2_ticket_fastauth and obfs tls, you’d better use tls1.2_ticket_fastauth instead.
# The method chacha20-ietf-poly1305 and chacha20-poly1305 have the same effect in VMess configuration.
#
[server_local]
[filter_local]
host, www.appsigns.cn, reject
host-keyword, twitter, 美国
host, jk.owhasqa.cn, direct
host, jk.xgrruyx.cn, direct
host, jk.jppadjz.cn, direct
host, alogs.umengcloud.com, reject
host, alogs.umeng.com, reject
host, wfd.netease.im, direct
host, m.pearkin.com, direct
host, hi.ssrcf.top, proxy
host, liking.my10api.com, direct
host, t.tiktok.com, proxy
host, pull-flv-l1-mus.pstatp.com, proxy
host, 30482911-9230s7b886e2f.rc03.oray.com, direct
;host, mesu.apple.com, reject
;host, appldnld.apple.com, reject
;host, swscan.apple.com, reject
;host, xp.apple.com, reject
;host, gdmf.apple.com, reject
;user-agent, ?abc*, proxy
;host, www.google.com, proxy
;host-keyword, adsite, reject
;host-suffix, googleapis.com, proxy
geoip, cn, direct
final, 黑白名单
IP-CIDR, 203.119.144.0/23, REJECT, no-resolve
IP-CIDR, 203.119.175.0/24, REJECT, no-resolve
IP-CIDR, 106.11.162.0/24, REJECT, no-resolve
IP-CIDR, 47.102.83.0/24, REJECT, no-resolve
#
# The ”reject“ returns HTTP status code 404 with no content.
# The ”reject-200“ returns HTTP status code 200 with no content.
# The ”reject-img“ returns HTTP status code 200 with content of 1px gif.
# The ”reject-dict“ returns HTTP status code 200 with content of empty json object.
# The ”reject-array“ returns HTTP status code 200 with content of empty json array.
# The ”request-header“ works for all the http headers not just one single header, so you can match two or more headers including CRLF in one regular expression.
# The length and encoding related HTTP header fields will be automatically processed by Quantumult if the ”rewrite“ is body related, so you should not handle them by yourself. The max supported response size is 256kB(decompressed) for response-body and script-response-body.
# When using javascript in rewrite, you can use those objects: $request, $response, $notify(title, subtitle, message), console.log(message) and Quantumult‘s built-in objects all have prefix ”$“.
# Supports: $request.scheme, $request.method, $request.url, $request.path, $request.headers, $response.statusCode, $response.headers, $response.body
# The $notify(title, subtitle, message) will post iOS notifications if Quantumult notification has been enabled.
# The console.log(message) will output logs to Quantumult log file if the log level is ”debug“.
# The scripts for script-response-body and script-echo-response should be saved in local ”On My iPhone - Quantumult X - Scripts“. Samples can be found at https://github.com/crossutility/Quantumult-X
#
[rewrite_local]
https://lzkj-isv.isvjcloud.com/wxGameActivity/gameOverRecord url request-body score=\d+ request-body score=6000
https:\/\/wq\.jd\.com\/bases\/jssdk\/GetWxJsApiSign url script-request-header https://raw.githubusercontent.com/shylocks/Loon/main/jd_wechat_sign.js
^https:\/\/raw\.githubusercontent\.com\/LXK9301\/jd_scripts\/ url 302 https://gitee.com/lxk0301/jd_scripts/raw/
https://e.abchina.com/tj/apps/mbank/jtyl-center/api/activity/getActivityListPage - script-request-body tt.js
#企鹅读书获取更新body
https:\/\/mqqapi\.reader\.qq\.com\/log\/v4\/mqq\/track - script-request-body https://raw.githubusercontent.com/ziye12/JavaScript/master/Task/qqreads.js
#企鹅读书获取时长cookie
https:\/\/mqqapi\.reader\.qq\.com\/mqq\/addReadTimeWithBid? - script-request-header https://raw.githubusercontent.com/ziye12/JavaScript/master/Task/qqreads.js
https://ios.baertt.com/v5/article/complete.json - script-request-body songyangzz/zqgetbody.js
http://101.201.57.179/kawayi/checkActive.php?userName= url script-response-body kawayi.js
https://xeq1kjnhr\.m\.jd\.com/static/index\.html url script-response-body https://raw.githubusercontent.com/ZhiYi-N/Loon/master/jd_hd.js
^https:\/\/draw\.jdfcloud\.com\/\/pet\/enterRoom\/h5\?invitePin=.*(&inviteSource=task_invite&shareSource=\w+&inviteTimeStamp=\d+&openId=\w+)?&reqSource=weapp|^https:\/\/draw\.jdfcloud\.com(\/mirror)?\/\/pet\/helpFriend\?friendPin url script-request-header https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_help.js
^https:\/\/vipapi\.jxedt\.com\/store\/checkRights - script-response-body https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Script/jxydt.js
http:\/\/api\.porn9\.me\/index\.php\/v1\/User\/user_center url script-response-body 91p.js
https:\/\/glados\.rocks\/api\/user\/status url script-request-header https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/glados.js
^https:\/\/commerce-api\.faceu\.mobi\/commerce\/v1\/subscription\/price_list url reject-200
#饿了么
;^https:\/\/h5\.ele\.me\/restapi\/eus\/v\d\/current_user$ url script-request-header songyangzz/elem/elemGetCookies-2.js
#威锋论坛获取cookie
;^https:\/\/(www\.)?feng\.com\/?.? url script-request-header nzw9314/chavyleung/feng/feng.cookie.js
(?<=wxid=)\d+ - 307 2088802419448158
#qq
#港区
;(?<=version_code=)\d{1,}.\d{1}\.\d{1} url 307 14.0.0
(?<=(carrier|account|sys|sim)_region=)CN url 307 JP
#ulike 轻颜相机
#苏宁
#buyhack
#^https:.*\/\/buy\.itunes\.apple\.com\/verifyReceipt$ url script-response-body JS/verify_receipt.js
#https:\/\/p.+-buy\.itunes\.apple\.com\/WebObjects\/MZFinance.woa\/wa\/inAppRegrantPurchaseHistory url script-response-body JS/rollcappur.js
#tiktok
;(?<=(carrier|account|sys)_region=)CN url 307 JP
;(?<=app_version=)\d{1,}.\d{1}\.\d{1} url 307 8.0.0
(?<=version_code=)14\.2\.0 url 307 13.4.0
;(?<=app_version=)14\.7\.0 url 307 8.0.0
;(?<=version_code=)\d{1,}.\d{1}\.\d{1} url 307 8.0.0
# 内购解锁
;^http://example\.com/resource1/1/ url reject
;^http://example\.com/resource1/2/ url reject-img
;^http://example\.com/resource1/3/ url reject-200
;^http://example\.com/resource1/4/ url reject-dict
;^http://example\.com/resource1/5/ url reject-array
;^http://example\.com/resource2/ url 302 http://example.com/new-resource2/
;^http://example\.com/resource3/ url 307 http://example.com/new-resource3/
#^http://example\.com/resource4/ url request-header (\r\n)User-Agent:.+(\r\n) request-header $1User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1)
;^http://example\.com/resource5/ url response-body ”info“:\[.+\],”others“ response-body ”info“:[],”others“
;^http://example\.com/resource6/ url script-response-body script.js
;^http://example\.com/resource7/ url script-echo-response script-echo.js
[mitm]
hostname = raw.githubusercontent.com, wq.jd.com, mqqapi.reader.qq.com, ios.baertt.com, -*.tiktokv.com, 101.201.57.179, xeq1kjnhr.m.jd.com, app.yusys.com.cn, 192.168.0.1, glados.rocks, -*.taobao.com, 8.8.8.8, ibreak.yourepo.com, eu.hotbrainapp.com, alogs.umengcloud.com, alogs.umeng.com, cellapp.cn, -*api.weibo.cn, -*weibo.cn, -*weibo.com, www.patreon.com, api.0se9.com, 222.161.213.249, bcd3a487b3.320.io, apt.cydia.love, keji.sc2yun.com, -music.163.com, apt.cydiami.com, *.faceu.mobi, xz.glodon.com, *.bybutter.com, m.wegame.com.cn, qun.qzone.qq.com, dida365.com, ticktick.com, -aweme*.snssdk.com, -*.amemv.com,lzkj-isv.isvjcloud.com
passphrase = 0C3C945A
p12 = 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
;passphrase =
;p12 =
;skip_validating_cert = false
;force_sni_domain_name = false
;empty_sni_enabled = false
;hostname = *.example.com, *.sample.com
# cookie获取专用,仅获取cookie时使用
[task_local]
20 8,12 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_newYearMoney.js, tag=京东压岁钱, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=true
0 0 9,12,16,20 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_newYearMoney_lottery.js, tag=京东压岁钱抢百元卡, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=true
0 * * * * https://storage.googleapis.com/jd_live/jd_opencard.js, tag=开卡, enabled=false
0 0-18/6 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_818.js, tag=京东手机狂欢城, enabled=true
5 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_xg.js, tag=小鸽有礼, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_xg.jpg, enabled=true
30 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_xgyl.js, tag=小鸽有礼2, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_xgyl.png, enabled=true
0 0,6,12,18 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_5g.js, tag=5G狂欢城, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=true
1 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_mh.js, tag=盲盒抽京豆, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_mh.jpg, enabled=true
10 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_ms.js, tag=京东秒秒币, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_ms.jpg, enabled=true
15 9,21 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_festival.js, tag=京东手机年终奖, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_festival2.jpg, enabled=true
0 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_coupon.js, tag=源头好物红包, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_coupon.jpg, enabled=false
20 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_super_box.js, tag=京东超级盒子, enabled=true
30,31 20-23/1 28 1 * https://raw.githubusercontent.com/Tartarus2014/Script/master/jd_live_redrain.js, tag=超级直播间红包雨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_live_redrain2.jpg, enabled=true
30,31 20-23/1 28 1 * http://qnn9kdmd1.hn-bkt.clouddn.com/jd_live_redrain.js, tag=超级直播间红包雨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_live_redrain2.jpg, enabled=true
0,1 19-21/1 * * * https://raw.githubusercontent.com/Tartarus2014/Script/master/jd_live_redrain2.js, tag=直播间红包雨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_live_redrain.jpg, enabled=true
30,31 12-23/1 * * * https://raw.githubusercontent.com/Tartarus2014/Script/master/jd_live_redrain_half.js, tag=半点红包雨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_live_redrain_half.jpg, enabled=true
#年货直播红包雨
0 0,9,11,13,15,17,19,20,21,23 3,5,20-30/1 1,2 * https://raw.githubusercontent.com/Tartarus2014/Script/master/jd_live_redrain_nian.js, tag=年货直播红包雨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_live_redrain_nian.jpg, enabled=true
0 0,9,11,13,15,17,19,20,21,22,23 * * * https://raw.githubusercontent.com/Tartarus2014/Script/master/jd_live_redrain_offical.js, tag=官方号直播红包雨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_live_redrain_offical.jpg, enabled=true
0 0 0 * * * blue1.js, tag=超市1, img-url=bookmark.fill.system, enabled=false
0 0 0 * * * blue2.js, tag=超市2, img-url=bookmark.fill.system, enabled=true
0 0 0 * * * blue3.js, tag=超市3, img-url=bookmark.fill.system, enabled=true
0,1,2 0,8,16 * * * joy1.js, tag=宠汪汪1, enabled=false
10-30/1 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_immortal_answer.js, tag=京东神仙书院答题, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=false
20 8 * * * https://raw.githubusercontent.com/i-chenzhe/qx/main/jd_dati.js, tag=京东神仙书院答题, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=false
0,1,2 0,8,16 * * * joy2.js, tag=宠汪汪2, enabled=false
0 9,12,18 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_jxnc.js, tag=京喜农场, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxnc.png, enabled=true
0 * * * * https://raw.githubusercontent.com/shylocks/Loon/main/jd_friend.js, tag=joy, enabled=false
#闪购盲盒
20 0,2 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_sgmh.js, tag=闪购盲盒, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_sgmh.png, enabled=true
50 9 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_nian_wechat.js, tag=京东炸年兽小程序🧨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/lxk0301/jd_nian.png, enabled=false
30 9 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_nian_sign.js, tag=京东炸年兽签到任务🧨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/lxk0301/jd_nian.png, enabled=false
0 * * * * https://raw.githubusercontent.com/shylocks/Loon/main/jd_opencard.js, tag=临时, enabled=false
#京东炸年兽AR
0 8 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_nian_ar.js, tag=京东炸年兽AR, enabled=false
20 1-23/1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_nianCollect.js, tag=京东收炮竹, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/lxk0301/jd_nianCollect.png, enabled=false
#京东神仙书院
30 7,9 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_immortal.js, tag=京东神仙书院, enabled=true
10 8,21 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_firecrackers.js, tag=集鞭炮赢京豆, enabled=false
40 * * * * https://raw.githubusercontent.com/shylocks/Loon/main/jd_xxl_gh.js, tag=个护爱消除, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/master/Icon/shylocks/jd_xxl_gh.png, enabled=false
1 0,8,12,16 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_family.js, tag=京东家庭号, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_family.png, enabled=false
1 3,4,5 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_nh.js, tag=京东年货节, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=true
*/3 1,2 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_car_exchange.js, tag=京东汽车兑换, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_car.png, enabled=true
2 9 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_get_share_code.js, tag=获取助力码, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/jd.png, enabled=true
#小鸽有礼
#直播间红包雨
#京东炸年兽🧨
5 10,11,20 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_nian.js, tag=京东炸年兽🧨, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/lxk0301/jd_nian.png, enabled=false
#东东爱消除
30 9 * * * https://raw.githubusercontent.com/shylocks/Loon/main/jd_xxl.js, tag=东东爱消除, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/shylocks/jd_xxl.jpg, enabled=false
30 * * * * https://raw.githubusercontent.com/shylocks/Loon/main/jd_gyec.js, tag=工业品爱消除, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/shylock/jd_gyxxl.png, enabled=false
#宝洁美发屋
1 8,9 14-31/1 1 * https://raw.githubusercontent.com/shylocks/Loon/main/jd_bj.js, tag=宝洁美发屋, enabled=true
#幸运值抽京豆
10 20 15 1 * https://raw.githubusercontent.com/shylocks/Loon/main/jd_mh_super.js, tag=幸运值抽京豆, enabled=false
5 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jx_sign.js, tag=京喜签到, enabled=true
#京东年货节
#盲盒抽京豆
12 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_cash.js, tag=签到领现金, enabled=true
1 8,12,18 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_bookshop.js, tag=口袋书店, enabled=true
0 */2 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_crazy_joy_coin.js, tag=crazyJoy挂机, enabled=true
44 12 * * 6 https://gitee.com/lxk0301/jd_scripts/raw/master/jd_unbind.js, tag=注销京东店铺会员卡, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_unbind.png, enabled=false
#crazyJoy任务
10 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_crazy_joy.js, tag=crazyJoy任务, enabled=true
14 11 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_jdzz.js, tag=京东赚赚, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdzz.png, enabled=true
8 */3 * * * https://raw.githubusercontent.com/799953468/Quantumult-X/master/Scripts/JD/jd_new_shop.js, tag=京东新店福利, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_shop.png, enabled=true
10 9,14 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_watch.js, tag=京东看一看, enabled=false
13 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_small_home.js, tag=东东小窝, img-url=https://github.com/58xinian/icon/raw/master/ddxw.png, enabled=true
10-20/5 12 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_live.js, tag=京东直播, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_live_redrain.png, enabled=true
12 */1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_feedPets.js, tag=宠汪汪喂食, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdcww.png, enabled=true
10 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_shop.js, tag=进店领豆, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_shop.png, enabled=true
10 9,18 * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jx_nc.js, tag=京喜农场, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxnc.png, enabled=false
6 */3 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_jdfactory.js, tag=东东工厂, img-url=https://gitee.com/lxk0301/jd_scripts/raw/master/jd_jdfactory.js, enabled=true
10 * * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jx_story.js, tag=京喜金牌厂长, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdgc.png,, enabled=false
10 7,21 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_ms_redrain.js, tag=秒杀红包雨, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_ms_redrain.png, enabled=false
10 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_bean_home.js, tag=领京豆额外奖励, enabled=true
10 0,1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_kd.js, tag=京东快递签到, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_kd.png, enabled=true
59 0,59 7,23 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_car.js, tag=京东汽车, enabled=true
11 0,1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_health.js, tag=健康抽奖机, enabled=false
0 0,9,11,13,15,17,19,20,21,23 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_live_redrain.js, tag=直播红包雨, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png, enabled=false
10 7 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_syj.js,tag=十元街,enabled = true
5 */20 8-23 * * * https://raw.githubusercontent.com/ziye12/JavaScript/master/Task/qqreads.js, tag=企鹅读书, enabled=false
#京喜工厂
15 * * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_dreamFactory.js, tag=京喜工厂, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdgc.png, enabled=true
0 9 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/jingxi.js, tag=京喜, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/jingxi.png, enabled=true
6 0-8/2 * * * songyangzz/YOUTH_READ.js, tag=中青阅读, img-url=book.circle.fill.system, enabled=true
6 0-8/2 * * * songyangzz/YOUTH_READ2.js, tag=中青阅读, img-url=book.circle.fill.system, enabled=false
59,0 59,0 10,11 * * * didimoney.js, tag=滴滴红包, img-url=circle.system, enabled=false
5 4,5 1,10,20 * * shareCode.js, tag=提交互助码, img-url=https://raw.githubusercontent.com/Orz-3/task/master/time.png, enabled=true
// quantumultx
*/10 * * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_pigPet.js, tag=养猪, enabled=false
0 12 */3 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_daily_egg.js, tag=天天提鹅"
11 9 * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/jd/jd_rankingList.js, tag=京东排行榜, img-url=https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/image/jd.png, enabled=true
0 9 * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jdzz.js, tag=京东赚赚, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdzz.png, enabled=true
11 0 * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/jd/jd_woHome.js, tag=东东小窝, img-url=https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/image/woHome.png, enabled=true
10 0,20 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_necklace.js, tag=点点券, enabled=true
#京东抽奖机
11 1 * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/jd/jd_lotteryMachine.js, tag=京东抽奖机, img-url=https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/image/jd.png, enabled=true
// #宠汪汪偷好友积分与狗粮
6 0-10/2 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_steal.js, tag=宠汪汪偷好友积分与狗粮, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/jdww.png, enabled=true
15 10 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_run.js, tag=宠汪汪邀请助力与赛跑助力, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdcww.png, enabled=true
0 */3 * * * https://raw.githubusercontent.com/799953468/Quantumult-X/master/Scripts/JD/jd_factory.js, tag=东东工厂, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=false
6 0 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_club_lottery.js, tag=摇京豆, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_shop.png, enabled=true
2 9 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_bean_change.js, tag=京豆变动通知, enabled=true
*/12 * * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/youth.js, tag=中青看点极速版, img-url=https://raw.githubusercontent.com/Orz-3/task/master/youth.png, enabled=false
6,18,30,42,54 * * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/youth.js, tag=中青看点极速版2, img-url=https://raw.githubusercontent.com/Orz-3/task/master/youth.png, enabled=true
11 1-23/2 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_superMarket.js, tag=京小超, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true
0 */2 * * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_blueCoin.js, tag=京小超领蓝币, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true
#京东手机狂欢城
#天天加速
8 */3 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_speed.js, tag=京东天天加速, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/jdttjs.png, enabled=true
1 8,12,17 * * * https://raw.githubusercontent.com/iepngs/Script/master/dingdong/index.js, tag=叮咚农场, enabled=true
# 定时脚本
;* * * * * sample-task.js
# 天气+生活指数
# 无需填写经纬度与key
0 0-21/3 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/hourlyWeather.js, tag=降雨提醒, img-url=https://raw.githubusercontent.com/Orz-3/task/master/weather.png, enabled=false
# 每日.每周天气
# 需要填key
3-57/6 * * * * https://raw.githubusercontent.com/chavyleung/scripts/master/box/switcher/box.switcher.js, tag=切换会话, img-url=https://raw.githubusercontent.com/Orz-3/task/master/box.png, enabled=false
# TG图片推送 (By Peng-YM)
0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/telegram.js, tag=TG图片推送, img-url=https://raw.githubusercontent.com/Orz-3/task/master/tgpic.png,enabled=true
59,0,3,5,7,9 59,9 */1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy_reward.js, tag=宠汪汪积分兑换奖品, enabled=true
0-59/5 * * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_unsubscribe.js, tag=取关京东店铺商品, enabled=false
# 京东农场 (By liuxiaoyucc)
3,5 0 * * * https://raw.githubusercontent.com/NobyDa/Script/master/JD-DailyBonus/JD_DailyBonus.js, tag=京东, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=true
8 7,11,18 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_fruit.js, tag=京东农场, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/jdsg.png, enabled=true
# 京东萌宠 (By liuxiaoyucc)
5 6-18/6 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_pet.js, tag=京东萌宠, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/jdmc.png, enabled=true
# 京东宠汪汪 (By uniqueque)
15 */1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_joy.js, tag=京东宠汪汪, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/jdww.png, enabled=true
# 京东种豆得豆 (By uniqueque)
1 7-21/1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_plantBean.js, tag=京东种豆得豆, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/jdzd.png, enabled=true
#京东全民开红包
1 1 * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_redPacket.js, tag=京东全民开红包, enabled=true
# 京东摇钱树 (By lxk0301)
# 京东App - 右下角"我的"- 游戏与互动-摇钱树
*/40 * * * * https://gitee.com/lxk0301/jd_scripts/raw/master/jd_moneyTree.js, tag=京东摇钱树, img-url=https://raw.githubusercontent.com/znz1992/Gallery/master/moneyTree.png, enabled=false
# App价格版本监控
# 需要填appid
1,2,3 1 * * * https://raw.githubusercontent.com/NobyDa/Script/master/BDTieBa-DailyBonus/TieBa.js, tag=贴吧, img-url=https://raw.githubusercontent.com/Orz-3/task/master/tieba.png, enabled=true
# 一言
0 8 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Meeta/Surge/Scripting/Calendar.js, tag=一言, img-url=https://raw.githubusercontent.com/Orz-3/task/master/calendar.png, enabled=false
# 每日一句+ 蚂蚁森林收能量
30 7 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/yichahucha/cron_daily.js, tag=每日一句+蚂蚁森林收能量, img-url=https://raw.githubusercontent.com/Orz-3/task/master/corn.png,enabled=true
# 倒数日
0 8 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/daysmatter.js, tag=倒数日, img-url=https://raw.githubusercontent.com/Orz-3/task/master/daysmatter.png, enabled=false
# 世界时间
0 8 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/time.js, tag=世界时间, img-url=https://raw.githubusercontent.com/Orz-3/task/master/time.png, enabled=false
# 签到脚本
# @chavyleung
# 电信营业厅
#打开 APP 手动签到一次: 访问下右下角 `我` > `签到` (头像下面)
1 2 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/10000/10000.js, tag=电信营业厅, img-url=https://raw.githubusercontent.com/Orz-3/task/master/10000.png, enabled=true
# GitHub监控(By Peng-YM)
5 8 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/github.js, tag=GitHub, img-url=https://raw.githubusercontent.com/Orz-3/task/master/github.png, enabled=true
# Steam价格监控(By Peng-YM)
0 8 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/steam.js, tag=Steam价格监控, img-url=https://raw.githubusercontent.com/Orz-3/task/master/steam.png, enabled=false
# 汇率监控(By Peng-YM)
0 8 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/exchange.js, tag=汇率监控, img-url=https://raw.githubusercontent.com/Orz-3/task/master/exchangerate.png, enabled=false
# Epic周免(By Peng-YM)
0 8 */7 * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/epic.js, tag=Epic周免, img-url=https://raw.githubusercontent.com/Orz-3/task/master/epic.png, enabled=false
# PSN会免(By Peng-YM)
0 9 1 * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/psn.js, tag=PSN会免, img-url=https://raw.githubusercontent.com/Orz-3/task/master/PSN.png, enabled=true
# 疫情日报 (By Peng-YM)
0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/nCov.js, tag=疫情日报, img-url=https://raw.githubusercontent.com/Orz-3/task/master/COVID-19.png,enabled=true
# 联通查话费流量
# 需要自己填key
# 饿了么 (By @syzzzf)
#打开 APP, 访问下`我的`>`签到领红包`(左上角)
3 2 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/elem/elemCheckIn.js, tag=饿了么-打卡领红包, img-url=https://raw.githubusercontent.com/Orz-3/task/master/elem.png, enabled=true
# 英雄联盟排名 (By @syzzzf)
3 9 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/lol.js, tag=英雄联盟排名, img-url=https://raw.githubusercontent.com/Orz-3/task/master/lol.png, enabled=false
#TestFlight公测监控 (By @syzzzf)
*/5 * * * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/testflight.js, tag=TestFlight公测监控, img-url=https://raw.githubusercontent.com/Orz-3/task/master/testflight.png, enabled=false
# 便利蜂 (By @zZPiglet)
# 进入"便利蜂",点击"签到赚礼金"
31 10,11 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/Blibee/Blibee.js, tag=便利蜂, img-url=https://raw.githubusercontent.com/Orz-3/task/master/Blibee.png, enabled=true
# 微博超话 (By Evilbutcher & toulanboy)
# 1.打开微博APP,"我的", "超话社区", "底部栏--我的", "关注", 弹出通知,提示获取已关注超话链接成功。
# 2. 点进一个超话页面,手动签到一次。弹出通知,提示获取超话签到链接成功。 若之前所有已经签到,关注一个新超话进行签到。
3 0 * * * https://raw.githubusercontent.com/toulanboy/scripts/master/weibo/weibotalk.js, tag=微博超话, img-url=https://raw.githubusercontent.com/Orz-3/task/master/weibo.png, enabled=false
# AcFun
#打开 APP, 访问下`我的`
2 2 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/feng/feng.js, tag=威锋网, img-url=https://raw.githubusercontent.com/Orz-3/task/master/feng.png, enabled=true
2 3 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bilibili/bilibili.js, tag=bilibili, img-url=https://raw.githubusercontent.com/Orz-3/task/master/bilibili.png, enabled=true
5 1 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/smzdm/quanx/smzdm.js, tag=什么值得买, img-url=https://raw.githubusercontent.com/Orz-3/task/master/smzdm.png, enabled=true
5 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/tieba/tieba.js, tag=百度签到, img-url=https://raw.githubusercontent.com/Orz-3/task/master/tieba.png, enabled=false
4 1 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/rrtv/rrtv.js, tag=人人视频, img-url=https://raw.githubusercontent.com/Orz-3/task/master/rrtv.png, enabled=true
5 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/v2ex/quanx/v2ex.js, tag=V2EX, img-url=https://raw.githubusercontent.com/Orz-3/task/master/v2ex.png, enabled=false
8 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/10010/10010.js, tag=中国联通, img-url=https://raw.githubusercontent.com/Orz-3/task/master/10010.png, enabled=true
9 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wmmeituan/wmmeituan.js, tag=美团外卖, img-url=https://raw.githubusercontent.com/Orz-3/task/master/wmmeituan.png, enabled=true
7 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zimuzu/zimuzu.js, tag=字幕组, img-url=https://raw.githubusercontent.com/Orz-3/task/master/zimuzu.png, enabled=true
10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/meituan/meituan.js, tag=美团, img-url=https://raw.githubusercontent.com/Orz-3/task/master/meituan.png, enabled=true
2 1 * * * https://raw.githubusercontent.com/NobyDa/Script/master/52pojie-DailyBonus/52pojie.js, tag=52破解, img-url=https://raw.githubusercontent.com/Orz-3/task/master/52pj.png, enabled=true
25 7 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/Alipay/Alipay.js, tag=支付宝签到&收能量提醒, img-url=https://raw.githubusercontent.com/Orz-3/task/master/corn.png, enabled=true
0 1,20 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/DiDi/DiDi_new.js, tag=滴滴出行
6 0 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/weibo.js, tag=微博, img-url=https://raw.githubusercontent.com/Orz-3/task/master/weibo.png, enabled=false
1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/acfun/acfun.js, tag=AcFun, img-url=https://raw.githubusercontent.com/Orz-3/task/master/acfun.png, enabled=false
# 京东摇钱树 (By lxk0301)
# 京东App - 右下角"我的"- 游戏与互动-摇钱树
# APK.TW
#打开浏览器访问: https://apk.tw `(先登录! 把页面切换为电脑版)`
1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/apktw/apktw.js, tag=APK.TW, img-url=https://raw.githubusercontent.com/Orz-3/task/master/apktw.png, enabled=false
# bilibili
#打开浏览器访问: https://www.bilibili.com 或 https://live.bilibili.com
#如需银瓜子转硬币,取消下方注释
;2 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bilibili/bilibili.silver2coin.js, tag=bilibili银瓜子转硬币, img-url=https://raw.githubusercontent.com/Orz-3/task/master/bilibili.png,enabled=true
59,0 59,0 10 * * * https://raw.githubusercontent.com/elecV2/QuantumultX-Tools/master/dianx/dianx.js, tag=电信金豆兑换话费, img-url=https://raw.githubusercontent.com/elecV2/QuantumultX-Tools/master/dianx/dianx.png, enabled=false
# 懂球帝
#打开懂球帝 (打开前先杀掉 APP)
2 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/dongqiudi/dongqiudi.js, tag=懂球帝, img-url=https://raw.githubusercontent.com/Orz-3/task/master/dongqiudi.png, enabled=false
# 威锋网
#打开浏览器访问: https://www.feng.com`(先登录! 把页面切换为电脑版)`
# 飞客茶馆
#打开 APP, 访问下`个人中心`
3 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/flyertea/flyertea.js, tag=飞客茶馆, img-url=https://raw.githubusercontent.com/Orz-3/task/master/flyertea.png, enabled=false
# 网易云音乐
#1. 先登录: <https://music.163.com/m/login>
#2. 再访问: <https://music.163.com/#/user/level>
#3. 提示: `获取会话: 成功!`
3 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/neteasemusic/quanx/neteasemusic.js, tag=网易云音乐, img-url=https://raw.githubusercontent.com/Orz-3/task/master/Netease.png, enabled=false
# 网易新闻
#打开 APP 然后手动签到 1 次
3 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/neteasenews/neteasenews.js, tag=网易新闻, img-url=https://raw.githubusercontent.com/Orz-3/task/master/neteasenews.png, enabled=false
# 去哪儿
#打开 APP 然后手动签到 1 次
4 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qunar/qunar.js, tag=去哪儿, img-url=https://raw.githubusercontent.com/Orz-3/task/master/qunar.png, enabled=false
# 人人视频
#打开 APP, 访问下`个人中心`
# 顺丰速运
#打开 APP, 访问下`我的顺丰` > `去签到` (访问下`去签到`的页面即可, 不用点`签到`)
#打开 APP或小程序, 访问下`27周年庆`
4 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/sfexpress/sfexpress.js, tag=顺丰速运, img-url=https://raw.githubusercontent.com/Orz-3/task/master/sfexpress.png, enabled=false
# 什么值得买
#浏览器访问并登录: https://zhiyou.smzdm.com/user/login
# 百度签到
#先登录,浏览器访问一下: https://tieba.baidu.com 或者 https://tieba.baidu.com/index/
# V2EX
#浏览器打开https://www.v2ex.com/mission/daily ,待弹出获取成功即可
# 腾讯视频
#1.手机浏览器访问并登录: https://film.qq.com/
6 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/videoqq/videoqq.js, tag=腾讯视频, img-url=https://raw.githubusercontent.com/Orz-3/task/master/videoqq.png, enabled=false
# 喜马拉雅
#打开 APP, 访问下右下角`账号`
6 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/ximalaya/ximalaya.js, tag=喜马拉雅, img-url=https://raw.githubusercontent.com/Orz-3/task/master/ximalaya.png, enabled=false
# 网易严选
#打开 APP, 访问下`个人`>`每日签到`(右上角)
# 6 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/yanxuan/yanxuan.js, tag=网易严选, img-url=https://raw.githubusercontent.com/Orz-3/task/master/yanxuan.png,enabled=true
# 字幕组
#网页:打开浏览器访问: http://www.rrys2019.com, App: 打开 APP 即可
# QQ音乐
#打开 APP 然后手动签到 1 次
7 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qqmusic/qqmusic.js, tag=QQ音乐, img-url=https://raw.githubusercontent.com/Orz-3/task/master/qqmusic.png, enabled=false
# CSDN
# 打开 APP , 系统提示: `获取刷新链接: 成功`,然后手动签到 1 次, 系统提示: `获取Cookie: 成功`
7 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/csdn/csdn.js, tag=CSDN, img-url=https://raw.githubusercontent.com/Orz-3/task/master/csdn.png, enabled=false
# 加油广东
#打开 APP 然后手动签到 1 次
1 7 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/gdoil/gdoil.js, tag=加油广东, img-url=https://raw.githubusercontent.com/Orz-3/task/master/gdoil.png, enabled=false
# 芒果TV
#打开 APP 然后手动签到 1 次
8 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/mgtv/mgtv.js, tag=芒果TV, img-url=https://raw.githubusercontent.com/Orz-3/task/master/mgtv.png, enabled=false
# 米游社
#打开 APP
8 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/mihoyo/mihoyo.js, tag=米游社, img-url=https://raw.githubusercontent.com/Orz-3/task/master/mihoyo.png, enabled=false
# 中国联通
#1打开 APP , 进入签到页面, 系统提示: `获取刷新链接: 成功`,然后手动签到 1 次
#2首页>天天抽奖, 系统提示 `2` 次: `获取Cookie: 成功 (登录抽奖)` 和 `获取Cookie: 成功 (抽奖次数)`
# 猫咪音乐
#打开 网站 `https://www.maomicd.com` 然后手动签到 1 次
9 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/maomicd/maomicd.js, tag=猫咪音乐, img-url=https://raw.githubusercontent.com/Orz-3/task/master/maomicd.png, enabled=false
# 中国移动
#打开 APP , 进入签到页面, 系统提示: `获取刷新链接: 成功`,然后手动签到 1 次
9 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/10086/10086.js, tag=中国移动, img-url=https://raw.githubusercontent.com/Orz-3/task/master/10086.png, enabled=false
# 美团外卖
#打开 APP , 进入签到页面, 系统提示: `获取刷新链接: 成功`,然后手动签到 1 次
# 美团
#打开 APP , 然后手动签到 1 次, (`首页` > `红包签到`)
# 时光相册
#打开 APP 然后手动签到 1 次
10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/everphoto/everphoto.js, tag=时光相册, img-url=https://raw.githubusercontent.com/Orz-3/task/master/everphoto.png, enabled=false
# 百词斩
#打开 APP 手动签到一次: 访问下右下角 `我` > `我的铜板` > `加入百词斩小班` > `去查看` > `我的小班进去 领铜板`
0 8-20/4 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bcz/bcz.js, tag=百词斩, img-url=https://raw.githubusercontent.com/Orz-3/task/master/bcz.png, enabled=false
# 叮咚买菜
#打开 APP, 访问下`我的`>`积分`
10 0 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/dingdong/dingdong.js, tag=叮咚买菜, img-url=https://raw.githubusercontent.com/Orz-3/task/master/mcdd.png, enabled=true
# 分期乐
#打开 APP 手动签到一次: 访问下右下角 `我的` > `乐星` > `签到`
#`我的` > `账单点击` > `超级乐星日/天天领乐星`
10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/fenqile/fenqile.js, tag=分期乐, img-url=https://raw.githubusercontent.com/Orz-3/task/master/fenqile.png, enabled=false
# 樊登读书
#打开 APP 手动签到一次: 访问下右下角 `我的` > `签到`
10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/fandeng/fandeng.js, tag=樊登读书, img-url=https://raw.githubusercontent.com/Orz-3/task/master/fandeng.png, enabled=false
# 全民K歌
#打开 APP 手动签到一次: 访问下右下角 `我的` > `任务中心` > `签到`
10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qmkg/qmkg.js, tag=全民K歌, img-url=https://raw.githubusercontent.com/Orz-3/task/master/qmkg.png, enabled=false
# 合创
#打开 APP 然后手动签到 1 次
11 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/hycan/hycan.js, tag=合创, img-url=https://raw.githubusercontent.com/Orz-3/task/master/hycan.png, enabled=false
# 蔚来
#打开 APP 手动签到一次
11 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/nio/nio.js, tag=蔚来, img-url=https://raw.githubusercontent.com/Orz-3/task/master/nio.png, enabled=false
# 京东到家
#手机浏览器打开`https://daojia.jd.com/html/index.html` 点击签到
# 11 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/jddj/jddj.js, tag=京东到家, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jddj.png,enabled=true
# 海底捞
#打开APP 然后手动签到 1 次
12 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/haidilao/hdl.js, tag=海底捞, img-url=https://raw.githubusercontent.com/Orz-3/task/master/haidilao.png, enabled=false
# 网易考拉
#打开 APP 手动签到一次: 访问下右下角 `我的考拉` > `领考拉豆` > `签到`
12 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wykl/wykl.js, tag=网易考拉, img-url=https://raw.githubusercontent.com/Orz-3/task/master/wykl.png, enabled=false
# WPS
# 打开 APP 我 > 签到 (右上角, 不用手动签到)
12 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wps/wps.js, tag=WPS, img-url=https://raw.githubusercontent.com/Orz-3/task/master/wps.png, enabled=false
# 七猫小说
# APP内手动日常签到(观看小视频领取奖励)和新手领福利签到以及幸运大转盘 1 次
12 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qimao/qmnovel.js, tag=七猫小说, img-url=https://raw.githubusercontent.com/Orz-3/task/master/qimao.png, enabled=false
# 智行火车
# 打开 APP 手动签到一次: 访问下右下角 `个人中心` > `签到`
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zxhc/zxhc.js, tag=智行火车, img-url=https://raw.githubusercontent.com/Orz-3/task/master/zxhc.png, enabled=false
# 苏宁易购
# 首页 > 签到有礼
# 首页 > 领取红包
# 首页 > 天天低价
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/suning/suning.js, tag=苏宁易购, img-url=https://raw.githubusercontent.com/Orz-3/task/master/suning.png, enabled=false
# Zaker
# 打开App,然后手动签1次
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zaker/zaker.js, tag=Zaker, img-url=https://raw.githubusercontent.com/Orz-3/task/master/zaker.png, enabled=false
# 不背单词
# 打开App,然后手动签1次
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bubei/bubei.js, tag=不背单词, img-url=https://raw.githubusercontent.com/Orz-3/task/master/bubei.png, enabled=false
# 豆瓣时间
# 打开 APP 手动签到一次: `市集` > `豆瓣时间` > `签到`
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/dbsj/dbsj.js, tag=豆瓣时间, img-url=https://raw.githubusercontent.com/Orz-3/task/master/dbsj.png, enabled=false
# 哈啰出行
# 打开 APP 进入签到页面: `我的` > `有哈有车`
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/hellobike/hellobike.js, tag=哈啰出行, img-url=https://raw.githubusercontent.com/Orz-3/task/master/hellbike.png, enabled=false
# 掌上飞车
# 打开 APP[掌上飞车],然后手动签到 1 次
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zsfc/zsfc.js, tag=掌上飞车, img-url=https://raw.githubusercontent.com/Orz-3/task/master/zsfc.png, enabled=false
# 趣头条
# 打开 APP 进入签到: `右上角` > `签到`
# 阅读篇数获取Cookie:`小视频`中播放一段时间视频即可获取,具体的阅读篇数奖励请到应用内手动点击
# 首页金币奖励:此Cookie在首页的推荐中随机出现,随机获取,并不一定会出现。
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qtt/qtt.js, tag=趣头条, img-url=https://raw.githubusercontent.com/Orz-3/task/master/qtt.png, enabled=false
# 米读
# 打开 APP 进入`我的` -> `疯狂摇摇乐`,系统提示: `签到:获取Cookie: 成功`
# 阅读时长获取Cookie:打开 APP 选取文章阅读, `书城` > `任意文章阅读` 等到提示获取Cookie成功即可
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/midu/miduRead.js, tag=米读, img-url=https://raw.githubusercontent.com/Orz-3/task/master/midu.png, enabled=false
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/midu/miduSign.js, tag=米读, img-url=https://raw.githubusercontent.com/Orz-3/task/master/midu.png, enabled=false
# 多看
# `我的` > `签到任务` 等到提示获取 Cookie 成功即可
13 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/duokan/duokan.js, tag=多看, img-url=https://raw.githubusercontent.com/Orz-3/task/master/duokan.png, enabled=false
# 京东618
10,20,30,40,50 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/jd/jd.618.js, tag=京东618, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=false
0 10,12,18,20,21 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/jd/jd.618.boom.js, tag=京东618炸弹, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=false
# 有道云笔记
3 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/noteyoudao/noteyoudao.js, tag=有道云笔记, img-url=https://raw.githubusercontent.com/Orz-3/task/master/noteyoudao.png, enabled=false
# 切换会话
# 访问: https://8.8.8.8/home管理
# @NobyDa
# 京东
#浏览器登录 https://bean.m.jd.com 点击签到并且出现签到日历
# 贴吧
#打开App,访问下右下角 `我的
# 爱奇艺
#打开App,访问下右下角 `我的
1 0 * * * https://raw.githubusercontent.com/NobyDa/Script/master/iQIYI-DailyBonus/iQIYI.js, tag=爱奇艺, img-url=https://raw.githubusercontent.com/Orz-3/task/master/iQIYI.png, enabled=false
# 52破解
#浏览器访问https://www.52pojie.cn/home.php?mod=space 即可
# 哔哩哔哩漫画
#打开App,访问下右下角 `我的
2 0 * * * https://raw.githubusercontent.com/NobyDa/Script/master/Bilibili-DailyBonus/Manga.js, tag=哔哩哔哩漫画, img-url=https://raw.githubusercontent.com/Orz-3/task/master/manga.png, enabled=false
# 一键签到 (By @sazs34)
# 贴吧,爱奇艺,网易云,52,V2ex,饿了么,电信
# 联通查话费流量
# 需要自己填key
# 饿了么 (By @syzzzf)
#打开 APP, 访问下`我的`>`签到领红包`(左上角)
3 1 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/elem/elemSign.js, tag=饿了么, img-url=https://raw.githubusercontent.com/Orz-3/task/master/elem.png, enabled=true
# 英雄联盟排名 (By @syzzzf)
3 0 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/lol.js, tag=英雄联盟排名, img-url=https://raw.githubusercontent.com/Orz-3/task/master/lol.png, enabled=false
#TestFlight公测监控 (By @syzzzf)
# 斗鱼鱼吧 By @yyfyyf123
3 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/yubaSign.js, tag=斗鱼鱼吧, img-url=https://raw.githubusercontent.com/Orz-3/task/master/douyu.png, enabled=false
# 携程旅行 (By @barrymchen)
#打开App 点击"我的",然后点击"我的积分",再点击下面的"签到.任务"即可
4 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/ctrip.js, tag=携程旅行, img-url=https://raw.githubusercontent.com/Orz-3/task/master/ctrip.png, enabled=false
# 小程序(登录携程微信小程序,我的特权)
4 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/ct_sign.js, tag=携程旅行小程序, img-url=https://raw.githubusercontent.com/Orz-3/task/master/ctrip.png, enabled=false
# 中国电信套餐 (By @uchvk & @Macsuny)
#下载安装 天翼账号中心 登录
4 0 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/telecomInfinity.js, tag=中国电信套餐, img-url=https://raw.githubusercontent.com/Orz-3/task/master/telecominfinty.png, enabled=false
# 腾讯新闻 (By 红鲤鱼与绿鲤鱼与驴 & @Macsuny)
#1.打开腾讯新闻app,阅读一篇文章,倒计时结束后即可获取Cookie
#2.现阶段每日共9个阶梯红包,具体阅读篇数视腾讯情况而变动
#3.脚本运行一次阅读一篇文章,请不要连续运行,防止封号,可设置每几分钟运行一次
#4.打开腾讯新闻app,阅读一篇文章,倒计时结束后即可获取Cookie,红包ID的Cookie,点击红包倒计时,或者点击活动页面的专属红包任务,有些账号可能无
# 楼兰小说论坛 (By @iNotification)
#网页登录 www.lltxt.com 点击 "我的信息 - 签到 - 开始签到"
5 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/loulancheck.js, tag=楼兰小说论坛, img-url=https://raw.githubusercontent.com/Orz-3/task/master/loulan.png, enabled=false
# 招行信用卡(公众号) (By @iNotification)
#招商银行信用卡微信公众号:"领积分 - 签到领积分"
5 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/cmbchina.js, tag=招行信用卡, img-url=https://raw.githubusercontent.com/Orz-3/task/master/cmbchina.png, enabled=false
# 疫情辟谣 (By @Dachaw)
0 9 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/nCoVrumors.js, tag=疫情辟谣, img-url=https://raw.githubusercontent.com/Orz-3/task/master/COVID-19.png, enabled=false
# 京东成长分 (By @barrymchen)
#打开京东金融app,"信用"-》"小白成长分"
5 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/jdczf.js, tag=京东成长分, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jdczf.png, enabled=false
# 工银e生活 (By @barrymchen)
# App首页"欢趣签到",手动签到1次
5 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/icbc_sign.js, tag=工银e生活, img-url=https://raw.githubusercontent.com/Orz-3/task/master/icbc.png, enabled=false
# 微信小程序-同程艺龙 (By @barrymchen)
6 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/tongc_sign.js, tag=同程艺龙, img-url=https://raw.githubusercontent.com/Orz-3/task/master/tongc.png, enabled=false
6 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/tongc_info.js, tag=同程艺龙, img-url=https://raw.githubusercontent.com/Orz-3/task/master/tongc.png, enabled=false
# 京东到家 (By @barrymchen, @GideonSenku & @Macsuny)
#APP登陆账号后,点击主页'签到',即可
6 0 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/jddj.js, tag=京东到家, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jddj.png, enabled=false
# 微信小程序-来客有礼 (By @Macsuny)
# 微信搜索'来客有礼'小程序,登陆京东账号,点击'领京豆->翻牌'
6 0 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/lkyl.js, tag=来客有礼, img-url=https://raw.githubusercontent.com/Orz-3/task/master/jd.png, enabled=true
# 电视家 (By @Macsuny)
# APP登陆账号后,点击底部'赚赚'进入签到页面,即可获取Cookie.
0 7,20 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/dianshijia.js, tag=电视家, img-url=https://raw.githubusercontent.com/Orz-3/task/master/dianshijia.png, enabled=false
# 电视节目预告 (By @Macsuny)
# var c = "cctv1" // 可更改电视台,央视可以直接改后缀数字
# 常用卫视代码北京: btv1 | 湖南: hunan | 浙江: zhejiang|河南: henan| 江苏: jiangsu|广东: guangdong
1 10 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/tvpreview.js, tag=电视节目预告, img-url=https://raw.githubusercontent.com/Orz-3/task/master/dianshijia.png, enabled=false
# 12306余票及列车时刻表查询(By @Macsuny)
# 可更改出发地、目的地、出发时间及列车车次
0 * * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/trainquery.js, tag=12306余票及列车时刻表查询, img-url=https://raw.githubusercontent.com/Orz-3/task/master/12306.png, enabled=false
# 实时货币换算(By @Macsuny)
0 10 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/exchangeRate.js, tag=实时货币换算, img-url=https://raw.githubusercontent.com/Orz-3/task/master/exchangerate.png, enabled=false
# 快手极速版 (By @Macsuny)
#APP登陆账号后,点击'钱包'
6 0 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/kuaishou.js, tag=快手极速版, img-url=https://raw.githubusercontent.com/Orz-3/task/master/kuaishou.png, enabled=false
# 喜马拉雅极速版-开宝箱 (By @Macsuny)
# APP登陆账号后,点击右下角’福利’选项,即可获取Cookie.
# 每隔一小时开启一次,每天最多5次,金币账户与标准版不同账户
# > 微博 & 微博钱包 (By @Macsuny)
#1.打开微博App获取Cookie.获取后请注释或禁用Cookie
#2.打开微博钱包点击签到,获取Cookie,
#3.钱包已经签到无法获取
# > 新浪新闻 (By @Macsuny)
# 1.打开app,点击"我的"=>"签到",获取第一个Cookie,通知获取信息成功
# 2.在未签到情况下,先禁用第一条Cookie链接,然后再次进入签到,通知获取签到Cookie成功
6 0 * * * https://raw.githubusercontent.com/Sunert/Scripts/master/Task/sinanews.js, tag=新浪新闻, img-url=https://raw.githubusercontent.com/Orz-3/task/master/sinanews.png, enabled=false
# > 中青看点极速版 (By @Macsuny)
# 1.进入app,签到一次,即可获取Cookie.
# 2.阅读一篇文章,获取阅读请求body,
# 3.在阅读文章最下面有个惊喜红包,点击获取惊喜红包请求
# 4.激励视频获取方法: 关闭vpn,进入任务中心=>抽奖赚点击下面第一个宝箱,出现视频广告页面,然后打开vpn,等待视频播放完毕,点击点我继续领青豆,再重复一次上面操作,获取激励视频请求的body
# 微信小程序-活动抽奖 (By @makexp & @zZPiglet)
#打开微信小程序 进入"活动抽奖",手动签到一次或点击"已签到"
30 20 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/WeChatLottery_new.js, tag=微信小程序-活动抽奖, img-url=https://raw.githubusercontent.com/Orz-3/task/master/wechatlottery.png, enabled=false
# 滴滴出行 (By @zZPiglet)
# 半自动提醒支付宝签到及蚂蚁森林收能量 (By @zZPiglet)
# 115 (By @zZPiglet)
1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/115/115.js, tag=115, img-url=https://raw.githubusercontent.com/Orz-3/task/master/ximalaya.png, enabled=false
# 微信小程序-喜马拉雅 (By @makexp)
# 微信小程序 - 喜马拉雅 - 我的: 签到 " 获取 Cookie
6 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/xmly_wc.js, tag=微信喜马拉雅, img-url=https://raw.githubusercontent.com/Orz-3/task/master/ximalaya.png, enabled=false
# 360扫地机 (By @qiaoborui)
# 首页右上角-签到🎁
6 0 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Task/360.js, tag=360扫地机, img-url=https://raw.githubusercontent.com/Orz-3/task/master/360.png, enabled=false
# 纵横小说 (By Peng-YM)
# 使用方法:进入纵横小说页面,例如<<剑来>>:http://book.zongheng.com/book/672340.html 则id为672340,将id添加到列表即可。
6 0 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/zongheng.js, tag=纵横小说, img-url=https://raw.githubusercontent.com/Orz-3/task/master/zongheng.png, enabled=false
# 小木虫论坛(By toulanboy)
5 0 * * * https://raw.githubusercontent.com/toulanboy/scripts/master/muchong/muchong.js, tag=小木虫论坛, enabled=false
# qq会员成长值签到 (By @lowking0415)
# 手机qq进入左侧会员,滑动即可
0 0 0,1 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/QQVip/qqVipCheckIn.js, tag=qq会员成长值, enabled=false