-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathxa3.json
2416 lines (2258 loc) · 102 KB
/
xa3.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
{
"adblock": "http://192.168.0.22:8002/jiexi/lzff.php?url=",
"blocklfags": [
".lz",
".cdnlz",
".ff",
".bf"
],
"sites": [
{"key": "直转点",
"name": "🏆熊大专享",
"type": 3,
"api":"https://4344.kstore.space/js/直转点.js",
"ext":"https://4344.kstore.space/yun/直转点.txt"
},
{
"key": "csp_XBPQ_奶很大",
"name": "🏆奶很大",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/h/奶很大.json"
},
{
"key": "csp_XBPQ_yyxl",
"name": "🏆夜夜新郎",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/lib/夜夜新郎.json"
},
{
"key": "csp_XBPQ_疯猫av",
"name": "🏆疯猫av",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/h/疯猫av.json"
},
{
"key": "零太视频",
"name": "🏆零太视频",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"数组": "<div class=\"v-pic&&</div>",
"图片": "data-src=\"&&\"",
"图片代理": "1",
"标题": "title=\"&&\"",
"副标题": "v-tips\">&&</div>",
"简介": "description\" content=\"&&\"",
"链接": "href=\"/voddetail/&&.html\"",
"链接前缀": "https://ln.lntai.cc/vodplay/",
"链接后缀": "-1-1.html",
"跳转播放链接": "urlDecode(var player*url\":\"&&\")",
"搜索url": "https://ln.lntai.cc/vodsearch/{wd}----------{pg}---.html",
"分类url": "https://ln.lntai.cc/vodshow/{cateId}--------{catePg}---.html;;z",
"分类": "精品薄码$20#中文对白$21#中字制服$22#字母翻译$22#经典电影$23#欧美系列$25#动漫专区$24#绝美丝袜$26#丰乳美臀$27#少女制服$28"
}
},
{
"key": "我爱AV",
"name": "🏆我爱AV社区",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"playerType": 2,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"数组": "class=\"stui-vodlist__thumb lazyload\"&&</a",
"副标题": "span class=\"pic-text text-right\">&&</p",
"线路数组": "<li&&</li>",
"线路标题": "✨PYLB专享✨+<h3> 私密专线 </h3> ",
"播放标题": ">&&</a",
"搜索模式": "1",
"搜索url": "/vodsearch/{wd}----------{pg}---.html",
"分类数组": "<li&&</li>",
"分类标题": ">&&</a",
"分类ID": "/vodtype/&&.html",
"分类链接": "https://vip.woaav.online:13097/vodshow/{cateId}--------{catePg}---.html"
}
},
{
"key": "花影视",
"name": "🏆花影视",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"ext": {
"数组": "col-6 col-sm-4 col-lg-3\">&&</div></div>",
"图片": "data-original=\"&&\"",
"标题": "<h6 class=\"title\"><a href=*>&&</a>",
"播放数组": "class=\"item line\">&&</div>",
"线路数组": "class=\"item line\">&&</div>",
"分类url": "https://11gaokk.com/typegaokk/{cateId}_{catePg}.html[https://11gaokk.com/typegaokk/{cateId}.html]",
"分类": "日韩$2#巨乳$7#中文$4#口交$8#制服$9#无码$11#女优$18#人妻$19#独家$22#潮吹$24#三级$12"
}
},
{
"key": "麻豆",
"name": "🏆麻豆",
"type": 3,
"changeable": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/xyqxbpq.jar",
"style": {
"ratio": 1.7
},
"ext": {
"搜索url": "http://gcmd.cc/index.php/vod/search/page/{pg}/wd/{wd}.html",
"分类": "日本视频$1#麻豆视频$2",
"分类url": "http://gcmd.cc/index.php/vod/show/class/{class}/id/{cateId}/page/{catePg}.html",
"直接播放": "1"
}
},
{
"key": "csp_顶级网曝",
"name": "🏆顶级网.曝",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/xyqxbpq.jar",
"playerType": 2,
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": {
"请求头": "手机",
"站名": "顶级网曝",
"主页url": "https://www.djwb3.top/",
"数组": "<li class=\"content-item\">&&</a>",
"标题": "title=\"&&\"",
"图片": "data-original=\"&&\"",
"播放数组": "<td>&&</td>",
"播放链接": "href=\"&&\"",
"跳转播放链接": "urlDecode(var player*url\":\"&&\")",
"免嗅": "0",
"搜索url": "https://www.djwb3.top/index.php/vod/search/page/{pg}/wd/{wd}.html",
"嗅探词": ".m3u8#.mp4",
"分类url": "https://www.djwb3.top/index.php/vod/type/id/{cateId}/page/{catePg}.html",
"分类数组": "<li&&</li>",
"分类标题": "href=\"/index.php/vod/type/id/*.html\" target=\"_blank\">&&</a>",
"分类ID": "/index.php/vod/type/id/&&.html"
}
},
{
"key": "糖心",
"name": "🏆糖心次元",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"style": {
"ratio": 1.7
},
"ext": {
"数组": "<section&&</section",
"副标题": "添加时间:&&</span>",
"嗅探词": "cdn2020.com#m3u8",
"分类url": "http://www.txcyeat.buzz/index.php/vodtype/{cateId}-{catePg}.html;;z",
"分类": "国产片商$32#节目企划$3#代理节目$2#麻豆原创$1#导演系列$5#MDS系列$6#MDX系列$7#MD系列$4#MDXS系列$8#兔子先生$10#大鸟十八$17#疯拍系列$18#KISS糖果屋$19#小鹏奇啪行$20#30天解密麻豆$22#突袭女优计划$23#女神羞羞研究所$24#小哥哥艾理$27#情趣K歌房$31#淫欲游戏王$40#麻豆不回家$41#叮叮映画$71#涩会$72#豚豚创媒$75#MDL系列$46#MMZ系列$50#MAD系列$53#MDWP系列$58#MSD系列$64#MDM恋爱咖啡$74#MDUS系列$78#MXJ系列$79#MKY系列$87#MAN系列$89#MCY系列$96#MDAG系列$100#MDHT系列$101#BLX系列$115#MPG系列$116#果冻传媒$11#皇家华人$12#吴梦梦无套系列$13#PsychoPorn色控$14#蜜桃影像传媒$15#天美传媒$45#乌鸦传媒$33#精东影业$34#SWAG$36#91制片厂$52#MSM性梦者$65#爱妃传媒$76#辣椒原创$80#O-STAR$81#肉肉传媒$91#渡边传媒$95#葵心娱乐$97#红斯灯影像$103#麻麻传媒$104#蝌蚪传媒$105#Pussy Hunter$106#桃花源$108#女优淫娃培训营$42#狼人插$54#女优擂台摔角狂热$55#恋爱巴士$61#男女优生死斗$66#情人劫密室逃脱$67#换妻$68#你好同学$69#禁欲小屋$77#鲍鱼的胜利$84#性爱自修室$88#春游记$92#心动的性号$93#情趣大富翁$94#寻宝吧女神$99#男优练习生$102#女神体育祭$110#麻豆高校$111#野外露初$112#星空无限传媒$47#乐播传媒$48#大象传媒$59#MINI传媒$62#糖心$73#葫芦影业$82#天马传媒$83#CCAV成人头条$90#性视界传媒$109#SA国际传媒$113#起点传媒$114#91茄子$117#草莓猛料$118"
}
},
{
"key": "纤纤影视福利版",
"name": "🏆纤纤H版",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"playerType": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://m.xian372.top/L/26.html",
"请求头": "手机",
"编码": "gb2312",
"数组": "<a class=\"ui-pic&&</a",
"图片": "src=\"&&\"",
"标题": "title=\"&&\"",
"副标题": "ui-type\">&&</span>",
"链接": "href=\"&&\"",
"简介": "description\"><p>&&</p",
"线路数组": "class=\"box p15\">&&</div>",
"线路标题": ">云播福利线路<",
"播放数组": "<div class=\"playlist&&</div",
"播放列表": "<li>&&</li",
"播放标题": ">&&</a",
"播放链接": "href='&&'",
"嗅探词": "index.m3u8",
"搜索数组": "<a class=\"ui-pic&&</a",
"搜索图片": "src=\"&&\"",
"搜索标题": "title=\"&&\"",
"搜索链接": "href=\"&&\"",
"搜索url": "https://m.xian372.top/search.asp?page={pg}&searchword={wd}&searchtype=-1",
"分类数组": "<a&&</a",
"分类标题": ".html\">&&</a[不包含:2#3#4#5#下一页]",
"分类ID": "href=\"/L/&&.html\"",
"分类url": "https://m.xian372.top/L/{cateId}_{catePg}.html[https://m.xian372.top/L/{cateId}.html]"
}
},
{
"key": "小幺女|床吧",
"name": "🏆小幺女",
"type": 3,
"playerType": 2,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/xyqxbpq.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"站名": "小幺女",
"主页url": "https://xxynhkaa1.buzz/sort/id/245.html",
"数组": "class=\"vod_box\">&&</li>",
"图片": "url('&&'",
"标题": "title=\"&&\"",
"链接": "https://xxynhkaa1.buzz/detail+href='/display&&'",
"跳转播放链接": "var playUrl = '&&'",
"直接播放": "1",
"嗅探词": "index.m3u8",
"分类数组": "<a&&</a",
"分类标题": "target=\"_blank\">&&</a[不包含:<h3>伦理作品</h3>#<h3>成人动漫</h3>#<h3>国产主播</h3>#<h3>自拍专区</h3>]",
"分类ID": "href=\"/sort/id/&&.html\"",
"分类url": "https://xxynhkaa1.buzz/type/id/{cateId}/{catePg}.html"
}
},
{
"key": "csp_XBPQ_花心小妞",
"name": "🏆花心小妞",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"发布地址": "hxxn3a.top",
"请求头": "手机",
"站名": "花心小妞",
"主页url": "https://hxxn3a.top/gbook/?shouye",
"直接播放": "1",
"数组": "stui-vodlist__box&&</li>",
"标题": "title=\"&&\"",
"图片": "data-original=\"&&\"",
"副标题": "<p>&&</p >",
"链接": "https://hxxn3a.top/vodplay/+href=\"/voddetail/&&.html\"+-1-1.html",
"线路数组": "layui-btn-normal play-btn&&</a >",
"播放数组": "group-box bg-card&&</div>",
"免嗅": "1",
"搜索url": "https://hxxn3a.top/vodsearch/{wd}----------{pg}---.html",
"分类url": "https://hxxn3a.top/vodshow/{cateId}--------{catePg}---.html",
"分类数组": "<li&&</li>",
"分类标题": ">&&</a >",
"分类ID": "/vodtype/&&.html\""
}
},
{
"key": "csp_XYQHiker_777影院",
"name": "🏆777影院",
"type": 3,
"api": "csp_XYQHiker",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/h/777影院.json",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/xyqxbpq.jar"
},
{
"key": "csp_91黑料",
"name": "🏆91黑料",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://kb18.oneoneno8cd345.xyz/one",
"首页": "400",
"请求头": "User-Agent$PC_UA",
"数组": "<a&&</a>[不包含:91网曝黑料网#最近更新]",
"二次截取": "<div class=\"videoListBox\"&&el-pagination is-background",
"标题": "title\">&&</p>",
"副标题": "time\">&&</div>",
"链接": "https://kb18.oneoneno8cd345.xyz/v/+href=\"/voddetail/&&/\"+/sid/1/nid/1/",
"图片": "data-src=\"&&\"",
"跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
"搜索url": "https://kb18.oneoneno8cd345.xyz/s/wd/{wd}/",
"分类url": "https://kb18.oneoneno8cd345.xyz/t/{cateId}-{catePg}/;;z",
"分类数组": "<a&&</a>",
"分类标题": ">&&</a>",
"分类ID": "/t/&&/"
},
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar"
},
{
"key": "csp_XYBQ",
"name": "🏆比卡比卡",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/h/比卡比卡.json"
},
{
"key": "沙咖影院",
"name": "🏆沙咖影院",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"数组": "stui-vodlist__thumb lazyload&&</a",
"图片": "data-original=\"&&\"",
"图片代理": "1",
"副标题": "pic-text text-right\">&&</span>",
"简介": "description\" content=\"&&\"",
"链接": "href=\"/voddetail/&&.html\"",
"链接前缀": "https://sar.sarga.cc/vodplay/",
"链接后缀": "-1-1.html",
"跳转播放链接": "urlDecode(var player*url\":\"&&\")",
"搜索url": "https://sar.sarga.cc/vodsearch/{wd}----------{pg}---.html",
"分类url": "https://sar.sarga.cc/vodtype/{cateId}-{catePg}.html;;z",
"分类": "中文新作$20#国语视频$21#有码精品$24#动漫专场$23#经典伦理$25#欧美性爱$22"
}
},
{
"key": "努可影院",
"name": "🏆努可影院",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"数组": "stui-vodlist__thumb lazyload&&</a",
"图片": "data-original=\"&&\"",
"图片代理": "1",
"副标题": "pic-text text-right\">&&</span>",
"简介": "description\" content=\"&&\"",
"链接": "href=\"/voddetail/&&.html\"",
"链接前缀": "https://2n2.abcoob.one/vodplay/",
"链接后缀": "-1-1.html",
"跳转播放链接": "urlDecode(var player*url\":\"&&\")",
"搜索url": "https://2n2.abcoob.one/vodsearch/{wd}-----/page/{pg}.html",
"分类url": "https://2n2.abcoob.one/vodtype/{cateId}-{catePg}.html;;z",
"分类": "新品日韩$20#中文字幕$21#短片本土$22#大胸美女$23#剧情暴力$24#制服扮演$25#人妻御姐$26#无码专区$27#动漫卡通$28#明星幻想$29"
}
},
{
"key": "HiPianZhiBo",
"name": "🏆嗨片直播",
"type": 3,
"api": "csp_HiPianZhiBo",
"searchable": 1,
"filterable": 1,
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},
{
"key": "ROU223",
"name": "🏆223ROU ",
"type": 3,
"api": "csp_ROU223",
"searchable": 1,
"filterable": 1,
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},
{
"key": "大香蕉",
"name": "🏆大香蕉",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"发布地址": "https://www.cc59.xyz/",
"主页url": "https://ukui.736403.xyz/",
"二次截取": "<div class=\"vdd\"&&<div class=\"pag\"",
"数组": "<a&&</a",
"图片": "data-src=\"\" src=\"&&\"",
"标题": "<p>&&</p",
"副标题": "",
"简介": "description\" content=\"&&免费",
"链接": "https://ukui.736403.xyz/cv/+href=\"/cf/&&.html\"+-1-1.html",
"跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
"搜索模式": "1",
"搜索url": "https://ukui.736403.xyz/co/page/{pg}/wd/{wd}.html",
"分类url": "https://ukui.736403.xyz/cx/{cateId}-{catePg}.html;;z",
"分类": "国产$1#黑料$2#三级$3#其他$4#日本$5#动漫$6"
}
},
{
"key": "天美",
"name": "🏆天美之爱",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"ext": {
"搜索链接": "http://www.xbyc.cc/index.php/vod/search/page/{pg}/wd/{wd}.html",
"数组": "\"box-item\"&&</em>",
"副标题": "<strong>&&</strong>",
"分类数组": "<li>&&</li>",
"分类标题": "\">&&</a >",
"分类ID": "id/&&.",
"分类url": "http://www.xbyc.cc/index.php/vod/type/id/{cateId}/page/{catePg}.html;;mz"
}
}, {
"key": "午夜专享",
"name": "🏆午夜TV",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"filterable": 0,
"style": {
"type": "rect",
"ratio": 1.333
},
"ext": {
"分类url": "https://jxb7.com/index.php/vod/show/class/{class}/id/{cateId}/page/{catePg}.html",
"播放数组": "<ul class=\"myui-content__list sort-list clearfix\"&&/ul>",
"分类": "视频一区&视频二区&视频三区&视频四区&特色专区&三级伦理&国产乱伦&美女主播&明星淫梦&TS人妖&中文字幕&日本有码&高清无码&精品素人&AV解说&VR专区",
"分类值": "29&30&28&27&31&25&26&27&28&29&30&31&32&49&50&51"
}
},
{
"key": "JAVDAY",
"name": "🏆JAVDAY",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"ext": {
"主页url": "https://javday.tv/",
"直接播放": "1",
"数组": "lazy loaded\"&&</a>",
"图片": "style=\"background-image: url(&&);\"",
"标题": "class=\"title\"&&</span>",
"副标题": "class=\"number\">&&</span>",
"简介": "title\"&&</span>",
"链接": "href=\"&&\"",
"分类url": "https://javday.tv/category/{cateId}/page/{catePg}/",
"分类": "新作上市$new-release#有碼$censored#國產AV$chinese-av#無碼流出$uncensored-leaked#糖心VLOG$txvlog#蘿莉社$luolisheus#HongKongDoll$hongkongdoll"
}
},
{
"key": "色最色",
"name": "🏆色最色",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"ext": {
"主页url": "https://xn--zovv42dba.com/",
"直接播放": "1",
"嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
"分类url": "https://xn--zovv42dba.com/list-read-id-{cateId}-p-{catePg}",
"分类": "国产精品$19#偷拍自拍$20#欧美成人$26#中文无码$23#中文字幕$22#亚洲情色$21#卡通动漫$24#成人伦理$25"
}
},
{
"key": "爱豆传媒",
"name": "🏆爱豆传媒",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"ext": {
"主页url": "https://rourou.co/",
"直接播放": "1",
"嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
"数组": "class=\"myui-vodlist__box\">&&</div>",
"图片": "data-original=\"&&\"",
"标题": "title=\"&&\"",
"链接": "href=\"&&\"",
"分类url": "https://rourou.co/index.php/vod/type/id/{cateId}/page/{carePg}.html",
"分类": "麻豆视频$1#中文字幕$2#日本无码$3#日本有码$4#童颜巨乳$5#校园萝莉$6#女优明星$7#角色扮演$8#制服诱惑$9#强奸乱伦$31#AI换脸$32#黑料泄密$33#主播直播$34#国产精品$35#探花视频$36#女同性恋$37#SM调教$38#人妻熟女$40"
}
},
{
"key": "传媒二区",
"name": "🏆传媒二区",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://www.34gaobk.com/index.html",
"数组": "<div class=\"card mb-0\">&&</a",
"标题": "atl=\"&&\"",
"副标题": "img-tag\">&&</div>",
"简介": "document.title='&&'",
"直接播放": "1",
"搜索模式": "1",
"搜索url": "https://www.34gaobk.com/gaosearch/{wd}-/page/{pg}/",
"分类数组": "<a&&/a>",
"分类标题": ">&&<",
"分类ID": "/gaotype/&&.html",
"分类url": "https://www.34gaobk.com/gaotype/{cateId}_{catePg}.html[https://www.34gaobk.com/gaotype/{cateId}.html]"
},
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar"
},
{
"key": "高清xxxx黑料",
"name": "🏆高清xxxx黑料",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"发布地址": "https://xxxxxxav3.com",
"主页url": "https://xxxxxxav3.com/xxxx",
"数组": "class=\"item-box\">&&</a",
"图片": "src=\"&&\"",
"标题": "title=\"&&\"",
"副标题": "<small>&&</small>",
"简介": "description\" content=\"&&|全站",
"链接": "href=\"&&\"[替换:voddetail>>v]",
"跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
"搜索模式": "1",
"搜索url": "https://xxxxxxav3.com/s/page/{pg}/wd/{wd}/",
"分类数组": "<a&&/a>",
"分类标题": ">&&<",
"分类ID": "/t/&&/",
"分类url": "https://xxxxxxav3.com/t/{cateId}-{catePg}/;;z"
}
},
{
"key": "黑料",
"name": "🏆黑料网",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"发布地址": "https://155.fun/(T)",
"短视频": "1",
"嗅探词": "https://hls.vdtuzv.com/videos3/#.m3u8?",
"标题": "title\" data-v-a51695bc>&&</div>",
"副标题": "ishot\" data-v-a51695bc>&&</div>",
"链接": "href=\"/archives/&&.html\"",
"链接前缀": "https://g3o9.ycoowhtcj.com/archives/",
"链接后缀": ".html",
"分类url": "https://g3o9.ycoowhtcj.com/category/{cateId}/{catePg}.html",
"分类": "独家爆料&网红明星&反差女友&校园政坛&性爱课堂&奇闻异事&热点吃瓜&今日黑料&经典大瓜&黑料历史&每日热瓜",
"分类值": "9&1&4&2&12&3&7&6&8&10&11"
}
},
{
"key": "暗网色库",
"name": "🏆暗网",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"style": {
"ratio": 1.7
},
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/lib/暗网.json"
},
{
"key": "女优色库",
"name": "🏆女优色库",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"style": {
"ratio": 1.7
},
"ext": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/lib/女优.json"
},
{
"key": "BuzzAV",
"name": "🏆BuzzAV",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"ext": {
"主页url": "https://www.buzzav.com/",
"直接播放": "1",
"数组": "<article id=&&</div>",
"图片": "data-src=\"&&\"",
"标题": "alt=\"&&\"",
"副标题": "class=\"duration\">&&</span>",
"链接": "href=\"&&\"",
"分类url": "https://www.buzzav.com/category/{cateId}/page/{catePg}",
"分类": "业余$amateur#肛门$anal#亚洲$asian#Asmr$asmr#宝贝$babe#大屁股$big-ass#大鸡巴$big-dick#大奶$big-tits#金发女郎$blonde#口交$blowjob#束缚$bondage#名人$celebrity#中文$chinese-中文#大学$college#汇编$compilation#角色扮演$cosplay#中出$creampie#绿帽$cuckold#射精$cumshot#脚$feet#恋物癖$fetish#群交$gangbang#手淫$handjob#硬核$hardcore#成人动漫$hentai#跨种族$interracial#日本人$japanese#女同性恋$lesbian#按摩$massage#手淫$masturbation#成熟$mature#熟女$milf#观点$pov#民众$public#喷出$squirt#18+青少年$teen-18#三人行$threesome#未分类$uncategorized#优质的$vintage#摄像头$webcam"
}
},
{
"key": "51黑料福利社",
"name": "🏆51黑料福利社",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"发布地址": "https://51heiliaofulishe.com",
"主页url": "https://xn--sew--d22d-or3qf22vs68d.koxueyuan7pk789.xyz/ko",
"数组": "class=\"item-box\">&&</a",
"图片": "src=\"&&\"",
"副标题": "<!-- <small>&&</small> -->",
"简介": "description\" content=\"&&|全站免费",
"链接": "https://xn--sew--d22d-or3qf22vs68d.koxueyuan7pk789.xyz/v/+href=\"/voddetail/&&/\"+/",
"搜索模式": "1",
"搜索url": "https://xn--sew--d22d-or3qf22vs68d.koxueyuan7pk789.xyz/s/page/{pg}/wd/{wd}/",
"分类数组": "<a&&/a",
"分类标题": ">&&<",
"分类ID": "/t/&&/",
"分类url": "https://xn--sew--d22d-or3qf22vs68d.koxueyuan7pk789.xyz/t/{cateId}-{catePg}/;;z"
}
},
{
"key": "Cg51",
"name": "🏆51吃瓜",
"type": 3,
"api": "csp_Cg51",
"searchable": 1,
"filterable": 1,
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},
{
"key": "成人重口",
"name": "🏆成人重口",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"发布地址": "1:https://www.crzk11.buzz/,2:www.crzk3.top",
"主页url": "https://www.crzk22.buzz",
"数组": "<li class=\"content-item&&</li",
"图片": "data-original=\"&&\"",
"标题": "title=\"&&\"",
"副标题": "text-bg-r\">&&</span>",
"简介": "description\" content=\"&&剧情",
"链接": "https://www.crzk22.buzz/index.php/vod/play/id/+href=\"/index.php/vod/detail/id/&&.html\"+/sid/1/nid/1.html",
"跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
"搜��模式": "1",
"搜索url": "https://www.crzk22.buzz/index.php/vod/search/page/{pg}/wd/{wd}.html",
"分类数组": "<a&&/a",
"分类标题": ">&&<",
"分类ID": "/index.php/vod/type/id/&&.html",
"分类url": "https://www.crzk22.buzz/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z"
}
},
{
"key": "18insta",
"name": "🏆18INSTA",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"style": {
"type": "rect",
"ratio": 1.77
},
"ext": {
"数组二次截取": "models\":[&&]",
"数组": "{&&}",
"图片": "previewUrlThumbBig:\"https+://static-cdn.strpst.com/+https://static-cdn.strpst.com/&&\"",
"标题": "username\":\"&&\"",
"副标题": "id\":\"&&\"",
"链接": "hlsPlaylist\":\"&&_+_480p.m3u8",
"分类url": "https://zh.18insta.com/api/front/models?primaryTag=girls&sortBy=viewersRating&userRole=guest&groupId=6&limit=20&filterGroupTags=[[\"{cateId}\"]]&offset=0;;m",
"直接播放": 1,
"播放请求头": "手机",
"分类": "中国$tagLanguageChinese#乌克兰$tagLanguageUkrainian#日本$tagLanguageJapanese#韩国$tagLanguageKorean#越南$tagLanguageVietnamese#哥伦比亚$tagLanguageColombian"
}
},
{
"key": "玩偶妹妹",
"name": "🏆玩偶妹妹",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://urcccg.dbtav9.today/cn/home/web/",
"直接播放": "1",
"分类url": "https://urcccg.dbtav9.today/vodtype/{cateId}/{catePg}/;;a",
"分类": "国产精品$20#主播大秀$21#唯美视频$22#口交视频$23#日本有碼$24#日本無碼$25#动漫视频$26#欧美视频$27#日韩视频$28#欧美视频$29#动漫视频$30#伦理影片$31"
}
},
{
"key": "TaiAv",
"name": "🏆TaiAv",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gitdl.cn/https://raw.githubusercontent.com/fish2018/tvbox/master/jar/最新.jar",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"主页url": "https://taiav.com/",
"搜索url": "https://taiav.com/search?q={wd}",
"数组": "uk-card-media-top\"&&</a>",
"图片": "src=\"&&\"",
"标题": "alt=\"&&\"",
"副标题": "</span>&&</div>",
"链接": "href=\"&&\"",
"简介": "⚠️!!!",
"分类url": "https://taiav.com/cn/category/{cateId}?page={catePg};;z",
"分类": "国产AV$国产AV#网红主播$网红主播#有码$有码#无码$无码"
}
},
{
"key": "XMVideo",
"name": "🏆熊猫视频",
"type": 3,
"api": "csp_XMVideo",
"searchable": 1,
"filterable": 1,
"jar":"https://mirror.ghproxy.com/https://github.com/bizhangjie/CatVodSpider/blob/main/jar/custom_spider.jar"
},
{
"key": "Cg51",
"name": "🏆51吃瓜",
"type": 3,
"api": "csp_Cg51",
"playerType": 2,
"searchable": 1,
"filterable": 1,
"jar":"https://mirror.ghproxy.com/https://github.com/bizhangjie/CatVodSpider/blob/main/jar/custom_spider.jar"
},
{
"key": "csp_xBPQ_香蕉AV解说",
"name": "🏆香蕉解说",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://d.kstore.space/download/4344/XBPQ/AV解说.json"
},
{
"key": "csp_xBPQ_香蕉超清",
"name": "🏆香蕉超清",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://download.kstore.space/download/4344/XBPQ/新香蕉超清资源.json"
},
{
"key": "csp_xBPQ_香蕉国产",
"name": "🏆香蕉国产",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://download.kstore.space/download/4344/XBPQ/新香蕉国产传媒.json"
},
{
"key": "csp_xBPQ_香蕉久久热",
"name": "🏆香蕉久久热",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://download.kstore.space/download/4344/XBPQ/新香蕉久久热.json"
},
{
"key": "csp_xBPQ_香蕉废柴",
"name": "🏆香蕉废柴",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://download.kstore.space/download/4344/XBPQ/新香蕉废柴网.json "
},
{
"key": "csp_香蕉资源",
"name": "🏆香蕉中文",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://download.kstore.space/download/4344/XBPQ/香蕉资源.json"
},
{
"key": "csp_香蕉视频",
"name": "🏆香蕉视频",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "http://152.32.170.60/138001380000/MHQTV/raw/branch/master/xBPQ/香蕉视频.json"
},
{
"key": "csp_xBPQ_香蕉直播",
"name": "🏆香蕉直播",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://d.kstore.space/download/4344/XBPQ/实时直播.json"
},
{"key":"csp_xBPQ_天天直播",
"name":"🏆天天直播",
"type":3,
"api":"csp_xBPQ",
"searchable":1,
"quickSearch":1,
"filterable":1,
"ext":"https://d.kstore.space/download/4344/XBPQ/天天直播.json"
},
{
"key": "csp_xBPQ_香蕉搜索",
"name": "🏆麻豆女优",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://4344.kstore.space/XBPQ/香蕉搜索.json"},
{
"key": "csp_麻豆映画",
"name": "🏆麻豆映画",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://4344.kstore.space/XBPQ/麻豆映画.json"
},
{"key":"www.17c.com",
"name":"🏆一起艹",
"type":3,
"api":"csp_XBPQ",
"searchable":1,
"quickSearch":1,
"changeable":1,
"jar":"https://gitee.com/xiongdada3695/jar/raw/main/xyqlgz.jar",
"ext":{"请求头":"手机",
"发布地址":"https://www.17caax.com:8888/",
"直接播放":"1",
"数组":"<div class=\"vs_dc3b5d1a3f59ee19cb5e6a4dbe162e0f-item-vide-n&&</a>",
"标题":"rank-title\">&&</div>",
"图片":"data-src=\"&&\"",
"副标题":"<span>&&</span>",
"搜索模式":"1",
"搜索url":"https://www.17caax.com:8888/search/1.html?keyword={wd}",
"分类url":"https://www.17caax.com:8888/category/1.html?category_id={cateId}&page={catePg}",
"分类":"吃瓜&国产&原创&传媒&日韩&欧美&动漫&主播&AV解说",
"分类值":"14&1&40&2&3&4&5&7&8"}},
{
"key": "csp_XBPQ_天天综合",
"name": "🏆香蕉综合",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"jar":"https://gitee.com/xiongdada3695/jar/raw/main/xyqlgz.jar",
"ext": "https://d.kstore.space/download/4344/XBPQ/天天综合.json"
},
{"key":"csp_xBPQ_tt",
"name":"🏆天天综合",
"type":3,
"api":"csp_xBPQ",
"searchable":1,
"quickSearch":1,
"filterable":0,
"ext":{"站名":"天天综合",
"主页url":"https://28jjkk.vip/",
"直接播放":"1",
"图片":"data-original=\"&&\"",
"标题":"title=\"&&\"",
"链接":"href=\"&&\"",
"副标题":"<div class=\"duration\">&&</div>",
"简介":"<title>&&</title>",
"搜索模式":"1",
"搜索url":"https://28jjkk.vip/vod/search/page/{pg}/wd/{wd}/",
"搜索图片":"data-original=\"&&\"",
"搜索标题":"title=\"&&\"",
"搜索链接":"href=\"&&\"",
"搜索副标题":"<div class=\"duration\">&&</div>",
"免嗅":"0",
"嗅探词":".m3u8#.mp4#.flv#.m4a#.avi#.mkv#.mov#.3gp#.asf#.rm#.rmvb#.wmv#.mpg#.mpeg#.mpe#.ts#.vob#.mp3#.wma",
"分类":"天天综合$/xjzy/cn-zhongwenhushi",
"分类url":"https://28jjkk.vip/{cateId}/{catePg}.html",
"筛选":{"/xjzy/cn-zhongwenhushi":[
{"key":"cateId","name":"中文字幕", "value":[
{"n":"无码中文","v":"/xjzy/cn-zhongwenwuma"},
{"n":"中文综合","v":"/xjzy/cn-zhongwenzonghe"},
{"n":"中文近亲","v":"/xjzy/cn-zhongwenjingqing"},
{"n":"中文护士","v":"/xjzy/cn-zhongwenhushi"},
{"n":"中文师生","v":"/xjzy/cn-zhongwenshisheng"},
{"n":"中文强奸","v":"/xjzy/cn-zhongwenqiangjian"},
{"n":"明星淫梦","v":"/xjzy/cn-mingxingyinmeng"},
{"n":"国产自拍","v":"/xjzy/cn-guochanzipai"},
{"n":"原片解说","v":"/xjzy/cn-jieshuoyuanpian"},
{"n":"三级资源","v":"/xjzy/cn-sanjizonghe"}]},
{"key":"cateId","name":"国产传媒","value":[
{"n":"综合传媒","v":"/gccm/91-madouyuanchuang"},
{"n":"91制片","v":"/gccm/91-91zhipianchang"},
{"n":"性吧原创","v":"/gccm/91-xingbayuanchuang"},
{"n":"糖心Vlgo","v":"/gccm/91-tangxinVlgo"},
{"n":"天美传媒","v":"/gccm/91-tianmeichuanmei"},
{"n":"蜜桃传媒","v":"/gccm/91-mitaochuanmei"},
{"n":"星空传媒","v":"/gccm/91-xingkongchuanmei"},
{"n":"精东影业","v":"/gccm/91-jingdongyingye"},
{"n":"兔子先生","v":"/gccm/91-tuzixiansheng"},
{"n":"大象传媒","v":"/gccm/91-daxiangchuanmei"}]},
{"key":"cateId","name":"久久热资源","value":[
{"n":"国产自拍","v":"/99re/kdw-guochanzipai"},
{"n":"欧美","v":"/99re/kdw-oumei"},
{"n":"中文字幕","v":"/99re/kdw-zhongwenzimu"},
{"n":"李宗瑞全集","v":"/99re/kdw-lizongruiquanji"},
{"n":"日本无码","v":"/99re/kdw-ribenwuma"},
{"n":"加勒比","v":"/99re/kdw-jialebi"},
{"n":"日本有码","v":"/99re/kdw-ribenyouma"},
{"n":"一本道","v":"/99re/kdw-yibendao"},