-
Notifications
You must be signed in to change notification settings - Fork 0
/
pro.json
2351 lines (2314 loc) · 111 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://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/pg.jar",
"lives":[
{
"name": "live",
"url": "http://oy.oyxx-1.eu.org/hhbb.php",
"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://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/douban.json"
},
{
"key": "网盘配置",
"name": "网盘及彈幕配置",
"type": 3,
"api": "csp_Config",
"searchable": 0,
"changeable": 0,
"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json"
},
{"key":"Local","name":"本地","type":3,"api":"csp_Local"},{"key":"Wobg","name":"玩偶表哥|网盘","type":3,"api":"csp_Wobg","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://wobge.run.goorm.io$$$null$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/wogg.json"},
{"key":"Wogg","name":"玩偶哥哥|网盘","type":3,"api":"csp_Wogg","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://wogg.link/$$$proxy$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/wogg.json"},
{"key":"Wobg","name":"玩偶表哥|网盘","type":3,"api":"csp_Wobg","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://wobge.run.goorm.io$$$proxy$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/wogg.json"},
{
"key": "saohuo",
"name": "🌙️骚火┃电影",
"type": 3,
"searchable": 1,
"changeable": 1,
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/pg/yg.jar",
"api": "csp_XBPQ",
"ext": {
"嗅探词": ".m3u8#.mp4#.m3u8?#freeok.mp4",
"分类url": "https://shdy2.com/list/{cateId}-{catePg}.html;;vr1au0",
"分类": "电影$1#电视剧$2#韩剧$22#美剧$23#动漫$4",
"数组二次截取": "class=\"v_list\">&&</ul>",
"数组": "\"v_img\"&&/div>",
"标题": "title=\"&&\"",
"副标题": "v_note\"&&</div",
"跳转播放链接": "<iframe*src=\"&&\"",
"二次跳转播放链接": "https://hhjx.hhplayer.com/api.php;post;url=+var url*\"&&\"+&t=+var t*\"&&\"+&key=+var key*\"&&\"+&act=0+&play=1",
"三次跳转播放链接": "\"url\"*\"&&\""
}
},{
"key": "csp_xBPQ_秒",
"name": "👩🎓文才推荐²",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/文才.json",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar"
},{
"key": "csp_xBPQ_毒蛇",
"name": "毒蛇|影视",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/毒蛇影视.json",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar"
},
{"key":"XBPQ_黑狐影院","name":"黑狐影院|XBPQ","type":3,"api":"csp_XBPQ", "jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/pg/yg.jar",
"ext": {
"站名": "黑狐影院",
"主页url": "http://fagmn.com",
"数组": "class=\"stui-vodlist__box\"&&</a",
"图片": "data-original=\"&&\"",
"标题": "title=\"&&\"",
"链接": "href=\"&&\"",
"嗅探词": ".m3u8?#v3.huoshanvod.com#.m3u8#v3-dy-o.zjcdn#sf16-sg.larksuitecdn.com#v.kd1.qq.com#.mp4",
"过滤词": "/hls/#php",
"副标题": "<span class=\"pic-text text-right\">&&</span>",
"搜索url": "http://fagmn.com/search.php;post;searchword={wd}",
"搜索模式": "1",
"搜索数组": "<a class=\"v-thumb stui-vodlist__thumb&&</a>",
"搜索图片": "data-original=\"&&\"",
"搜索标题": "title=\"&&\"",
"搜索链接": "href=\"&&\"",
"搜索副标题": "<span class=\"pic-text text-right\">&&</span>",
"搜索后缀": "/view/",
"线路数组": "href=\"#down&&/a>[替换:奇异视频>>黑狐一线#优酷视频>>黑狐二线#搜狐视频>>黑狐三线#咪咕视频>>黑狐四线]",
"线路标题": ">&&<",
"播放数组": "class=\"stui-content__playlist clearfix&&</ul>",
"状态": "地区:&&</p>",
"导演": "导演:&&</p>",
"主演": "主演:&&</p>",
"简介": "简介:&&</div>",
"播放列表": "<a&&/a>",
"播放标题": ">&&<",
"播放链接": "href=\"&&\"",
"免嗅": "0",
"分类": "电影$1#电视剧$2#动漫$3#综艺$4",
"分类url": "http://fagmn.com/list/{cateId}_{catePg}.html?order=time"
}
},{
"key":"XBPQ_电影先生",
"name": "电影先生|XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/pg/yg.jar",
"type": 3,
"api": "csp_XBPQ",
"ext": {
"分类url": "https://dianyi.ng/pianku-{cateId}-{area}-------{catePg}---{year}.html",
"简介": "class=\"video-info-item video-info-content vod_content\">&&</span>",
"搜索url": "https://dianyi.ng/search--------------.html?wd={wd}",
"搜索数组": "<div class=\"module-item-pic\">&&</div>",
"图片": "src=\"&&\"",
"搜索标题": "title=\"&&\"",
"搜索副标题": ">&&</a>",
"线路数组": "data-dropdown-value=&&</div>",
"线路标题": "<span>&&</small>[替换:<span></small>共]+集",
"播放数组": "<div class=\"scroll-content\">&&</div>",
"播放标题": "<span>&&</span>",
"分类": "电影$dianying#电视剧$dianshiju#动漫$dongman#综艺$zongyi"
}
},
{
"key": "河马",
"name": "河马┃App",
"type": 3,
"api": "csp_Hmys",
"playerType": 1,
"ext": "https://m.jmzp.net.cn$$$null$$$1"
},
{
"key": "天天",
"name": "天天┃App",
"type": 3,
"api": "csp_TTian",
"playerType": 1,
"ext": "http://op.ysdqjs.cn$$$null$$$1"
},
{
"key": "追剧",
"name": "追剧┃App",
"type": 3,
"api": "csp_TTian",
"playerType": 1,
"ext": "http://app.kzjtv.com$$$null$$$1"
},
{
"key": "賤賤",
"name": "荐片",
"type": 3,
"api": "csp_Jianpian",
"searchable": 1,
"changeable": 1,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/jianpian.json$$$1",
"timeout":60
},
{
"key": "tvbsk",
"name": "TVB云播┃App",
"type": 3,
"api": "csp_Skapp",
"playerType": 2,
"ext": "CWL+IfA5s3TICYJ8lk+lYcjPA/WXNYE4LRTfUSa9I+X9ibZY05syLe/O7u2miaiYRiSaKE51xQOxm38YeL27jRUyF6+GJKVQArnP7QbC+qw2okju8YACfPzD3rpQo8uckl2rQh925A6lp4VD0ELHJrUvDGTlojwKtynX78d5E88HbdSsCV5pIueNPH5+z42FBt21KGN5lnE7/qqEGpSyFzbARD4aWuhSHsun7GQU9yaXZn0F4l4o2YYaEvRtsz4z9Mo8+7aj2nZsCkFWLNpgv6kzFNohSTWVDkajg5aj6s7d8CPNIvvC+gr0zm79fuuvNQF6NfaiBOrvTwamMJa3F3w==$$$null$$$1"
},
{
"key": "索尼资源",
"name": "索尼┃资源",
"type": 1,
"api": "https://suoniapi.com/api.php/provide/vod/from/snm3u8/",
"categories": [
"动作片",
"喜剧片",
"爱情片",
"科幻片",
"恐怖片",
"剧情片",
"战争片",
"国产剧",
"欧美剧",
"韩剧",
"日剧",
"港剧",
"台剧",
"泰剧",
"海外剧",
"纪录片",
"大陆综艺",
"日韩综艺",
"港台综艺",
"欧美综艺",
"国产动漫",
"日韩动漫",
"欧美动漫",
"动画片",
"港台动漫",
"海外动漫",
"演唱会",
"体育赛事",
"篮球",
"足球",
"预告片",
"斯诺克",
"影视解说"
],
"searchable": 1,
"quickSearch": 1
},{"key":"Clg","name":"磁力狗|磁力","type":3,"api":"csp_Clg","searchable":1,"quickSearch":1, "changeable":1, "filterable":0, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://clg.clgvip1.xyz/$$$proxy$$$1",
"style": {
"type": "rect",
"ratio": 1.5
}
},{"key":"美剧迷","name":"美剧迷|网盘","type":3,"api":"csp_Meijumi", "quickSearch":1, "changeable":1, "filterable":1, "timeout":120,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.meijumi.xyz/$$$proxy$$$1"},
{"key":"Libvio","name":"LIBVIO|网盘","type":3,"api":"csp_Libvio","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.libvio.pro$$$null"},
{"key":"Bt0","name":"不太灵|磁力","type":3,"api":"csp_Bt0","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"null$$$null$$$1"},
{"key":"Xpanpan","name":"小盘盘|网盘","type":3,"api":"csp_Xpanpan","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://xpanpan.site$$$proxy$$$1",
"style": {
"type": "list",
"ratio": 1.1
}
},{
"key": "FirstAid",
"name": "🚑 急救知识 ",
"type": 3,
"api": "csp_FirstAid",
"searchable": 0,
"quickSearch": 0,
"changeable": 0,
"style": {
"type": "rect",
"ratio": 3.8
}
},{"key":"ddys","name":"低端影视|网盘","type":3,"api":"csp_Ddys","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://ddys.pro/$$$proxy$$$1$$$"},
{"key":"drpy_js_磁力熊","name":"磁力熊[js]|索引","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/cilixiongp.js","playerType":"1", "searchable":0, "quickSearch":0, "changeable":1,
"indexs":1
},
{
"key":"bili",
"name":"B站 | Bili[jar]",
"type":3,
"api": "csp_Bili",
"searchable": 1,
"quickSearch": 0,
"changeable": 0,
"ext":{
"type":"演唱会#电影#电视剧#帕梅拉#广场舞#纪录片#综艺#鬼畜#音乐#舞蹈#影视#知识#美食#风光#田园#户外#8K#徐云",
"cookie":""
}
},
{"key":"yydsys","name":"玩你老哥|网盘","type":3,"api":"csp_Wobg","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://tv.yydsys.top/$$$proxy$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/wogg.json"},
{"key":"Xinshijue","name":"新视觉|网盘","type":3,"api":"csp_Xinshijue","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.80yy3.com/$$$proxy$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/wogg.json"},
{"key":"影视车","name":"影视车|网盘","type":3,"api":"csp_Wogg","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.weixine.link/$$$proxy$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/wogg.json"},
{"key":"团长资源","name":"团长资源|网盘","type":3,"api":"csp_TZFile", "quickSearch":1, "changeable":1, "filterable":1, "timeout":60,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$proxy$$$1"},
{"key":"Moli","name":"HDmoli|网盘","type":3,"api":"csp_Moli","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.hdmoli.pro/$$$proxy$$$1$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/moli.json"},
{"key":"Hdhive","name":"影巢|网盘","type":3,"api":"csp_Hdhive","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$proxy$$$1"},
{"key":"Ppxzy","name":"皮皮虾|网盘","type":3,"api":"csp_Ppxzy", "quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://ppxzy.net$$$proxy$$$1"},
{"key":"校长影视","name":"校长影视|网盘","type":3,"api":"csp_XiaoZhang", "quickSearch":1, "changeable":1, "filterable":1, "timeout":60,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://xzyshd.com$$$null$$$1"},
{
"key": "Bdys_spider",
"name": "哔滴┃磁力",
"api": "csp_Bdys01",
"type": 3,
"filterable": 1,
"searchable":0,
"quickSearch": 1,
"searchable": 1,
"ext": "https://www.bdys10.com/$$$null$$$1"
},
{"key":"YunPan","name":"云盘资源|网盘","type":3,"api":"csp_YunPan","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$null$$$proxy$$$1"},
{"key":"YingSo","name":"影搜|网盘搜索","type":3,"api":"csp_YingSo","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json"},
{"key":"混合盘","name":"混合盘|网盘搜索","type":3,"api":"csp_HunHePan","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"88Pan","name":"88网盘|网盘搜索","type":3,"api":"csp_EightEight","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://662688.xyz$$$",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"PanSearch","name":"PanSearch|网盘搜索","type":3,"api":"csp_PanSearch","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json"},
{"key":"盘友圈","name":"盘友圈|网盘搜索","type":3,"api":"csp_Panyq","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$site$$$proxy"},
{"key":"易搜","name":"易搜|网盘搜索","type":3,"api":"csp_YiSo","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/yiso.txt",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"秒搜","name":"秒搜|网盘搜索","type":3,"api":"csp_MiaoSou","timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"Funletu","name":"趣盘搜|夸克搜索","type":3,"api":"csp_Funletu","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"QuarkPanso","name":"夸克盘搜|夸克搜索","type":3,"api":"csp_QuarkPanso","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"Panta","name":"盘Ta|网盘","type":3,"api":"csp_Panta","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.91panta.cn/$$$null$$$1",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"DaPanSo","name":"大盘搜|网盘搜索","type":3,"api":"csp_DaPanSo","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://dapanso.com$$$proxy$$$1"},
{"key":"PikaSo","name":"皮卡搜|网盘搜索","type":3,"api":"csp_PikaSo","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.pikaso.top/$$$null",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"Qianfan","name":"千帆|网盘搜索","type":3,"api":"csp_Qianfan","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://pan.qianfan.app$$$null$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/qianfan.txt$$$1"},
{"key":"YunSo","name":"小云搜索|网盘搜索","type":3,"api":"csp_YunSo","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.yunso.net$$$null$$$1",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"YunPanOne","name":"云盘One|网盘搜索","type":3,"api":"csp_YunPanOne","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$null$$$proxy$$$1"},
{
"key": "NanGua",
"name": "南瓜|弹幕",
"type": 3,
"api": "csp_NanGua",
"searchable": 1,
"changeable": 1,
"ext": "null$$$1"
},
{
"key": "新6V",
"name": "新6V|网盘",
"type": 3,
"api": "csp_Xb6v",
"searchable": 1,
"changeable": 1,
"timeout": 60,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://www.66ss.org$$$null$$$1"
},
{"key":"drpy_js_愛盤搜","name":"爱盘搜[js]|夸","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/aipanso.js", "quickSearch":1, "changeable":1, "timeout":60,
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"drpy_js_人人影视","name":"人人影视[js]|搜","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/yyets.js", "quickSearch":1, "changeable":1, "timeout":60,
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"drpy_js_MP4US","name":"MP4电影[js]|磁","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/mp4us.js", "quickSearch":1, "changeable":1, "timeout":60},
{"key":"4KHDR","name":"4KHDR|网盘","type":3,"api":"csp_FourKHDR","quickSearch":1, "changeable":1, "filterable":1, "timeout":60, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json$$$https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/4khdr.txt$$$1",
"style": {
"type": "list",
"ratio": 1.1
}
},
{"key":"UP云搜","name":"阿里|UP云搜","type":3,"api":"csp_UpYun","timeout":30, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/tokenm.json",
"style": {
"type": "list",
"ratio": 1.1
}
},
{
"key": "JustLive",
"name": "JustLive",
"type": 3,
"api": "csp_JustLive",
"searchable": 1,
"changeable": 0
},
{"key":"drpy_js_酷吧","name":"酷吧[js]|磁","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/drpy2.min.js","ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/kuba.js", "quickSearch":1, "changeable":1, "timeout":60},
{"key":"BLSGod","name":"BLSGod|磁","type":3,"api":"csp_BLSGod","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":"AList","name":"网盘|Alist[jar]","type":3,"api":"csp_AList","searchable":1,"filterable":1,"changeable":1,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/alistjar.json"},
{
"key": "快看",
"name": "快看",
"type": 3,
"api": "csp_Kuaikan",
"searchable": 1,
"quickSearch": 1,
"changeable": 0,
"filterable": 1
},
{ "key":"csp_YingShi","name":"影视|海外","type":3,"api":"csp_YingShi","ext":"proxy"},
{
"key": "泥巴",
"name": "泥巴 | 海外",
"type": 3,
"api": "csp_NiNi",
"searchable": 1,
"filterable": 1,
"changeable": 0,
"ext":"0$$$proxy"
},
{
"key": "星星",
"name": "星星 | 海外",
"type": 3,
"api": "csp_Star",
"searchable": 1,
"changeable": 0,
"ext":"proxy"
},
{
"key": "獨播",
"name": "獨播 | 海外",
"type": 3,
"api": "csp_XPathMacFilter",
"searchable": 1,
"changeable": 0,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/duboku.json$$$proxy"
},
{
"key": "haiwaikan",
"name": "海外看",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/https://haiwaikan.com/api.php/provide/vod?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"searchable": 1,
"changeable": 1,
"categories": [
"日本动漫",
"国产动漫",
"欧美动漫",
"国产剧",
"韩剧",
"日剧",
"台剧",
"泰剧",
"港剧",
"欧美剧",
"动画电影",
"韩国综艺",
"国产综艺",
"日本综艺",
"欧美综艺",
"冒险片",
"剧情片",
"动作片",
"同性片",
"喜剧片",
"奇幻片",
"恐怖片",
"悬疑片",
"惊悚片",
"战争片",
"歌舞片",
"灾难片",
"爱情片",
"犯罪片",
"科幻片",
"纪录片",
"经典片"
]
},
{
"key": "ikun",
"name": "ikun",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/https://ikunzyapi.com/api.php/provide/vod/?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"playerType":1,
"searchable": 1,
"changeable": 1
},
{
"key": "飞速资源",
"name": "飞速资源",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/http://fszy1.com/api.php/provide/vod/?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"playerType":1,
"searchable": 1,
"changeable": 1
},
{
"key": "暴風",
"name": "暴風",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/https://bfzyapi.com/api.php/provide/vod?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"searchable": 1,
"changeable": 1
},
{
"key": "索尼",
"name": "索尼 ",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/https://suoniapi.com/api.php/provide/vod?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"searchable": 1,
"changeable": 1
},
{
"key": "快帆",
"name": "快帆",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/https://api.kuaifan.tv/api.php/provide/vod?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"searchable": 1,
"changeable": 1
},
{
"key": "量子",
"name": "量子",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/http://cj.lziapi.com/api.php/provide/vod/?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"playerType":1,
"searchable": 1,
"changeable": 1
},
{
"key": "非凡",
"name": "非凡",
"type": 1,
"api": "http://127.0.0.1:10079/p/0/proxy/http://cj.ffzyapi.com/api.php/provide/vod/?",
"playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=proxy&url=",
"playerType":1,
"searchable": 1,
"changeable": 1,
"categories": [
"国产动漫",
"日韩动漫",
"国产剧",
"韩国剧",
"日本剧",
"电影片",
"连续剧",
"综艺片",
"动漫片",
"动作片",
"喜剧片",
"爱情片",
"科幻片",
"恐怖片",
"剧情片",
"战争片",
"香港剧",
"欧美剧",
"记录片",
"台湾剧",
"海外剧",
"泰国剧",
"大陆综艺",
"港台综艺",
"日韩综艺",
"欧美综艺",
"欧美动漫",
"港台动漫",
"海外动漫"
]
},
{
"key": "櫻花",
"name": "櫻花",
"type": 3,
"api": "csp_Ying",
"searchable": 1,
"changeable": 0
},
{
"key": "巴士",
"name": "巴士",
"type": 3,
"api": "csp_Dm84",
"searchable": 1,
"changeable": 0
},
{
"key": "異界",
"name": "異界",
"type": 3,
"api": "csp_Ysj",
"searchable": 1,
"changeable": 0
},
{
"key": "愛看",
"name": "愛看",
"type": 3,
"api": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/ikanbot_open.js",
"searchable": 1,
"changeable": 0
},
{
"key": "短剧",
"name": "短剧",
"type": 3,
"api": "csp_Duanju",
"searchable": 0,
"changeable": 1,
"ext":"https://www.duanjutv.icu"
},
{"key":"drpy_js_Alist","name":"网盘 | Alist[js]","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/alist.min.js","searchable":1,"filterable":1,"changeable":1,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/js/alist.json"},
{
"key":"MV_vod",
"name":"电视┃MTV",
"type":1,
"api": "https://mv.wogg.link/mv/vod",
"searchable": 1,
"quickSearch": 0,
"changeable": 0
},
{
"key": "酷狗",
"name": "酷狗",
"type": 3,
"api": "csp_Kugou",
"searchable": 1,
"changeable": 0
},
{
"key": "Iktv",
"name": "KTV",
"type": 3,
"api": "csp_Iktv",
"searchable": 1,
"changeable": 0
},
{
"key": "Yinyuetai",
"name": "音悦台",
"type": 3,
"api": "csp_Yinyuetai",
"searchable": 1,
"changeable": 0
},
{"key": "push_agent","name": "推送","type": 3,"api": "csp_Push","changeable":0, "timeout":30, "ext":"https://gh.idayer.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://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/色播.js",
"searchable": 1,
"changeable": 0
},{"key":"lf_js_lf_live","name":"🔞直播","type":3,"api":"https://gh.idayer.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/lib/lf_live_min.js","style":{ "type":"oval"},"searchable":1,"changeable":0,"quickSearch":1,"filterable":1,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/js/lf_live1.txt"},{
"key": "XMVideo",
"name": "🔞熊猫视频",
"type": 3,
"api": "csp_XMVideo",
"searchable": 1,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{
"key": "J91",
"name": "🔞91珍惜",
"type": 3,
"api": "csp_J91",
"searchable": 1,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{
"key": "Cg51",
"name": "🔞51吃瓜",
"type": 3,
"api": "csp_Cg51",
"searchable": 1,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{
"key": "XVideos",
"name": "🔞XVideos",
"type": 3,
"api": "csp_XVideos",
"searchable": 1,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{
"key": "ROU223",
"name": "🔞223ROU | 视频",
"type": 3,
"api": "csp_ROU223",
"searchable": 0,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{
"key": "HiPianZhiBo",
"name": "🔞 嗨片直播 | 视频",
"type": 3,
"api": "csp_HiPianZhiBo",
"searchable": 1,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{"key":"努可影院","name":"🔞努可影院","type":3,"api":"csp_XBPQ","jar":"https://gh.idayer.com/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": "JJAiPian",
"name": "🔞久久爱片 | 视频",
"type": 3,
"api": "csp_JJAiPian",
"searchable": 1,
"filterable": 1,"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/182.jar"
},{"key":"沙咖影院","name":"🔞沙咖影院","type":3,"api":"csp_XBPQ","api":"csp_XBPQ","jar":"https://gh.idayer.com/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": "csp_JavDb",
"name": "🔞🧲JavDb",
"type": 3,
"api": "csp_JavDb",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"changeable": 0,
"timeout": 1801,
"ext": "http://javdb523.com","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/p.jar"
},{"key":"didizy.com","name":"💕滴滴(直连)","type":1,"api":"https://api.ddapi.cc/api.php/provide/vod/?ac=list","searchable":1,"filterable":1},{
"key": "Zuise",
"name": "🔞最色",
"type": 3,
"api": "csp_Zuise",
"quickSearch": 1,
"changeable": 1,
"filterable": 1,
"timeout": 60,
"ext": "null$$$null$$$1$$$socks5://127.0.0.1:10073"
},{"key":"sesehuzy.com","name":"💕色虎(直连)","type":1,"api":"https://apisesehuzy.com/api.php/providedao/vod/?ac=list","searchable":1,"filterable":1},
{"key":"u9a9","name":"🔞u9a9|磁力","type":3,"api":"csp_XBPQ","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/lib/XBPQ.jar","style":{"type":"list"},
"ext": {
"搜索url":"https://u9a9b.cc/?type=1&search={wd}&p={pg}",
"数组":"<tr&&</tr>",
"简介":"Date:</div>&&</",
"图片":" ",
"播放二次截取":"panel-footer clearfix&&</div>",
"播放数组":"<a&&</a>[不包含:Torrent#filecove]",
"分类": "DHT网络$1",
"分类url": "https://u9a9b.cc/?type={cateId}&p={catePg};;m"
}
},{"key":"黄色仓库","name":"🔞黄色仓库","type":3,"api":"csp_XBPQ","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar","style":{"ratio":1.7},"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/黄色仓库.json"},{
"key": "csp_XYBQ",
"name": "🔞比卡|比卡",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/比卡比卡.json"
},{
"key": "csp_91黑料",
"name": "🔞91黑料",
"type": 3,
"api": "csp_XBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://kb17.oneoneno8cd345.xyz/one",
"首页": "400",
"请求头": "User-Agent$PC_UA",
"数组": "<a&&</a>[不包含:91网曝黑料网#最近更新]",
"二次截取": "<div class=\"videoListBox\"&&el-pagination is-background",
"标题": "title\">&&</p>",
"副标题": "time\">&&</div>",
"链接": "https://kb17.oneoneno8cd345.xyz/v/+href=\"/voddetail/&&/\"+/sid/1/nid/1/",
"图片": "data-src=\"&&\"",
"跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
"搜索url": "https://kb17.oneoneno8cd345.xyz/s/wd/{wd}/",
"分类url": "https://kb17.oneoneno8cd345.xyz/t/{cateId}-{catePg}/;;z",
"分类数组": "<a&&</a>",
"分类标题": ">&&</a>",
"分类ID": "/t/&&/"
},"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar"
},{"key":"lyhzyw.com","name":"狼友会","type":1,"api":"https://api.lyhapi.com/api.php/provide/vod/?ac=list","searchable":1,"filterable":1},{ "key": "666",
"name": "🔞撸网666",
"type": 3,
"changeable": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"api": "csp_XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"ext": {"直接播放":"1",
"搜索链接后缀":"-1-1.html",
"搜索url":"https://luw666.ink/index.php/vodsearch/----------{pg}---.html?wd={wd}&submit=",
"分类": "国产传媒$160#日本$2#国产$1#韩国$4#欧美$5#动画$6",
"分类url": "https://luw666.ink/index.php/vodtype/{cateId}-{catePg}.html"
}
},{"key":"2028天天看","name":"🔞2028天天看","type":3,"playerType":2,"api":"csp_XBPQ","jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar","searchable":1,"quickSearch":1,"filterable":1,"ext":{"简介":"class=\"active\" style=\"width:70%;\">&&</li>","链接":"href=\"&&\"","直接播放":"1","搜索url":"http://2028p.com/vodsearch/----------{pg}---.html?wd={wd}&submit=;;RC","分类":"无码$1#中文av$6#国产$2#制服巨乳$7#欧美$3#人妻乱伦$8#有码$4#日韩$9#自拍自慰$10#动漫$5#3P和sm$11#口交颜射$12#写真伦理$13","分类url":"http://2028p.com/vodtype/{cateId}-{catePg}/[http://2028p.com/vodtype/{cateId}/]"}},
{
"key": "csp_XYQHiker_777影院",
"name": "🔞777影院",
"type": 3,
"api": "csp_XYQHiker",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/777影院.json","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/xyqxbpq.jar"
}, {
"key": "Taohuazu",
"name": "💖💃 | 桃花族",
"type": 3,
"api": "csp_Taohuazu",
"searchable": 1,
"quickSearch": 1,
"changeable": 1,
"filterable": 0,
"timeout": 60,
"ext": "http://thzj.cc/forum.php"
},{
"key": "糖心",
"name": "🔞糖心次元",
"type": 3,
"api": "csp_XBPQ",
"jar":"https://gh.idayer.com/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": "csp_顶级网曝",
"name": "🔞顶级网曝",
"type": 3,
"api": "csp_XBPQ",
"jar":"https://gh.idayer.com/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,
"changeable": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"api": "csp_XBPQ",
"jar":"https://gh.idayer.com/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": "我爱AV",
"name": "我爱AV社区|WO❤️AV",
"type": 3,
"api": "csp_XBPQ",
"jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/xyqxbpq.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://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar","searchable":1,"quickSearch":1,"filterable":1,"ext":{"数组":"<div class=\"v-pic&&</a >","图片":"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": "csp_XBPQ_疯猫av",
"name": "🔞疯猫av",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/疯猫av.json"
},{ "key": "x",
"name": "🔞x合集",
"type": 3,
"changeable": 1,
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"api": "csp_XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"style": {"ratio": 1.7},
"ext":{
"搜索url":"https://xpdhj.fun/xpdhj/vod/search/page/{pg}/wd/{wd}.html",
"分类":"仓库资源$1#AVXXC$2#AV奥斯卡$3#115资源$4",
"分类url": "https://xpdhj.fun/xpdhj/vod/type/id/{cateId}/page/{catePg}.html"
}
},{
"key": "天天视频福利版",
"name": "🔞天天视频福利版",
"type": 3,
"playerType": 2,
"api": "csp_XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"ext": {
"主页url": "https://www.ttsp.tv/vodtype/vipfuli.html",
"图片": "data-original=\"&&\"",
"数组": "",
"线路数组": "",
"线路标题": "",
"跳转播放链接": "\"contentUrl\": \"&&\"",
"分类url": "https://www.ttsp.tv/vodshow/{cateId}-{area}--{class}-{lang}-{by}---{catePg}---{year}.html[https://www.ttsp.tv/vodtype/{cateId}.html]",
"分类": "午夜剧场$wuyejuchang#VIP福利片库$65#亚洲情色$85#国产主播$86#国产自拍$87#无码专区$88#欧美性爱$89#熟女人妻$90#强奸乱伦$91#巨乳美乳$92#中文字幕$93#制服诱惑$94#女同性恋$95#卡通动画$96#少女萝莉$97#重口色情$98#人兽性交$99#视频伦理$100"
}
},
{
"key": "csp_XBPQ_奶很大",
"name": "🔞奶很大",
"type": 3,
"api": "csp_XBPQ",
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"searchable": 1,
"quickSearch": 1,
"filterable": 0,
"ext": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/奶很大.json"
},{"key":"虎牙","name":"🔞虎牙采集","type":1,"api":"https://www.huyaapi.com/api.php/provide/vod/from/hym3u8","searchable":1,"quickSearch":1 ,"categories": ["伦理片"]},
{"key": "非凡资源","name": "🔞非凡资源","type": 1,"api": "http://cj.ffzyapi.com/api.php/provide/vod/","searchable": 1,"quickSearch": 1,"playurl":"https://ffzyplayer.com/?url=","categories": ["伦理片"]},
{"key": "快云资源","name": "🔞快云资源","type": 1,"api": "https://kuaiyun-api.com/api.php/provide/vod/","searchable": 1,"quickSearch": 1,"filterable": 1,"style": {"type": "rect","ratio": 1.33},"categories": ["伦理片"]},
{"key": "csp_jiujiuzhobo","name":"🔞久久直播","type": 3, "api": "csp_xBPQ","searchable": 0,"quickSearch": 0, "filterable": 0, "ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/天天直播.json","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/xb.jar"},
{"key":"csp_jy","name":"🔞聚优直播","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/聚优直播0.json","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/xb.jar"},
{"key":"csp_xBPQ_香蕉AV","name":"🔞天天综合","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/天天综合.json","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/Yoursmile2.jar"},
{"key":"csp_xBPQ_香蕉资","name":"🔞天天中文字幕","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/天天中文字幕.json","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/Yoursmile2.jar"},
{"key":"csp_xBPQ_香蕉超","name":"🔞天天国产传媒","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/h/天天国产传媒.json","jar":"https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/Yoursmile2.jar"},
{
"key": "m2v",
"name": "🔞千百撸",
"type": 3,
"jar": "https://gh.idayer.com/https://raw.githubusercontent.com/guot55/yg/main/jar/hl.jar",
"api": "csp_XBPQ",
"ext": {
"站名": "222av.me",
"主页url": "http://041920.222av.me",
"首页": "最新课程",
"数组": "col-sm-6 col-md-4 col-lg-4&&<div class=\"video-added\">",
"链接": "href=\"&&\"",
"嗅探词": "http://m3u8.361lu.com/us.php?",
"分类url": "/videos/{cateId}?page={catePg};;z",
"分类": "全部&3D&素人&日本女优&自拍&金发洋物",
"分类值": "/&3d&amateur&japanese&selfie&western"
}},{
"key": "影视",
"name": "影视18",
"type": 1,
"api": "https://155api.com/api.php/provide/vod/"
}, {"key": "jable",
"name": "💃jable| XBPQ",
"type": 3,