forked from PizazzGY/TVBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.json
1238 lines (1229 loc) · 35.5 KB
/
api.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
{
"spider": "./spider.jar;md5;3843f962622e1fa261e6cd26ebbe2807",
"wallpaper": "https://api.likepoems.com/img/bing",
"sites": [
{
"key": "豆瓣",
"name": "豆瓣",
"type": 3,
"api": "csp_Douban",
"searchable": 0
},
{
"key": "云盘登录",
"name": "云盘登录",
"type": 3,
"api": "csp_AliYunPan",
"searchable": 0,
"quickSearch": 0,
"filterable": 0,
"changeable": 0,
"indexs": 0,
"ext": "http://127.0.0.1:9978/file/TVBox/token.txt"
},
{
"key": "配置中心",
"name": "配置中心",
"type": 3,
"api": "csp_Config",
"searchable": 0,
"changeable": 0,
"indexs": 0,
"style": {
"type": "rect",
"ratio": 1.597
},
"jar": "./danmu.jar;md5;ef899b3f9babf606e653cb735a70cfac"
},
{
"key": "农民影视",
"name": "农民影视|快",
"type": 3,
"api": "csp_WexNmys",
"searchable": 1,
"changeable": 1
},
{
"key": "天天影视",
"name": "天天影视|快",
"type": 3,
"api": "csp_AppTT",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "热播影视",
"name": "热播影视|快",
"type": 3,
"api": "csp_AppRB",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "快看影视",
"name": "快看|有广告",
"type": 3,
"api": "csp_Kuaikan",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "苹果影视",
"name": "苹果影视",
"type": 3,
"api": "csp_LiteApple",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "南瓜影视",
"name": "南瓜影视",
"type": 3,
"api": "csp_WexNgys",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "FreeOK",
"name": "FreeOK",
"type": 3,
"api": "csp_FreeOK",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},
{
"key": "明日影视",
"name": "明日影视",
"type": 3,
"api": "csp_WexMingriys",
"searchable": 1,
"changeable": 1
},
{
"key": "腐剧视频",
"name": "腐剧视频",
"type": 3,
"api": "csp_WexFujutv",
"searchable": 1,
"changeable": 1
},
{
"key": "利播影视",
"name": "利播影视",
"type": 3,
"api": "csp_Wexlibhd",
"searchable": 1,
"changeable": 1
},
{
"key": "两个磁力",
"name": "两个磁力",
"type": 3,
"api": "csp_Wexbttwo",
"searchable": 1,
"changeable": 1
},
{
"key": "骚火影视",
"name": "骚火影视",
"type": 3,
"api": "csp_Wexsaohuo",
"searchable": 1,
"changeable": 1
},
{
"key": "愉悦影视",
"name": "愉悦影视",
"type": 3,
"api": "csp_Wexyuyueys",
"searchable": 1,
"changeable": 1
},
{
"key": "厂长资源",
"name": "厂长资源",
"type": 3,
"api": "csp_Czsapp",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://czzy.top/"
},
{
"key": "低端影视",
"name": "低端影视",
"type": 3,
"api": "csp_Ddys",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://ddys.pro/"
},
{
"key": "采集之王",
"name": "采集之王",
"type": 3,
"api": "./JS/drpy2.min.js",
"searchable": 1,
"quickSearch": 1,
"order_num": 142,
"ext": "./JS/采集之王.js?type=url¶ms=./JSON/采集静态.json$1$1"
},
{
"key": "精品短剧",
"name": "精品短剧",
"type": 3,
"api": "csp_Wexvipduanju",
"searchable": 1,
"changeable": 1
},
{
"key": "良品短剧",
"name": "良品短剧",
"type": 3,
"api": "csp_Wexduanjuvip",
"searchable": 1,
"changeable": 1
},
{
"key": "无忧短剧",
"name": "无忧短剧",
"type": 3,
"api": "csp_Duanj",
"searchable": 1,
"changeable": 0,
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "看看影视",
"name": "看看影视",
"type": 3,
"api": "csp_WebIV",
"searchable": 1,
"quickSearch": 1,
"filterable": 0
},
{
"key": "铁剧影视",
"name": "铁剧影视",
"type": 3,
"api": "csp_AppBr",
"searchable": 1,
"quickSearch": 0,
"filterable": 0
},
{
"key": "笙歌影视",
"name": "笙歌影视",
"type": 3,
"api": "csp_AppYY",
"searchable": 1,
"quickSearch": 0,
"changeable": 0
},
{
"key": "摩托影视",
"name": "摩托影视",
"type": 3,
"api": "csp_App",
"searchable": 1,
"quickSearch": 0,
"filterable": 0,
"ext": "j3UE7cVyk0jKGyMPkJ35EnqUgtOg+PN9OJevxJzkfD20vgt+RqQVvc3kcbSRgThbJjVk2hC6FWnD0fWIqWd4D4S/NPFftLiwX7Yf2pvV3P2hRAjNWiPO+iJQ33XkJeUHW9gMIzn0FkxZOs+o8juC1SnSkfjblSU1wtxBOetwgC8habcRdvOZEjBSLuZj8SlIjQ9QzwZivBSQGQ44j1bkAxNO4k1MhYbM5Z6QWxv/341MNNt7lsI9pldpg5/KtM/USj9Ftmmree+9m/3E/UgIwWzCl3Ax9B8NQQ7uGFr2wq68ahEIcCZyL3l+U37oARUk"
},
{
"key": "星芽短剧",
"name": "星芽短剧",
"type": 3,
"api": "csp_AppXY",
"searchable": 1,
"quickSearch": 0,
"filterable": 0
},
{
"key": "星芽短剧",
"name": "星芽短剧",
"type": 3,
"api": "csp_AppXY",
"searchable": 1,
"quickSearch": 0,
"filterable": 0
},
{
"key": "视频库",
"name": "视频库|慢",
"type": 3,
"api": "csp_WebVidHub",
"searchable": 1,
"quickSearch": 0,
"filterable": 0,
"ext": "https://vidhub1.cc"
},
{
"key": "素白白",
"name": "素白白",
"type": 3,
"api": "csp_Subaibai",
"searchable": 1,
"changeable": 1
},
{
"key": "机器人",
"name": "机器人",
"type": 3,
"api": "csp_Ikanbot",
"searchable": 1,
"quickSearch": 1,
"changeable": 1,
"ext": "https://v.aikanbot.com"
},
{
"key": "追剧迷",
"name": "追剧迷",
"type": 3,
"api": "./JS/drpy2.min.js",
"ext": "./JS/追剧迷.js"
},
{
"key": "歪片星球",
"name": "歪片星球",
"type": 3,
"api": "csp_XYQHiker",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/歪片星球.json"
},
{
"key": "蚂蚁资源",
"name": "蚂蚁资源",
"type": 1,
"api": "http://dsakf23665.com/api.php/provide/vod/from/NBY",
"searchable": 1,
"changeable": 1,
"playUrl": "json:http://121.62.61.51:6888//api//?key=qMdg1EDXPe9NH3bG0z&url="
},
{
"key": "红牛资源",
"name": "红牛资源",
"type": 1,
"api": "https://www.hongniuzy2.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"动作片",
"喜剧片",
"爱情片",
"科幻片",
"恐怖片",
"剧情片",
"战争片",
"国产剧",
"港澳剧",
"日剧",
"欧美剧",
"台湾剧",
"泰剧",
"韩剧",
"纪录片",
"动漫电影"
]
},
{
"key": "光速资源",
"name": "光速资源",
"type": 1,
"api": "http://api.guangsuapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"动作片",
"喜剧片",
"爱情片",
"科幻片",
"剧情片",
"恐怖片",
"战争片",
"动漫电影",
"大陆剧",
"欧美剧",
"港澳剧",
"韩剧",
"日剧",
"台湾剧",
"泰剧",
"综艺",
"动漫",
"记录片"
]
},
{
"key": "极速资源",
"name": "极速资源",
"type": 1,
"api": "https://jszyapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"日剧",
"马泰剧",
"内地剧",
"欧美剧",
"香港剧",
"韩剧",
"台湾剧",
"恐怖片",
"动画片",
"剧情片",
"战争片",
"动作片",
"记录片",
"爱情片",
"喜剧片",
"科幻片",
"灾难片",
"悬疑片",
"犯罪片",
"中国动漫",
"日本动漫",
"欧美动漫"
]
},
{
"key": "量子资源",
"name": "量子资源",
"type": 1,
"api": "https://cj.lziapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"动作片",
"喜剧片",
"科幻片",
"恐怖片",
"爱情片",
"剧情片",
"战争片",
"记录片",
"国产剧",
"欧美剧",
"香港剧",
"韩国剧",
"台湾剧",
"日本剧",
"海外剧",
"泰国剧",
"国产动漫",
"日韩动漫",
"欧美动漫",
"港台动漫",
"海外动漫",
"大陆综艺",
"港台综艺",
"日韩综艺",
"欧美综艺"
]
},
{
"key": "非凡资源",
"name": "非凡资源",
"type": 1,
"api": "http://cj.ffzyapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"动作片",
"喜剧片",
"科幻片",
"恐怖片",
"爱情片",
"剧情片",
"战争片",
"记录片",
"国产剧",
"欧美剧",
"香港剧",
"韩国剧",
"台湾剧",
"日本剧",
"海外剧",
"泰国剧",
"国产动漫",
"日韩动漫",
"欧美动漫",
"港台动漫",
"海外动漫",
"大陆综艺",
"港台综艺",
"日韩综艺",
"欧美综艺"
]
},
{
"key": "南瓜弹幕",
"name": "弹幕|南瓜",
"type": 3,
"api": "csp_Nangua",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "厂长弹幕",
"name": "弹幕|厂长",
"type": 3,
"api": "csp_Czzy",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "天天弹幕",
"name": "弹幕|天天",
"type": 3,
"api": "csp_TianTian",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "小苹果弹幕",
"name": "弹幕|小苹果",
"type": 3,
"api": "csp_Xpg",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "一起看弹幕",
"name": "弹幕|一起看",
"type": 3,
"api": "csp_Yqk",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "JOJO弹幕",
"name": "弹幕|JOJO",
"type": 3,
"api": "csp_Jiohub",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "荐片弹幕",
"name": "弹幕|荐片",
"type": 3,
"api": "csp_Jianpian",
"playerType": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"danmu": true
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "我的阿里",
"name": "我的|阿里",
"type": 3,
"api": "csp_MyAli",
"searchable": 0,
"quickSearch": 0,
"filterable": 0,
"ext": {
"token": "http://127.0.0.1:9978/file/TVBox/token.txt"
},
"style": {
"type": "list"
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "我的夸克",
"name": "我的|夸克",
"type": 3,
"api": "csp_MyQuark",
"searchable": 0,
"quickSearch": 0,
"filterable": 0,
"ext": {
"cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt"
},
"style": {
"type": "list"
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "阿里合集",
"name": "阿里|合集",
"type": 3,
"api": "csp_AliShare",
"searchable": 1,
"changeable": 0,
"filterable": 0,
"ext": {
"token": "http://127.0.0.1:9978/file/TVBox/token.txt",
"share": "./JS/alishare.txt"
},
"style": {
"type": "list"
},
"jar": "./danmu.jar;md5;5d503b9413e2f2ab1eb547980b170417"
},
{
"key": "玩偶哥哥",
"name": "云盘|玩偶",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/玩偶哥哥.json"
},
{
"key": "云盘六趣",
"name": "云盘|六趣",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/六趣.json"
},
{
"key": "天天开心",
"name": "云盘|开心",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/天天开心.json"
},
{
"key": "土豆网盘",
"name": "云盘|土豆",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/土豆网盘.json"
},
{
"key": "多多影音",
"name": "云盘|多多",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/多多影音.json"
},
{
"key": "云盘搜索",
"name": "云盘|搜索",
"type": 3,
"api": "csp_XYQHiker",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/云盘搜索.json"
},
{
"key": "影搜",
"name": "云盘|影搜",
"type": 3,
"api": "csp_XYQHiker",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/影搜.json"
},
{
"key": "Upyunso",
"name": "云盘|云搜",
"type": 3,
"api": "csp_Upyunso",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "http://127.0.0.1:9978/file/TVBox/token.txt"
},
{
"key": "AliPS",
"name": "云盘|盘搜",
"type": 3,
"api": "csp_AliPS",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "http://127.0.0.1:9978/file/TVBox/token.txt"
},
{
"key": "Yisou",
"name": "云盘|易搜",
"type": 3,
"api": "csp_Yisou",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "http://127.0.0.1:9978/file/TVBox/token.txt"
},
{
"key": "阿里苏苏",
"name": "云盘|苏苏",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/阿里苏苏.json"
},
{
"key": "云盘论坛",
"name": "云盘|论坛",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/云盘论坛.json"
},
{
"key": "云盘资源",
"name": "云盘|资源",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/云盘资源.json"
},
{
"key": "我的小站",
"name": "云盘|小站",
"type": 3,
"api": "csp_XYQHikerAL",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "./XYQHiker/我的小站.json"
},
{
"key": "Gitcafe",
"name": "云盘|小纸条",
"type": 3,
"api": "csp_Gitcafe",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "http://127.0.0.1:9978/file/TVBox/token.txt"
}
],
"parses": [
{
"name": "聚合",
"type": 3,
"url": "Demo"
},
{
"name": "线路1",
"type": 0,
"url": "https://jx.xmflv.com/?url=",
"ext": {
"header": {
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57"
}
}
},
{
"name": "线路2",
"type": 0,
"url": "https://jx.quankan.app/?url=",
"ext": {
"header": {
"user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
}
}
},
{
"name": "线路3",
"type": 0,
"url": "https://jx.yparse.com/index.php?url=",
"ext": {
"header": {
"user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
}
}
},
{
"name": "线路4",
"type": 0,
"url": "https://jx.jsonplayer.com/player/?url=",
"ext": {
"header": {
"user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
}
}
},
{
"name": "线路5",
"type": 0,
"url": "https://jx.aidouer.net/?url=",
"ext": {
"header": {
"user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36",
"referer": "https://jiejie.uk/"
}
}
},
{
"name": "线路6",
"type": 0,
"url": "https://jx.777jiexi.com/player/?url="
},
{
"name": "线路7",
"type": 0,
"url": "https://www.8090g.cn/?url="
},
{
"name": "线路8",
"type": 0,
"url": "https://jx.yangtu.top?url="
},
{
"name": "线路9",
"type": 0,
"url": "https://jx.m3u8.tv/jiexi/?url="
},
{
"name": "线路10",
"type": 0,
"url": "https://www.ckplayer.vip/jiexi/?url="
}
],
"rules": [
{
"name": "量子广告",
"hosts": [
"vip.lz",
"hd.lz",
".cdnlz"
],
"regex": [
"17.19",
"#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:7\\.166667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
"#EXTINF.*?\\s+.*?1o.*?\\.ts\\s+"
]
},
{
"name": "非凡广告",
"hosts": [
"vip.ffzy",
"hd.ffzy"
],
"regex": [
"17.99",
"#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6\\.400000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
"#EXTINF.*?\\s+.*?1170(20|32).*?\\.ts\\s+",
"#EXTINF.*?\\s+.*?116977.*?\\.ts\\s+"
]
},
{
"name": "索尼广告",
"hosts": [
"suonizy"
],
"regex": [
"#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:1\\.000000,[\\s\\S]*?#EXT-X-DISCONTINUITY",
"#EXTINF.*?\\s+.*?p1ayer.*?\\.ts\\s+",
"#EXTINF.*?\\s+.*?\\/video\\/original.*?\\.ts\\s+"
]
},
{
"name": "暴风广告",
"hosts": [
"bfzy",
"bfbfvip"
],
"regex": [
"#EXTINF.*?\\s+.*?adjump.*?\\.ts\\s+"
]
},
{
"name": "星星广告",
"hosts": [
"aws.ulivetv.net"
],
"regex": [
"#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY"
]
},
{
"name": "快看广告",
"hosts": [
"kuaikan"
],
"regex": [
"#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:5,[\\s\\S]*?#EXT-X-DISCONTINUITY",
"#EXT-X-KEY:METHOD=NONE\\r*\\n*#EXTINF:2\\.4,[\\s\\S]*?#EXT-X-DISCONTINUITY"
]
},
{
"name": "磁力广告",
"hosts": [
"magnet"
],
"regex": [
"更多",
"请访问",
"example",
"社 區",
"x u u",
"直 播",
"更 新",
"社 区",
"有趣",
"有 趣",
"英皇体育",
"全中文AV在线",
"澳门皇冠赌场",
"哥哥快来",
"美女荷官",
"裸聊",
"新片首发",
"UUE29"
]
},
{
"name": "一起看广告",
"hosts": [
"yqk88"
],
"regex": [
"18.4",
"15.1666",
"16.5333",
"#EXT-X-DISCONTINUITY\\r*\\n*[\\s\\S]*?#EXT-X-CUE-IN"
]
},
{
"name": "火山嗅探",
"hosts": [
"huoshan.com"
],
"regex": [
"item_id="
]
},
{
"name": "抖音嗅探",
"hosts": [
"douyin.com"
],
"regex": [
"is_play_url="
]
},
{
"name": "农民嗅探",
"hosts": [
"toutiaovod.com"
],
"regex": [
"video/tos/cn"
]
}
],
"doh": [
{
"name": "Google",
"url": "https://dns.google/dns-query",
"ips": [
"8.8.4.4",
"8.8.8.8"
]
},
{
"name": "Cloudflare",
"url": "https://cloudflare-dns.com/dns-query",
"ips": [
"1.1.1.1",
"1.0.0.1",
"2606:4700:4700::1111",