-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpro.json
2983 lines (2897 loc) · 149 KB
/
pro.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":"https://gitee.com/juanxiao/bh/raw/master/o.jar",
"lives":[
{
"name": "live",
"url": "https://tv.iill.top//m3u/Adult",
"type": 0,
"epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}",
"logo": "https://epg.112114.xyz/logo/{name}.png",
"ua": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"
},
{"group":"redirect",
"channels":[{
"name":"redirect",
"urls":["proxy://do=live&type=txt&ext=aHR0cDovL3F1YW4ubG92ZXN0b2Jsb2cuY29tL2NvbWJpbmUudHh0"]}]
}],
"sites":[
{
"key": "豆瓣",
"name": "豆瓣推荐",
"type": 3,
"api": "csp_Douban",
"searchable": 0,
"changeable": 1,
"indexs":1,
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/douban.json"
},
{
"key": "drpy_js_黑木耳资源",
"name": "木耳|影视",
"type": 3,
"api": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js",
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/mr.js"
}, {
"key": "✨YY影视✨",
"name": "UU|影视",
"type": 3,
"api": "csp_XBPQ",
"ext": { "请求头": "User-Agent$MOBILE_UA",
"编码": "UTF-8",
"主页url": "https://uuys.cc",
"二次截取": "module-page&&<div id=\"page\">",
"数组": "<a&&</div></div>",
"图片": "data-original=\"&&\"",
"标题": "title=\"&&\"",
"链接": "href=\"&&\"",
"副标题": "✨宝盒专享✨+module-item-note&&</div>",
"线路数组": "item tab-item&&</div>[排序:海湾资源>非凡播放>无尽资源]",
"线路标题": "宝盒专享✨+<span>&&</span>+【共+<small>&&</small>+集】","播放数组": "module-play-list\"&&</div>","播放标题": "宝盒专享✨+>&&</","简介": "✨宝盒提醒:请勿相信视频里的广告!✨+<p>&&</p >","搜索url":"https://uuys.cc/vodsearch/{wd}----------{pg}---.html",
"分类url": "https://uuys.cc/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
"分类": "电影$2#电视剧$1#综艺$4#动漫$3"
}
}, {
"key": "csp_LiteApple",
"name": "苹果┃影视",
"type": 3,
"playerType": "2",
"api": "csp_LiteApple",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/ap.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1
},{"key":"New6v","name":"六微┃磁力","type":3,"api":"csp_New6v","searchable":1,"quickSearch":1,"filterable":1,"ext":"https://www.xb6v.com"}, {"key":"星芽短剧","name":"上头┃短剧","type":3,"api":"csp_AppXY","searchable":1,"quickSearch":0,"filterable":0}, {"key": "厂长影院",
"name": "厂长┃影院",
"type": 3,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"api": "csp_XBPQ",
"searchable": 1,
"changeable": 1,
"ext": {
"站名":"厂长资源",
"主页url":"https://www.czzy77.com/",
"分类url":"https://www.czzy77.com/{cateId}/{class}/{area}/page/{catePg};;m0",
"分类":"全部&豆瓣电影Top250&高分影视&最新电影&电影&国产剧&电视剧&动画&日剧&韩剧&美剧&海外剧&俄罗斯电影&加拿大电影&华语电影&印度电影&日本电影&欧美电影&韩国电影&纪录片",
"分类值":"movie_bt&dbtop250&gaofenyingshi&zuixindianying&movie_bt_series/dyy&movie_bt_series/guochanju&movie_bt_series/dianshiju&movie_bt_series/dohua&movie_bt_series/rj&movie_bt_series/hj&movie_bt_series/mj&movie_bt_series/hwj&movie_bt_series/eluosidianying&movie_bt_series/jianadadianying&movie_bt_series/huayudianying&movie_bt_series/yindudianying&movie_bt_series/ribendianying&movie_bt_series/meiguodianying&movie_bt_series/hanguodianying&movie_bt/movie_bt_tags/jlpp",
"简介":"<div class=\"yp_context\">&&</div>",
"导演":"导演:&&</li>",
"主演":"主演:&&</li>",
"影片年代":"年份:&&</li>",
"影片地区":"地区:&&</li>",
"影片类型":"类型:&&</li>",
"数组":"<li>&&</li>",
"图片":"data-original=\"&&\"",
"标题":"alt=\"&&\"",
"链接":"href=\"&&\"",
"副标题":"jidi\">&&</div>+furk\">&&</div>+rating\">&&</div>",
"线路数组":"<div class=\"mi_paly_box\">&&</div>",
"线路标题":"<span>&&</span>[替换:在线观看>>极速]",
"播放数组":"<div class=\"paly_list_btn\">&&</div>",
"播放列表":"<a&&/a>",
"播放标题":">&&<[替换:立即播放>>空]",
"播放链接":"href=\"&&\"",
"筛选":{
"movie_bt":[
{"key":"area","name":"分类","value":[
{"v":"","n":"全部分类"},
{"v":"movie_bt_series/dyy","n":"电影"},
{"v":"movie_bt_series/dianshiju","n":"电视剧"},
{"v":"movie_bt_series/dohua","n":"动画"},
{"v":"movie_bt_series/guochanju","n":"国产剧"},
{"v":"movie_bt_series/mj","n":"美剧"},
{"v":"movie_bt_series/rj","n":"日剧"},
{"v":"movie_bt_series/hj","n":"韩剧"},
{"v":"movie_bt_series/hwj","n":"海外剧(其他)"},
{"v":"movie_bt_series/huayudianying","n":"华语电影"},
{"v":"movie_bt_series/meiguodianying","n":"欧美电影"},
{"v":"movie_bt_series/ribendianying","n":"日本电影"},
{"v":"movie_bt_series/hanguodianying","n":"韩国电影"},
{"v":"movie_bt_series/yindudianying","n":"印度电影"},
{"v":"movie_bt_series/eluosidianying","n":"俄罗斯电影"},
{"v":"movie_bt_series/jianadadianying","n":"加拿大电影"},
{"v":"movie_bt_series/huiyuanzhuanqu","n":"会员专区"}
]
},
{"key":"class","name":"类型","value":[
{"n":"全部类型","v":""},
{"n":"传记","v":"movie_bt_tags/chuanji"},
{"n":"儿童","v":"movie_bt_tags/etet"},
{"n":"冒险","v":"movie_bt_tags/maoxian"},
{"n":"剧情","v":"movie_bt_tags/juqing"},
{"n":"动作","v":"movie_bt_tags/dozuo"},
{"n":"动漫","v":"movie_bt_tags/doman"},
{"n":"动画","v":"movie_bt_tags/dhh"},
{"n":"历史","v":"movie_bt_tags/lishi"},
{"n":"古装","v":"movie_bt_tags/guzhuang"},
{"n":"喜剧","v":"movie_bt_tags/xiju"},
{"n":"奇幻","v":"movie_bt_tags/qihuan"},
{"n":"家庭","v":"movie_bt_tags/jiating"},
{"n":"恐怖","v":"movie_bt_tags/kubu"},
{"n":"悬疑","v":"movie_bt_tags/xuanyi"},
{"n":"情色","v":"movie_bt_tags/qingse"},
{"n":"惊悚","v":"movie_bt_tags/kingsong"},
{"n":"战争","v":"movie_bt_tags/zhanzhen"},
{"n":"歌舞","v":"movie_bt_tags/gw"},
{"n":"武侠","v":"movie_bt_tags/wuxia"},
{"n":"灾难","v":"movie_bt_tags/zainan"},
{"n":"爱情","v":"movie_bt_tags/aiqing"},
{"n":"犯罪","v":"movie_bt_tags/fanzui"},
{"n":"短片","v":"movie_bt_tags/dp"},
{"n":"科幻","v":"movie_bt_tags/kh"},
{"n":"纪录片","v":"movie_bt_tags/jlpp"},
{"n":"西部","v":"movie_bt_tags/xb"},
{"n":"运动","v":"movie_bt_tags/yd"},
{"n":"音乐","v":"movie_bt_tags/yy"}
]
}
]
}
}
},
{"key":"荐片","name":"荐片┃推荐","type":3,"api":"csp_JianPian","playerType":1,"searchable":1,"quickSearch":1,"filterable":1,"ext":"http://api2.rinhome.com"},
{"key":"农民影视","name":"农民┃影视","type":3,"api":"csp_WexNmys","searchable":1,"changeable":1},
{"key":"酷看影视","name":"酷看┃影视","type":3,"api":"csp_Wexkukantv","searchable":1,"changeable":1},
{"key":"腐剧视频","name":"腐剧┃影视","type":3,"api":"csp_WexFujutv","searchable":1,"changeable":1},
{"key":"两个磁力","name":"两个┃影视","type":3,"api":"csp_Wexbttwo","searchable":1,"changeable":1},
{"key":"在线之家","name":"在线┃之家","type":3,"api":"csp_Wexzxzj","searchable":1,"changeable":1},
{"key":"南瓜影视","name":"南瓜┃影视","type":3,"api":"csp_WexNgys","searchable":1,"quickSearch":1,"filterable":0},
{"key":"愉悦影视","name":"愉悦┃影视","type":3,"api":"csp_Wexyuyueys","searchable":1,"changeable":1},
{"key":"FreeOK","name":"富瑞┃影视","type":3,"api":"csp_FreeOK","searchable":1,"quickSearch":1,"filterable":1},
{"key":"兄弟影视","name":"兄弟┃影视","type":3,"api":"csp_Wexxiongdiys","searchable":1,"changeable":1},
{"key":"明日影视","name":"明日┃影视","type":3,"api":"csp_WexMingriys","searchable":1,"changeable":1},
{"key":"啾啾影视","name":"啾啾┃影视","type":3,"api":"csp_Wexjiohub","searchable":1,"changeable":1},
{"key":"骚火影视","name":"骚火┃影视","type":3,"api":"csp_Wexsaohuo","searchable":1,"changeable":1},
{"key":"快看影视","name":"快看┃影视","type":3,"api":"csp_Kuaikan","searchable":1,"quickSearch":1,"filterable":1},
{"key":"桃子┃影视","name":"桃子┃影视","type":3,"api":"csp_Taozi","searchable":1,"quickSearch":1,"filterable":1},
{"key":"笙歌┃影视","name":"笙歌┃影视","type":3,"api":"csp_AppYY","searchable":1,"quickSearch":0,"changeable":0},
{"key":"全网┃影视","name":"全网┃影视","type":3,"api":"csp_Quanwk","searchable":1,"quickSearch":1,"filterable":1},
{"key":"最新┃影视","name":"最新┃影视","type":3,"api":"csp_Zx1080","searchable":1,"quickSearch":1,"filterable":1},
{"key":"天天影视","name":"天天┃影视","type":3,"api":"csp_AppTT","searchable":1,"quickSearch":1,"filterable":1},
{"key":"剧圈影视","name":"剧圈┃影视","type":3,"api":"csp_Juqq","searchable":1,"quickSearch":1,"filterable":1},
{"key":"毛驴影视","name":"毛驴┃影视","type":3,"api":"csp_MaoLv","searchable":1,"quickSearch":1,"filterable":1},
{"key":"可可影视","name":"可可┃影视","type":3,"api":"csp_Keke","searchable":1,"quickSearch":1,"filterable":1},
{"key":"圣城影视","name":"圣城┃影视","type":3,"api":"csp_SC1080","searchable":1,"quickSearch":1,"filterable":1},
{"key":"机器人","name":"机器┃影视","type":3,"api":"csp_Ikanbot","searchable":1,"quickSearch":1,"changeable":1,"ext":"https://v.aikanbot.com"},
{"key":"大米星球","name":"大米┃影视","type":3,"api":"csp_AppDaMi","searchable":1,"quickSearch":0,"filterable":0},
{"key":"热播影视","name":"热播┃影视","type":3,"api":"csp_AppRB","searchable":1,"quickSearch":1,"filterable":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},
{"key":"利播影视","name":"利播┃影视","type":3,"api":"csp_Wexlibhd","searchable":1,"changeable":1},
{
"key": "4kvm",
"name": "四千┃影视",
"type": 3,
"searchable": 1,
"changeable": 1,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"api": "csp_XBPQ",
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/4kys.json"
},{
"key": "yt",
"name": "宝盒┃4K",
"type": 3,
"api": "csp_AppYsV2",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": " http://cms-yt.lyyytv.cn/api.php/app/"
}, {
"key": "皮皮影视吧",
"name": "皮皮|影视",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"playerType": "2",
"ext": {
"请求头": "",
"主页url": "https://www.pipiysb.com/",
"数组": "<article id=\"post-*\"&&</article>",
"图片": "img src=\"&&\"",
"标题": "alt=\"&&\"",
"副标题": "update\">&&</div>+icon-star2\">&&</div>",
"链接": "href=\"&&\"",
"简介": "title'>&&</span>+wp-content\">&&</p",
"线路二次截取": "",
"线路数组": "se-q'>&&</a>",
"线路标题": "皮皮4K专线",
"多线数组": "se-q'>&&</a",
"多线链接": "href=\"&&\"",
"播放二次截取": "playernotice&&</h2>[替换:</span>>>videourls:表题第1集题接\\&mvsource=0接表tables]",
"播放数组": "videourls:&&tables[替换:{\"name\":>>表题第#,\"url\":>>集题接\\&source=0\\&ep=#}>>接表]",
"播放列表": "表&&表",
"播放标题": "题&&题",
"播放链接": "接&&接",
"播放链接前缀": "https://www.pipiysb.com/artplayer?id=+postid-&&\"",
"倒序": "0",
"影片类型": "sgeneros\">&&</div>",
"影片年代": "默认--dateCreated\">*,&&</span>||电影--dateCreated'>*,&&</span>",
"导演": "name\">&&</div>",
"主演": "默认--演员</h2>&&<div id=\"info||电影--演员</h2>&&分享",
"分类url": "https://www.pipiysb.com/{cateId}/page/{catePg}/[https://www.pipiysb.com/{cateId}/];;r",
"分类": "电影&电视剧&美剧&国产剧&韩剧&番剧&热门播放&评风榜",
"分类值": "films&tv&classify/meiju&classify/guochan&classify/hanju&classify/fanju&trending&ratings"
}
}, {
"key": "落攻阁",
"name": "落攻阁|影视",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"ext": {
"主页url": "https://www.lggys.com/",
"图片": "data-original=\"&&\"",
"标题": "title=\"&&\"",
"播放链接": "href=\"&&\"",
"导演": "导演:&&</div>",
"主演": "主演:&&</div>",
"线路数组": "<div class=\"module-tab-item&&</div>",
"线路标题": "<span>&&</span>",
"分类url": "https://www.lggys.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
"分类": "电影$dianying#电视剧$dianshiju#综艺$zongyi#动漫$dongman#短剧$shuangwenduanju"
}
}, {"key":"弹幕1","name":"玩偶┃哥哥","type":3,"api":"csp_Wogg","searchable":1,"quickSearch":1,"filterable":1,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"弹幕2","name":"玩偶┃表哥","type":3,"api":"csp_Wogg","quickSearch":1,"changeable":1,"filterable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"夸克玩弹幕1","name":"玩偶┃夸克1","type":3,"api":"csp_Wobg","searchable":1,"quickSearch":1,"filterable":1,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"夸克玩弹幕3","name":"玩偶┃夸克2","type":3,"api":"csp_Wobg","quickSearch":1,"changeable":1,"filterable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","site":"https://tudou.lvdoui.top","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"夸克玩弹幕4","name":"玩偶┃弹幕","type":3,"api":"csp_Wobg","quickSearch":1,"changeable":1,"filterable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","site":"https://tv.yydsys.top","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"夸克玩弹幕5","name":"玩偶┃表弟","type":3,"api":"csp_Wobg","quickSearch":1,"changeable":1,"filterable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","site":"https://duopan.fun","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"夸克玩弹幕6","name":"玩偶┃表弟","type":3,"api":"csp_Wobg","quickSearch":1,"changeable":1,"filterable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","uc_cookie":"http://127.0.0.1:9978/file/TVBox/uc.txt","site":"https://mihdr.top","danmu":true},"jar":"https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"夸克影搜弹幕","name":"影搜┃搜索","type":3,"api":"csp_Yingso","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"搜索弹幕","name":"搜索┃弹幕","type":3,"api":"csp_PanSearch","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"云云弹幕","name":"云搜┃搜索","type":3,"api":"csp_Upys","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"云搜弹幕","name":"云搜┃弹幕","type":3,"api":"csp_UpYun","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"盘搜弹幕","name":"盘搜┃搜索","type":3,"api":"csp_PanSou","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"易搜弹幕","name":"易搜┃搜索","type":3,"api":"csp_YiSo","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","danmu":true,"cookie":"satoken=60201207-5254-4d44-8ed9-db4ed5476163"},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"云盘弹幕","name":"云盘┃搜索","type":3,"api":"csp_Yunpan4k","searchable":1,"filterable":0,"changeable":1,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","cookie":"http://127.0.0.1:9978/file/TVBox/quark.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"},
{"key":"小纸条弹幕","name":"小纸条┃搜索","type":3,"api":"csp_XiaoZhiTiao","searchable":1,"filterable":1,"changeable":0,"ext":{"token":"http://127.0.0.1:9978/file/TVBox/tok.txt","danmu":true},"jar": "https://gitee.com/juanxiao/bh/raw/master/dm.jar"}, {
"key": "七夕❤️无广",
"name": "七夕|影视",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"简介": "宝盒提醒您:请勿相信影片中的广告,以免上当受骗!+<span class=\"detail-content\" style=*>&&</span>",
"导演": "宝盒TV",
"主演": "主演:&&</p>",
"影片状态": "状态:&&</p>",
"搜索url": "/search.php;post;searchword={wd}",
"线路数组": "<h3&&/h3>",
"线路标题": "宝盒专享",
"分类url": "http://www.7xdy.com/{cateId}/index{catePg}.html[http://www.7xdy.com/{cateId}/index.html];;k",
"分类": "电影$dianyingpian#电视剧$dianshiju#综艺$zongyi#动漫$dongman"
}
}, {
"key": "米爱💋蓝光",
"name": "米爱|蓝光",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"简介": "宝盒提醒您,请勿相信影片中的广告,以免上当受骗!+剧情:&&(米爱影视频+。",
"导演": "宝盒TV",
"主演": "宝盒粉丝们",
"影片状态": "集数:&&</div>",
"影片类型": "video-info-aux scroll-content\">&&立即播放",
"数组": "module-item-pic\">&&module-item\">",
"标题": "title=\"&&\"",
"副标题": "module-item-text\"&&</div>",
"图片": "data-src=\"&&\"",
"链接": "href=\"&&\"",
"搜索url": "/vodsearch/-------------.html?wd={wd}",
"搜索数组": "lazy lazyload\"&&<h3>",
"搜索标题": "alt=\"&&\"",
"搜索副标题": "<a class=\"video-serial\" href=*>&&</a>",
"搜索图片": "data-src=\"&&\"",
"搜索链接": "href=\"&&\"",
"线路数组": "data-dropdown-value=&&</div>",
"线路标题": "宝盒专享",
"播放数组": "sort-item\"&&</div>",
"播放标题": "<span>&&</span>",
"播放列表": "<a&&</a>",
"分类url": "https://www.miai9.cc/vodshow/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html;;ak",
"分类": "电影$1#电视剧$2#综艺$3#动漫$4#纪录片$32"
}
},
{
"key": "云播💋蓝光",
"name": "云播|蓝光",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"导演": "宝盒TV",
"主演": "主演:</span>&&</p>",
"简介": "宝盒提醒您,请勿相信影片中的广告,以免上当受骗!+class=\"sketch content\">&&</span>",
"数组": "myui-vodlist__thumb&&</a>",
"标题": "title=\"&&\"",
"副标题": "pic-tag pic-tag-top\">&&</span>",
"图片": "data-original=\"&&\"",
"链接": "href=\"&&\"",
"搜索模式": "1",
"搜索url": "/vod/search.html?wd={wd}&submit=",
"搜索数组": "myui-vodlist__thumb img-lg-150 img-md-150 img-sm-150 img-xs-100 lazyload\"&&</a>",
"搜索标题": "title=\"&&\"",
"搜索副标题": "background-color:*>&&</span>",
"搜索图片": "data-original=\"&&\"",
"搜索链接": "href=\"&&\"",
"线路数组": "</a><h3&&/h3>",
"线路标题": "宝盒专享",
"分类url": "http://www.tvyb03.com/vod/show/area/{area}/by/{by}/class/{class}/id/{cateId}/lang/{lang}/page/{catePg}/year/{year}.html",
"分类": "电影$1#电视剧$2#综艺$3#动漫$4"
}
},
{"key": "白嫖者","name": "白飘|影视","type": 3,"api": "csp_XBPQ","jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar","ext": {"分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html","分类":"电影$1#电视剧$2#动漫$4#综艺$3","副标题":"class=\"pic-text text-right\"&&</span>","简介":"+剧情介绍:&&</p >"}}, {
"key": "三米ys",
"name": "三米|秒播",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"ext": {
"分类url": "http://www.9-here.com/index.php/s/S-id-{cateId}-{catePg}/area/{area}/by/{by}/class/{class}/lang/{lang}/year/{year}.html[http://www.9-here.com/index.php/t/S-{cateId}-{catePg}.html]",
"分类": "电影$movie#连续剧$drama#动漫$comic#综艺$tvshow"
}
},
{
"key": "xcys",
"name": "星辰|影视",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar",
"ext": {
"分类url": "http://m.disc800.com/species/{cateId}/area/{area}/by/{by}/class/{class}/lang/{lang}/page/{catePg}/year/{year}.html",
"分类": "电影$1#连续剧$2#动漫$3#综艺$4#纪录片$5"
}
},
{"key":"drpy_js_MP4US","name":"MP4电影[js]|磁","type":3,"api":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"./js/mp4us.js", "quickSearch":1, "changeable":1, "timeout":60},
{"key":"drpy_js_酷吧","name":"酷吧[js]|磁","type":3,"api":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"./js/kuba.js", "quickSearch":1, "changeable":1, "timeout":60},
{"key":"Xunlei8","name":"Xunlei8|磁","type":3,"api":"csp_Xunlei8","changeable":1, "timeout":60},
{"key":"SeedHub","name":"SeedHub|磁","type":3,"api":"csp_SeedHub","changeable":1, "timeout":60},
{"key": "push_agent","name": "推送","type": 3,"api": "csp_Push","changeable":0, "timeout":30, "ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json"},
{ "key": "csp_Dm84", "name": "🚌动漫巴士", "type": 3, "api": "csp_Dm84", "searchable": 1, "quickSearch": 1, "filterable": 1 }, { "key": "csp_Ying", "name": "💮樱花动漫", "type": 3, "api": "csp_Ying", "searchable": 1, "quickSearch": 1, "filterable": 1 }, { "key": "csp_Ysj", "name": "🎀异界动漫", "type": 3, "api": "csp_Ysj", "searchable": 1, "quickSearch": 1, "filterable": 1 }, { "key": "csp_Anime1", "name": "🐾日本动漫", "type": 3, "api": "csp_Anime1", "searchable": 1, "quickSearch": 1, "filterable": 1 },
{"key":"22","name":"接口仅供测试,请勿贩售","type":0,"api":""},
{"key":"18","name":"请勿相信视频中的任何广告","type":0,"api":""},
{"key":"1","name":"🔞🈲未成年人禁止访问,请止步!!","type":0,"api":""},
{"key":"17","name":"🔞🈲分割线——————","type":0,"api":""},
{"key":"14","name":"🔞分割线——————","type":0,"api":""},
{
"key": "色播",
"name": "🔞色播直播",
"type": 3,
"api":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/h/色播.js",
"searchable": 1,
"changeable": 0
},{
"key": "py_liushoushaofu",
"name": "🤪 留守少妇(T4_Py)",
"type": 4,
"api": "https://py.doube.eu.org/api?site=liushoushaofu",
"searchable": 0,
"quickSearch": 0,
"filterable": 0,
"style": {
"type": "rect",
"ratio": 1.33
}
}, {
"key": "XHP",
"name": "高清小黄片",
"type": 3,
"api": "csp_XBPQ",
"ext": {
"主页url": "http://gqxhp.top/",
"分类": "高清一区$1#高清二区$2#高清三区$3#高清福利$33",
"分类url": "http://gqxhp.top/index.php/vod/type/id/{cateId}/page/{catePg}.html"
}
},{
"key": "农夫与少妇",
"name": "🔞农夫与少妇",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/nfsf.json"
}, { "key": "手鸡助手", "name": "🔞手鸡助手", "type":3,"api":"csp_XBPQ", "ext":{"请求头": "手机", "直接播放": "1",
"分类url":"https://mcpg.sjzs199p.buzz/?mod=videos&cateid={cateId}&page={catePg}",
"分类":"日韩有码$480#日韩无码$481#中文字幕$483#AV解说$485#欧美情色$482#国产情色$479#网红主播$484#卡通动漫$1505","播放标题": "<h1&&</h1>",
"搜索url":"https://mcpg.sjzs199p.buzz/?mod=videos&wd={wd}"
}},{
"key": "XMVideo",
"name": "🔞熊猫视频",
"type": 3,
"api": "csp_XMVideo",
"searchable": 1,
"filterable": 1,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
}, {
"key": "av影视",
"name": "🔞av影视|XBPQ",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"图片": "data-src=\"&&\"",
"直接播放": "1",
"分类url":"https://wyaslcwgroup.cfd/index.php/vod/type/id/{cateId}/page/{catePg}.html",
"分类": "国产视频$1#主播$2#黑料$3#中文$6#国产传媒$7#制服$12#抖音$15#三级$17#AV解说$18#日本有码$8#日本无码$9#强奸乱轮$11#动漫$13#明星换脸$14#女优明星$16"
}
},{
"key": "✨R撸巴✨",
"name": "✨R撸吧✨",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"jar":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"filterable": 1,
"ext": {
"数组": "img-box cover-md\"&&<p class=\"sub-title\">",
"标题": ">&&</a></h6>",
"图片": "data-src=\"&&\"",
"副标题":"✨多看少撸✨",
"链接": "href=\"&&\"",
"分类url": "https://www.rluba-mod.sbs/index.php/vodtype/{cateId}-{catePg}.html;;z",
"分类": "卡通动漫$49#无码中文$34#强奸中文$35#巨乳中文$36#乱伦中文$37#制服中文$38#人妻中文$39#调教中文$40#出轨中文$41#中文字幕$59#欧美性爱$29#性爱音乐视频-PMV$93#人兽$30#人妖$31#MomsTeachSex$95#男同$32#女同$33#Fake Taxi$83#Barzzers$87#Wow Girls$117#FamilyStrokes$116#骑兵有码$27#步兵无码$28#制服师生$50#强奸乱伦$51#人妻熟女$53#三级剧情$55#丝袜美腿$56#亚洲情色$58#麻豆视频$161#91制片厂$162#天美传媒$163#蜜桃传媒$164#皇家华人$165#星空传媒$166#精东影业$167#大象传媒$168#91茄子$169#性视界传媒$170#兔子先生$171#杏吧原创$172#香蕉传媒$174#SA国际传媒$175#EDmosaic$176#PsychoPorn$177#糖心Vlog$178#葫芦影业$179#果冻传媒$180#国产精品$10#精品三级$11#主播大秀$12#抖阴视频$13#国模私拍$14#颜射瞬间$15#女神学生$16#美熟少妇$17#娇妻素人$18#空姐模特$19#国产乱伦$20#专题$26#自慰群交$21#野合车震$22#职场同事$23#国产名人$24#网曝门事件$25#偷拍自拍$57#北京天使$119"
}
},
{
"key": "✨柠檬✨",
"name": "✨🔞柠檬✨",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"jar":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"filterable": 1,
"ext": {
"数组": "<a&&</a>",
"标题": "<p&&</p>",
"图片": "<img src=\"&&\"",
"链接": "href=\"&&\"",
"分类url": "https://www.lsshaofu.xyz/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
"分类": "国产精品$1#日韩精选$2#国产传媒$3#国产自拍$27#网红网爆$5#成人动漫$21#巨乳美乳$22#熟女人妻$23#主播直播$24#强奸乱伦$25#古怪少女$26#经典三级$4"
}
},{
"key": "php_madou",
"name": "🔞麻豆xx",
"type": 4,
"api": "https://t4.doube.eu.org/madou.php",
"searchable": 1,
"quickSearch":0,
"filterable":0,
"style": {
"type": "rect",
"ratio": 1.33
}
},{
"key": "JAVSB",
"name": "🔞JAVSB",
"type": 3,
"api": "csp_XBPQ",
"ext": {
"主页url": "https://jav.sb/",
"直接播放": "1",
"数组": "class=\"relative aspect-w-16 aspect-h-9 rounded overflow-hidden shadow-lg\"&&</div>",
"图片": "data-src=\"&&\"",
"标题": "alt=\"&&\"",
"链接": "href=\"&&\"",
"分类url": "https://jav.sb/javtype/{cateId}-{catePg}.html",
"分类": "日本有碼$Censored#日本無碼$Uncensored#FC2-PPV$FC2-PPV#無碼破解$Mosaic_Removed#中文字幕$CHN_SUB#MGS動画$MGS#寫真$Adult_IDOL#國產$Asian_Amateur"
}
},{"key": "SOAV",
"name": "🔞SOAV",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"主页url": "https://www.wantav.co/",
"搜索url": "https://777080.xyz/?s={wd}",
"数组": "data-video-uid=&&</div>",
"图片": "data-src=\"&&\"",
"标题": "alt=\"&&\"",
"副标题": "</i>&&</span>",
"链接": "href=\"&&\"",
"简介": "⚠️少看点,再看你就废了!!!",
"分类url": "https://777080.xyz/category/{cateId}/page/{catePg}/;;z",
"分类": "國產精選$國產精選#探花約炮$探花約炮#日韓影片$日韓影片#無碼素人$無碼素人#歐美專區$歐美專區#中字動漫$中字動漫"
}
},{"key": "TaiAv",
"name": "🔞TaiAv",
"type": 3,
"api": "csp_XBPQ",
"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": "NiceAv",
"name": "🔥NiceAv",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"主页url": "https://www.nice106.xyz/",
// "搜索url": "https://www.nice106.xyz/index.php/vod/search/wd={wd}",
//"数组": "col-6 col-sm-4 col-lg-3 mb-3\"> <a class=\"tag text-light\" href=\"&&",
"图片": "src=\"&&\"",
//"标题": "title=\"&&\"",
//"副标题": "</span>&&</div>",
// "链接": "href=\"&&\"",
"简介": "⚠️慢点撸,皮要掉了!!!",
"分类url": "https://www.nice106.xyz/index.php/vod/type/id/{cateId}.html",
"分类": "中文字幕$1#日本有码$2#日本无码$3#AV解说$4#cosplay$5#黑丝诱惑$6#SWAG$7#自拍偷拍$8#激情动漫$9#网红主播$10#探花系列$11#三级伦理$12#VR视角$13#国产传媒$14#素人搭讪$15#门事件$16"
}
},
{
"key": "RJAV",
"name": "🔞RJAV",
"type": 3,
"api": "csp_XBPQ",
"ext": {
"主页url": "https://rjav.tv/zh/",
"直接播放": "1",
"数组": "class=\"mb15\"&&</li>",
"图片": "src=\"&&\"",
"标题": "title=\"&&\"",
"链接": "href=\"&&\"",
"分类url": "https://rjav.tv/zh/videotype/{cateId}-{catePg}/",
"分类": "FC2-PPV$FC2-PPV#日本無碼$JAV_Uncensored#馬賽克破壞$Mosaic_Removed#國產$Asian_Amateur#日本有碼$JAV_Censored#MGS動画$MGS#中文字幕$JAV+CHN.SUBs#動畫$Anime#歐美成人$Western_Porn#Korean BJ Dance$Korean_BJ_Dance#寫真$Adult_IDOL"
}
},{
"key": "csp_XYQHiker_300分类",
"name": "♥️300分类♥️",
"type": 3,
"api": "csp_XYQHiker",
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/Aoki.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/300分类.json"
},{
"key": "玩偶妹妹",
"name": "玩偶妹妹",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://urcccg.dbtav9.today/cn/home/web/",
"直接播放": "1",
//"数组": "class=\"thumb\"&&</div>",
// "图片": "src=\"&&\"",
//"标题": "title=\"&&\"",
//"链接": "href=\"&&\"",
// "简介": "span.desc&&",
// "主演": "",
"分类url": "https://urcccg.dbtav9.today/vodtype/{cateId}/{catePg}/;;a",
"分类": "国产精品$20#主播大秀$21#唯美视频$22#口交视频$23#日本有碼$24#日本無碼$25#动漫视频$26#欧美视频$27#日韩视频$28#欧美视频$29#动漫视频$30#伦理影片$31"
}
},{
"key": "18insta",
"name": "💗┃💋18INSTA┃💠",
"type": 3,
"api": "csp_XBPQ",
"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":"今天gan少女","name":"🔞今天gan少女","type":3,"api":"csp_XBPQ", "searchable":1,"quickSearch":1,"filterable":1,"ext":{"发布地址":"www.gblw1.buzz","主页url":"https://www.gblw1.buzz","首页":"快乐五区","数组":"class=\"lazy&&</div></div>","图片":"data-original=\"&&\"","标题":"html\">&&</a","简介":"description\" content=\"&&高清","链接":"href=\"&&\"","跳转播放链接":"urlDecode(var player_*url\":\"&&\")","搜索模式":"1","搜索url":"https://www.gblw1.buzz/index.php/vod/search/page/{pg}/wd/{wd}.html","分类数组":"<a&&/a","分类标题":">&&<","分类ID":"/index.php/vod/type/id/&&.html","分类url":"https://www.gblw1.buzz/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z"}},
{"key":"成人重口","name":"🔞成人重口","type":3,"api":"csp_XBPQ", "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": "J91",
"name": "🔞91珍惜",
"type": 3,
"api": "csp_J91",
"searchable": 1,
"filterable": 1,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{"key":"三千免费AV","name":"🔞三千免费AV","type":3,"api":"csp_XBPQ","searchable":1,"quickSearch":1,"filterable":1,"ext":{"发布地址":"1:www.sqmfav.cc,2:www.sqmfav.xyz,3:www.sqmfav.top","主页url":"https://ru4.sqmfav-ebvq.buzz/duoziyuan/laoya","二次截取":"<ul class=\"thumbnail-group&&</ul","数组":"<li&&</li","图片":"data-original=\"&&\"","标题":"<h5><a href=*>&&</a","副标题":"<p class=*>&&-","简介":"description\" content=\"&&【","链接":"href=\"&&\"[替换:detail>>play#.html>>/sid/1/nid/1.html]","跳转播放链接":"urlDecode(var player_*url\":\"&&\")","搜索模式":"1","搜索url":"https://ru4.sqmfav-ebvq.buzz/duoziyuan/laoya/index.php/vod/search/page/{pg}/wd/{wd}.html","分类数组":"<a&&/a","分类标题":">&&<[不包含:更多]","分类ID":"/duoziyuan/laoya/index.php/vod/type/id/&&.html","分类url":"https://ru4.sqmfav-ebvq.buzz/duoziyuan/laoya/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z"}},{
"key": "Cg51",
"name": "🔞51吃瓜",
"type": 3,
"api": "csp_Cg51",
"searchable": 1,
"filterable": 1,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{"key":"51黑料福利社","name":"51黑料福利社","type":3,"api":"csp_XBPQ","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": "sb",
"name": "sb18",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"数组": "<article&&</article>",
"直接播放": "1",
"图片": "data-src=\"&&\"",
"分类url": "https://sexbjcam.com/category/{cateId}/page/{catePg}/?filter=latest;;D",
"分类": "chinese-gril$chinese-gril#korean-bj$korean-bj#chaturbate$chaturbate"
}
}, {"key":"天堂岛",
"name":"🔞天堂岛",
"type":3,
"api":"csp_XBPQ",
"searchable":1,
"quickSearch":1,
"filterable":1,
"ext":{
"主页url":"https://www.ttdao666.buzz",
"数组":"<div class=\"item&&</a",
"图片":"data-original=\"&&\"",
"标题":"title=\"&&\"",
"副标题":"<em>&&</em",
"简介":"description\" content=\"&&剧情",
"链接":"https://www.ttdao666.buzz/vod/play/id/+href=\"/vod/detail/id/&&/\"+/sid/1/nid/1/",
"跳转播放链接":"var player_*\"url\":\"&&\"",
"搜索模式":"1",
"搜索url":"https://www.ttdao666.buzz/vod/search/page/{pg}/wd/{wd}/",
"分类数组":"<a&&/a",
"分类标题":">&&<",
"分类ID":"/vod/type/id/&&/",
"分类url":"https://www.ttdao666.buzz/vod/type/id/{cateId}/page/{catePg}/;;z"}}, {
"key": "avge",
"name": "💗┃💋AVge┃💠",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"主页url": "https://avgle.to",
"数组": "col-6 col-sm-4 col-lg-3\">&&class=\"sub-title&&</div>",
"图片": "data-src=\"&&\"",
"标题": "class=\"title\"><a*>&&</a >",
"链接": "<a href=\"&&\"",
"直接播放": "1",
"分类url": "http://avgle.to/zh/vtype/{cateId}-{catePg}.html",
"分类": "日本有碼$Censored#日本無碼$Uncensored#FC2-PPV$FC2-PPV#中文字幕$JAV_CHN.SUBs#有碼破壞$Mosaic_Removed#MGS動画$MGS#國產成人$Asian_Amateur#歐美成人$Western_Porn#寫真特級$Adult_IDOL#動畫$Anime"
}
},{"key": "BuzzAV",
"name": "🔞BuzzAV",
"type": 3,
"api": "csp_XBPQ",
"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": "女优色库",
"name": "🔞女优色库",
"type": 3,
"api": "csp_XBPQ",
"style": {
"ratio": 1.7
},
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/女优.json"
},{
"key": "暗网色库",
"name": "🔞暗网",
"type": 3,
"api": "csp_XBPQ",
"style": {
"ratio": 1.7
},
"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/lib/暗网.json"
},{
"key": "x",
"name": "❤XX┃合集",
"type": 3,
"changeable": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"api": "csp_XBPQ",
"style": {
"ratio": 1.7
},
"ext": {"数组":"lazyload\"&&</a>[不包含:禽兽爸爸]",
"搜索url": "https://xpdhj.fun/xpdhj/index.php/vod/search/page/{pg}/wd/{wd}.html",
"分类": "仓库资源$1#AVXXC$2#AV奥斯卡$3#115资源$4",
"分类url": "https://xpdhj.fun/xpdhj/index.php/vod/type/id/{cateId}/page/{catePg}.html"
}
},{"key":"吃瓜爆料网","name":"吃瓜爆料网","type":3,"api":"csp_XBPQ","searchable":1,"quickSearch":1,"filterable":1,"ext":{"发布地址":"https://cgblw.com/","数组":"<meta itemprop=\"dateModified&&/h2","图片":"https://tuapi.eees.cc/api.php?category=meinv&type=302","标题":"headline\">&&<","副标题":"content=\"&&\"","链接":"href=\"&&\"","搜索url":"","分类url":"https://www.cgcg7.net/category/{cateId}/{catePg}/;;zDt","分类":"今日吃瓜$jrgb#最热头条$zrtt#网红爆料$whbl#反差爆料$fcbl#聚焦时事$jjss#国产精品$gcjp#校园瓜闻$xygw#吃瓜搞笑$cggx#电影天堂$dytt#领导秘事$ldms#海角论坛$hjlt#暗网猎奇$awlq"}},{
"key": "PPT",
"name": "❤️🔥〔PPT丨XP™〕",
"type": 3,
"api": "csp_XBPQ",
"ext": {
"首页":"电视剧$30",
"数组":"col-4 item p-0 pr-1\">&&class=\"card-body&&</div",
"图片":"src=\"&&\"",
"标题": "alt=\"&&\"",
"副标题": "class=\"badge badge-success\">&&</span>",
"链接": "href=\"&&\"",
"搜索url": "https://ptt.red/node/search?title={wd}",
"搜索数组":"col-4 item p-0 pr-1\">&&class=\"card-body&&</div",
"搜索副标题": "class=\"badge badge-success\">&&</span>",
"多线二次截取": "class=\"tabbable fullwidth\">&&</div",
"多线数组": "class=\"nav-item\">&&</li",
"多线链接": "href=\"&&\"",
"多线链接前缀": "https://ptt.red",
"多线链接后缀": "",
"线路数组":"class=\"nav-item\">&&</li",
"线路标题": "title=\"&&\"",
"播放数组": "默认--class=\"mb-2 fullwidth\">&&</div>||电影--class=\"nav-item\">&&</li",
"播放标题": ">&&</a >",
"播放链接": "href=\"&&\"",
"直接播放":"体育",
"分类": "电影$1#电视剧$3#综艺$2#动漫$4#短剧$66#体育$53",
"分类url":"https://ptt.red/p/{cateId}?page={catePg}"
}
},{"key":"黑料","name":"🍁黑料网","type":3,"api":"csp_XBPQ","searchable":1,"quickSearch":1,"filterable":1,"ext":{"发布地址":"https://155.fun/(T)","短视频":"1","嗅探词":"https://hls.vdtuzv.com/videos3/#.m3u8?","数组":"<a class=\"cursor-pointer&&</a >","图片":"https://tuapi.eees.cc/api.php?category=meinv&type=302","标题":"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":"高清xxxx黑料",
"name":"🍁高清xxxx黑料",
"type":3,
"api":"csp_XBPQ",
"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","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://mirror.ghproxy.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar"},{
"key": "天空影院H",
"name": "天空影院┃H版",
"type": 3,
"api": "csp_XBPQ",
"playerType": "2",
"ext": {
"请求头": "",
"发布页": "",
"主页url": "http://tkyy.site/index.php/vodtype/dianying.html",
"数组": "class=\"stui-vodlist__thumb img-shadow\"&&</a",
"图片": "img src=\"&&\"",
"标题": "title=\"&&\"",
"副标题": "",
"链接": "",
"简介": "💕戒色救你一世,撸管毁你一生💕+left text-muted\">简介:</span>&&</span>",
"线路数组": "<span class=\"more text-muted pull-right&&</h3></div>",
"线路标题": "✨专享✨+title\">&&<",
"播放数组": "class=\"stui-content__playlist column10 clearfix\">&&</ul>",
"播放链接": "href='&&'",
"跳转播放链接": "Base64(var player_*\"url\":\"&&\")",
"跳转解析": "",
"嗅探词": "index.m3u8",
"搜索url": "/index.php/vodsearch/{wd}-------------.html",
"分类url": "http://tkyy.site/index.php/vodshow/{cateId}--------{catePg}---{year}.html",
"分类数组": "<a&&</a",
"分类标题": ">&&</a",
"分类ID": "href=\"/index.php/vodshow/&&-----------.html\""
}
},{
"key": "爱豆传媒",
"name": "🔞爱豆传媒",
"type": 3,
"api": "csp_XBPQ",
"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",
"ext": {
"主页url": "https://www.yasetube.com/",
"直接播放": "1",
"嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
"分类url": "https://www.yasetube.com/video/category/{cateId}/page/{catePg}",
"分类": "女厕偷拍$nvce#海角系列$hj#FC2 PPV$fc2-ppv#Mesubuta系列$me#MILF人妻无码$milf#偷拍自拍$dalu#品牌传媒$madou"
}
},{
"key": "色最色",
"name": "🔞色最色",
"type": 3,
"api": "csp_XBPQ",
"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": "18j.tv",
"name": "🔞18j.tv",
"type": 3,
"api": "csp_XBPQ",
"ext": {
"主页url": "https://18j.tv/",
"直接播放": "1",
"嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
"图片": "data-original=\"&&\"",
"标题": "title=\"&&\"",
"链接": "href=\"&&\"",
"分类url": "https://18j.tv/show/{cateId}/nid/1/page/{catePg}/sid/1/",
"分类": "国产$1#日韩$2#欧美$3#伦理$4#动漫$16"
}
},{"key": "JAVDAY",
"name": "🔞JAVDAY",
"type": 3,
"api": "csp_XBPQ",
"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": "airav",
"name": "💕AirAv",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"直接播放": 1,
"主页url": "https://airav.io/",
"数组": "div class=\"row row-cols-2 row-cols-lg-4 g-2 mt-0\"&&</div>",
"图片": "img src=\"&&\"",
"标题": "alt=\"&&\"",
"链接": "a href=\"&&\"",
"简介": "div class=\"oneVideo-body\"&&</div>",
"线路数组": "div class=\"owl-carousel owl-carousel-banner owl-theme\"&&</div>",
"线路标题": "div class=\"oneVideo-body\"&&</div>",
"分类url": "https://airav.io/{cateId}/{catePg}.html",
"分类": "最新發行$recent/1#最熱門$popular/2#最多觀看$mostviewed/3#最新影片$newest/4#女優專區$actress/5#類型一覽$type/6#AV影評$review/7#遊戲專區$game/8"
}
},
{
"key": "lijav",
"name": "💕LiJav",
"type": 3,
"api": "csp_XBPQ",
"style": {
"type": "rect",
"ratio": 1.5
},
"ext": {
"直接播放": 1,
"主页url": "https://lijav.com/",
"数组": "div[class=\"swiper-slide common_video_swiper_item\"]&&</div>",
"图片": "div[class=\"withRatio _cover\"]&&",
"标题": "div[class=\"homecoverheader_1_title\"]&&</div>",
"链接": "a[class=\"homecoverheader_1_item\"] href=\"&&\"",
"简介": "div[class=\"homecoverheader_1_overlay\"]&&",
"发布日期": "div[class=\"homecoverheader_1_date\"]&&</div>",
"线路数组": "div[class=\"swiper-slide common_video_swiper_item\"]&&</div>",
"线路标题": "div[class=\"homecoverheader_1_title\"]&&</div>",
"分类url": "https://lijav.com/{cateId}/{catePg}.html",
"分类": "主頁$home/1#最受歡迎$popular/2#搜尋$search/3#全部$all/4#有碼影片$coded/5#無碼影片$uncoded/6#中文字幕$subtitles/7#類別$categories/8#女優$actresses/9#我的片單$mylist/10"
}
},
{
"key": "AVTOP10",
"name": "🔞AVTOP10",
"type": 3,
"api": "csp_XBPQ",
"ext": {"页面代理":"127.0.0.1:10172",
"主页url": "https://avtop10.com/",
"头部集合": "User-Agent$Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36#authority$avtop10.com#referer$https://avtop10.com/",
"分类": "最新影片&热门影片&高清影片&日本AV&欧美AV&动漫AV&中文字幕AV&无码AV&偷拍自拍&制服诱惑&人妻熟女&巨乳美乳&制服诱惑&学生校园&SM调教&网络红人&3P群交&乱伦家庭&强奸迷奸&性爱技巧&自慰诱惑",
"分类值": "1&2&3&4&5&6&7&8&9&10&11&12&13&14&15&16&17&18&19&20&21",
"分类url": "https://avtop10.com/api.php/provide/vod/?ac=list&ac=detail&t={cateId}&pg={catePg}",
"数组二次截取": "list\":[&&]",
"数组": "{&&}",
"图片": "vod_pic\"*\"&&\"",
"标题": "vod_name\"*\"&&\"",