51.json 198 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569
  1. {
  2. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/XYQ.jar",
  3. "logo": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/美.gif",
  4. "wallpaper": "https://picsum.photos/1080/",
  5. "lives":[
  6. {"name":"小武哥(18+)","playerType":2,"url":"https://qu.ax/PEHy.txt","epg":"http://epg.112114.xyz/?ch={name}&date={date}&serverTimeZone=Asia/Taipei"},
  7. {"name":"私密線路(18+)","playerType":2,"url":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/live/178.txt","epg":"http://epg.112114.xyz/?ch={name}&date={date}&serverTimeZone=Asia/Taipei"}
  8. ],
  9. "sites": [
  10. {
  11. "key":"csp_XYQHiker_stripchat直播",
  12. "name": "🔞StripChat直播(XYQHiker)",
  13. "type": 3,
  14. "api": "csp_XYQHiker",
  15. "searchable": 1,
  16. "quickSearch": 0,
  17. "filterable": 0,
  18. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/stripchat直播.json",
  19. "style": {"type": "rect","ratio": 1.6}
  20. },
  21. {
  22. "key": "麻豆",
  23. "name": "🇹🇼【老王成人專區】🇹🇼",
  24. "type": 3,
  25. "changeable": 1,
  26. "filterable": 1,
  27. "api": "csp_XBPQ",
  28. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  29. "style": {
  30. "ratio": 1.7
  31. },
  32. "ext": {
  33. "分类url": "http://gcmd.cc/index.php/vod/show/class/{class}/id/{cateId}/page/{catePg}.html",
  34. "搜索url": "http://gcmd.cc/index.php/vod/search/page/{pg}/wd/{wd}.html",
  35. "分类": "日本视频$1#麻豆视频$2#國產視頻$3",
  36. "剧情": "大乳房&体内射精&水手服&紧身衣&单一作品&荡妇&脏话&女同性恋&业余&角色扮演&和服&女教师&连裤袜||麻豆&天美&蜜桃&皇家&精东&星空&萝莉社&糖心Vlog&乐播&兔子先生&杏吧&果冻&PsychoPorn||萝莉&大奶&交内射&吞精&勾搭&骚穴&车震&约炮&骚货&母狗&捆绑&调教",
  37. "直接播放": "1"
  38. }
  39. },
  40. {
  41. "key": "PG配置",
  42. "name": "PG|配置中心",
  43. "type": 3,
  44. "api": "csp_Config",
  45. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  46. "searchable": 0,
  47. "changeable": 0,
  48. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/tokenm.json",
  49. "style": {
  50. "type": "rect",
  51. "ratio": 1.5
  52. }
  53. },
  54. {
  55. "key": "真心配置",
  56. "name": "真心|配置中心",
  57. "type": 3,
  58. "api": "csp_ConfigCenter",
  59. "jar": "https://github.moeyy.xyz/https://raw.githubusercontent.com/805598571/77/main/jar/custom_spider.jar",
  60. "searchable": 0,
  61. "changeable": 0,
  62. "ext": {
  63. "commonConfig": "http://127.0.0.1:9978/file/TV/peizhi.json"
  64. }
  65. },
  66. {
  67. "key": "潇洒配置",
  68. "name":"潇洒|配置中心",
  69. "type": 3,
  70. "api": "csp_Config",
  71. "jar": "https://git.acwing.com/805598571/666/-/raw/main/jar/spider.jar;md5;6044e3ceb295d82028c72e4524bae5f5",
  72. "searchable": 0,
  73. "changeable": 0,
  74. "indexs": 0,
  75. "style": {
  76. "type": "rect",
  77. "ratio": 1.597
  78. }
  79. },
  80. {
  81. "key": "牛二配置",
  82. "name": "牛二|配置中心",
  83. "type": 3,
  84. "api": "csp_Wexconfig",
  85. "jar": "https://git.acwing.com/805598571/666/-/raw/main/jar/wex.jar",
  86. "searchable": 0,
  87. "changeable": 0,
  88. "indexs": 0,
  89. "style": {
  90. "type": "rect",
  91. "ratio": 1.597
  92. }
  93. },
  94. {
  95. "key": "py_lav.py",
  96. "name": "⏭|LAV|PYTHON",
  97. "type": 3,
  98. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/lav.py",
  99. "searchable": 1,
  100. "quickSearch": 1,
  101. "filterable": 1
  102. },
  103. {
  104. "key": "py_rou",
  105. "name": "⏭|Rou(沐辰)|PYTHON",
  106. "type": 3,
  107. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/py_rou.py",
  108. "searchable": 1,
  109. "quickSearch": 0,
  110. "filterable": 0,
  111. "changeable": 0
  112. },
  113. {
  114. "key": "avdb",
  115. "name": "⏭|avdb(老張)|GO",
  116. "type": 4,
  117. "api": "http://zhangqun1818.serv00.net/228_1.php",
  118. "searchable": 0,
  119. "changeable": 0
  120. },
  121. {
  122. "key": "lf_js_p2p",
  123. "name": "⏭路飞|PG磁力搜索",
  124. "type": 3,
  125. "searchable": 1,
  126. "changeable": 1,
  127. "quickSearch": 1,
  128. "filterable": 1,
  129. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/lf_p2p2_min.js",
  130. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  131. "ext": "18+"
  132. },
  133. {
  134. "key": "lf_js_p2p",
  135. "name": "⏭路飞|JS磁力搜索 ",
  136. "type": 3,
  137. "searchable": 1,
  138. "changeable": 1,
  139. "quickSearch": 1,
  140. "filterable": 1,
  141. "style":{ "type":"rect", "ratio":0.8 },
  142. "recordable": 0,
  143. "api": "https://qu.ax/cLnn.js",
  144. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  145. "ext": "18+"
  146. },
  147. {
  148. "key": "csp_XYQHiker_ggjav",
  149. "name": "🔞GGJAV",
  150. "type": 3,
  151. "api": "csp_XYQHiker",
  152. "searchable": 1,
  153. "quickSearch": 0,
  154. "filterable": 0,
  155. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/ggjav.json",
  156. "style": {
  157. "type": "rect",
  158. "ratio": 1.6
  159. }
  160. },
  161. {
  162. "key": "csp_XYQHiker_njav.com",
  163. "name": "🔞Njav.com(點選點播才有東西)",
  164. "type": 3,
  165. "api": "csp_XYQHiker",
  166. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  167. "searchable": 1,
  168. "quickSearch": 0,
  169. "filterable": 0,
  170. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/njav.json",
  171. "style": {
  172. "type": "rect",
  173. "ratio": 1.6
  174. }
  175. },
  176. {
  177. "key": "csp_JavBus",
  178. "name": "🔞JavBus(點選點播才有東西)",
  179. "type": 3,
  180. "api": "csp_JavBus",
  181. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  182. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/tokenm.json$$$https://www.cdnbus.shop",
  183. "filterable": 1,
  184. "changeable": 0,
  185. "style": {
  186. "type": "rect",
  187. "ratio": 1.77
  188. },
  189. "timeout": 60
  190. },
  191. {
  192. "key": "csp_JavDb",
  193. "name": "🔞JavDb",
  194. "type": 3,
  195. "api": "csp_JavDb",
  196. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  197. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/tokenm.json$$$1",
  198. "filterable": 1,
  199. "changeable": 0,
  200. "style": {
  201. "type": "rect",
  202. "ratio": 1.77
  203. },
  204. "timeout": 60
  205. },
  206. {
  207. "key": "JAVDAY",
  208. "name": "🔞JAVDAY",
  209. "type": 3,
  210. "api": "csp_XBPQ",
  211. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  212. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  213. "ext": {
  214. "主页url": "https://javday.tv/",
  215. "直接播放": "1",
  216. "数组": "lazy loaded\"&&</a>",
  217. "图片": "style=\"background-image: url(&&);\"",
  218. "标题": "class=\"title\"&&</span>",
  219. "副标题": "class=\"number\">&&</span>",
  220. "简介": "title\"&&</span>",
  221. "链接": "href=\"&&\"",
  222. "分类url": "https://javday.tv/category/{cateId}/page/{catePg}/",
  223. "分类": "新作上市$new-release#有碼$censored#國產AV$chinese-av#無碼流出$uncensored-leaked#糖心VLOG$txvlog#蘿莉社$luolisheus#HongKongDoll$hongkongdoll"
  224. }
  225. },
  226. {
  227. "key": "Supjav",
  228. "name": "🔞Supjav",
  229. "type": 3,
  230. "api": "csp_Supjav",
  231. "filterable": 1,
  232. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  233. "ext": "https://supjav.com/zh/$$$noproxy$$$",
  234. "style": {
  235. "type": "rect",
  236. "ratio": 1.485
  237. }
  238. },
  239. {
  240. "key": "csp_XYQHiker_av6k",
  241. "name": "🔞JAV6K",
  242. "type": 3,
  243. "api": "csp_XYQHiker",
  244. "searchable": 1,
  245. "quickSearch": 0,
  246. "filterable": 0,
  247. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/av6k.json",
  248. "style": {
  249. "type": "rect",
  250. "ratio": 1.6
  251. }
  252. },
  253. {
  254. "key": "csp_XYQHiker_javffm",
  255. "name": "🔞JAVFFM",
  256. "type": 3,
  257. "api": "csp_XYQHiker",
  258. "searchable": 1,
  259. "quickSearch": 0,
  260. "filterable": 0,
  261. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/javffm.json",
  262. "style": {
  263. "type": "rect",
  264. "ratio": 1.6
  265. }
  266. },
  267. {
  268. "key": "csp_XYQHiker_javtsunami",
  269. "name": "🔞javtsunami",
  270. "type": 3,
  271. "api": "csp_XYQHiker",
  272. "searchable": 1,
  273. "quickSearch": 0,
  274. "filterable": 0,
  275. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/javtsunami.json",
  276. "style": {
  277. "type": "rect",
  278. "ratio": 1.6
  279. }
  280. },
  281. {
  282. "key": "csp_XYQHiker_supjav",
  283. "name": "🔞SupJAV",
  284. "type": 3,
  285. "api": "csp_XYQHiker",
  286. "searchable": 1,
  287. "quickSearch": 0,
  288. "filterable": 0,
  289. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/supjav.json",
  290. "style": {
  291. "type": "rect",
  292. "ratio": 1.6
  293. }
  294. },
  295. {
  296. "key": "csp_XBPQ_JAV目錄大全",
  297. "name": "🔞JAV大全",
  298. "type": 3,
  299. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  300. "api": "csp_XBPQ",
  301. "searchable": 1,
  302. "quickSearch": 1,
  303. "filterable": 1,
  304. "ext": {
  305. "热门推荐": "1",
  306. "直接播放": "0",
  307. "数组": "<div class=\"card mx-1\">&&</a>[替换:alt=\"watermark\">>空]",
  308. "图片": "data-src=\"&&\"",
  309. "标题": "alt=\"&&\"",
  310. "链接": "href=\"&&\"",
  311. "搜索url": "https://javmenu.cc/zh/search?wd={wd}&page={pg}",
  312. "搜索模式": "1",
  313. "搜索数组": "<div class=\"card mx-1\">&&</a>[替换:alt=\"watermark\">>空]",
  314. "搜索图片": "data-src=\"&&\"",
  315. "搜索标题": "alt=\"&&\"",
  316. "搜索链接": "href=\"&&\"",
  317. "播放二次截取": "id=\"pills-tabContent\">&&<div class=\"mb-3 col-12\">",
  318. "播放数组": "<div class=\"single-video\">&&var server_count",
  319. "状态": "更新:&&</span>",
  320. "导演": "导演:&&</p>",
  321. "主演": "主演:&&</p>",
  322. "简介": "简介:&&</span>",
  323. "播放列表": "<video id=\"&&</script>",
  324. "播放标题": "全集",
  325. "播放链接": "m3u8.push(\"&&\"",
  326. "嗅探词": "index.m3u8",
  327. "播放请求头": "",
  328. "分类url": "https://javmenu.cc/zh/{cateId}/online?page={catePg}",
  329. "分类": "有码$censored#无码$uncensored#欧美$western#成人动画$hanime#国产$chinese"
  330. }
  331. },
  332. {
  333. "key": "javbar",
  334. "name": "🔞JAVBar",
  335. "type": 3,
  336. "api": "csp_XBPQ",
  337. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  338. "style": {
  339. "type": "rect",
  340. "ratio": 1.5
  341. },
  342. "ext": {
  343. "主页url": "https://javbar.com",
  344. "播放数组": "class=\"btn mb-2&&</button",
  345. "播放列表": "<a&&</a",
  346. "播放标题": ">&&</a",
  347. "播放链接": "href=\"&&\"",
  348. "播放链接前缀": "https://javbar.com",
  349. "数组": "class=\"tray-item&&class=\"tray-item-play-button&&</div>",
  350. "图片": "data-src=\"&&\"",
  351. "标题": "tray-item-title\">&&</div",
  352. "链接": "href=\"&&\"",
  353. "分类": "日本有码$1#最近更新$2#中文字幕$list/chinese#热门排行$list/hot#中文热门$list/chinese---hot#女优一览$acter/index",
  354. "分类url": "https://javbar.com/category/{cateId}-{catePg}.html"
  355. }
  356. },
  357. {
  358. "key": "csp_鉴黄师",
  359. "name": "🔞javrate",
  360. "type": 3,
  361. "api": "csp_XYQHiker",
  362. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  363. "searchable": 1,
  364. "quickSearch": 0,
  365. "filterable": 0,
  366. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/鑑黃師.json",
  367. "style": {
  368. "type": "rect",
  369. "ratio": 1.6
  370. }
  371. },
  372. {
  373. "key": "SEAJAV",
  374. "name": "🔞SEAJAV(聚合)",
  375. "type": 3,
  376. "api": "csp_XBPQ",
  377. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  378. "searchable": 1,
  379. "quickSearch": 1,
  380. "filterable": 1,
  381. "ext": {
  382. "站名":"SeaJav",
  383. "主页url":"https://seajav.com",
  384. "直接播放":"1",
  385. "图片":"cover.jpg\" src=\"&&\"",
  386. "标题":"alt=\"&&\"",
  387. "链接":"href=\"&&\"",
  388. "简介":"\"url\":\"http&&.m3u8",
  389. "搜索模式":"1",
  390. "搜索url":"/search/page/{pg}/wd/{wd}.html",
  391. "搜索图片":"cover.jpg\" src=\"&&\"",
  392. "搜索标题":"alt=\"&&\"",
  393. "搜索链接":"href=\"&&\"",
  394. "免嗅":"1",
  395. "分类url": "https://seajav.com/categories/{cateId}-{catePg}.html",
  396. "分类": "国产自拍$1#日本AV$2#91porn$3#国产AV$4",
  397. "类型": "91探花$38#自拍流出$13||高清$6#無碼$7#中文字幕$8#無碼流出$9#三上悠亞$10#FC2$11#素人$40||91視頻$20#福利姬$14#AI明星$41||麻豆$21#91$22#天美$23#蜜桃$24#星空$26#精東$27#糖心$37#性吧$39"
  398. }
  399. },
  400. {
  401. "key": "php_madou",
  402. "name": "🔞麻豆-T4",
  403. "type": 4,
  404. "api": "https://json.doube.eu.org/app/index.php?site=dbmadou",
  405. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  406. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  407. "filterable": 0,
  408. "changeable": 0,
  409. "style": {
  410. "type": "rect",
  411. "ratio": 1.5
  412. }
  413. },
  414. {
  415. "key": "91電影網",
  416. "name": "🔞91倫理網",
  417. "type": 3,
  418. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/PG.jar",
  419. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  420. "api": "csp_XBPQ",
  421. "searchable": 1,
  422. "quickSearch": 1,
  423. "filterable": 1,
  424. "ext": {
  425. "请求头": "User-Agent$MOBILE_UA",
  426. "编码": "gb2312",
  427. "主页url": "http://m.aogetu.com/",
  428. "播放数组": "plau-ul-list&&</ul>",
  429. "播放列表": "<a&&a>",
  430. "播放链接": "href='&&'",
  431. "播放标题": "_blank\">&&<",
  432. "嗅探词": "index.m3u8?",
  433. "分类url": "http://m.aogetu.com/wuyejuchang/{cateId}/index{catePg}.html[http://m.aogetu.com/wuyejuchang/{cateId}/]",
  434. "分类": "倫理$lunli#寫真$xiezhen#主播$zhubo"
  435. }
  436. },
  437. {
  438. "key": "csp_XYQHiker_麻豆社",
  439. "name": "🔞麻豆社",
  440. "type": 3,
  441. "api": "csp_XYQHiker",
  442. "searchable": 1,
  443. "quickSearch": 0,
  444. "filterable": 0,
  445. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/麻豆社.json",
  446. "style": {
  447. "type": "rect",
  448. "ratio": 1.6
  449. }
  450. },
  451. {
  452. "key": "爱豆传媒",
  453. "name": "🔞爱豆传媒",
  454. "type": 3,
  455. "api": "csp_XBPQ",
  456. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  457. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  458. "ext": {
  459. "主页url": "https://rourou.co/",
  460. "直接播放": "1",
  461. "嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  462. "数组": "class=\"myui-vodlist__box\">&&</div>",
  463. "图片": "data-original=\"&&\"",
  464. "标题": "title=\"&&\"",
  465. "链接": "href=\"&&\"",
  466. "分类url": "https://rourou.co/index.php/vod/type/id/{cateId}/page/{carePg}.html",
  467. "分类": "麻豆视频$1#中文字幕$2#日本无码$3#日本有码$4#童颜巨乳$5#校园萝莉$6#女优明星$7#角色扮演$8#制服诱惑$9#强奸乱伦$31#AI换脸$32#黑料泄密$33#主播直播$34#国产精品$35#探花视频$36#女同性恋$37#SM调教$38#人妻熟女$40"
  468. }
  469. },
  470. {
  471. "key": "csp_XYQHiker_麻豆视频91md",
  472. "name": "🔞麻豆视频91md",
  473. "type": 3,
  474. "api": "csp_XYQHiker",
  475. "searchable": 1,
  476. "quickSearch": 0,
  477. "filterable": 0,
  478. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/麻豆视频91md.json",
  479. "style": {
  480. "type": "rect",
  481. "ratio": 1.6
  482. }
  483. },
  484. {
  485. "key": "csp_XYQHiker_麻豆集",
  486. "name": "🔞麻豆集",
  487. "type": 3,
  488. "api": "csp_XYQHiker",
  489. "searchable": 1,
  490. "quickSearch": 0,
  491. "filterable": 0,
  492. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/麻豆集.json",
  493. "style": {
  494. "type": "rect",
  495. "ratio": 1.6
  496. }
  497. },
  498. {
  499. "key": "csp_XYQHiker_麻豆影视",
  500. "name": "🔞麻豆影视",
  501. "type": 3,
  502. "api": "csp_XYQHiker",
  503. "searchable": 1,
  504. "quickSearch": 0,
  505. "filterable": 0,
  506. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/麻豆影视.json",
  507. "style": {
  508. "type": "rect",
  509. "ratio": 1.6
  510. }
  511. },
  512. {
  513. "key": "csp_XYQHiker_91porn",
  514. "name": "🔞91porn",
  515. "type": 3,
  516. "api": "csp_XYQHiker",
  517. "searchable": 1,
  518. "quickSearch": 0,
  519. "filterable": 0,
  520. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/91porn.json",
  521. "style": {
  522. "type": "rect",
  523. "ratio": 1.6
  524. }
  525. },
  526. {
  527. "key": "csp_XYQHiker_91porn_asia",
  528. "name": "🔞91porn_asia",
  529. "type": 3,
  530. "api": "csp_XYQHiker",
  531. "searchable": 1,
  532. "quickSearch": 0,
  533. "filterable": 0,
  534. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/91porn_asia.json",
  535. "style": {
  536. "type": "rect",
  537. "ratio": 1.75
  538. }
  539. },
  540. {
  541. "key": "csp_XYQHiker_91porn永久官方",
  542. "name": "🔞91porn永久官方",
  543. "type": 3,
  544. "api": "csp_XYQHiker",
  545. "searchable": 1,
  546. "quickSearch": 0,
  547. "filterable": 0,
  548. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/91porn永久.json",
  549. "style": {
  550. "type": "rect",
  551. "ratio": 1.6
  552. }
  553. },
  554. {
  555. "key": "csp_XYQHiker_91吃瓜",
  556. "name": "🔞91吃瓜(點選點播才有東西)",
  557. "type": 3,
  558. "api": "csp_XYQHiker",
  559. "searchable": 1,
  560. "quickSearch": 0,
  561. "filterable": 0,
  562. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/91吃瓜.json",
  563. "style": {
  564. "type": "rect",
  565. "ratio": 1.6
  566. }
  567. },
  568. {
  569. "key": "csp_91黑料",
  570. "name": "🔞91黑料",
  571. "type": 3,
  572. "api": "csp_XBPQ",
  573. "filterable": 1,
  574. "ext": {
  575. "主页url": "https://kb17.oneoneno8cd345.xyz/one",
  576. "首页": "400",
  577. "请求头": "User-Agent$PC_UA",
  578. "数组": "<a&&</a>[不包含:91网曝黑料网#最近更新]",
  579. "二次截取": "<div class=\"videoListBox\"&&el-paginationis-background",
  580. "标题": "title\">&&</p>",
  581. "副标题": "time\">&&</div>",
  582. "链接": "https://kb17.oneoneno8cd345.xyz/v/+href=\"/voddetail/&&/\"+/sid/1/nid/1/",
  583. "图片": "data-src=\"&&\"",
  584. "跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
  585. "搜索url": "https://kb17.oneoneno8cd345.xyz/s/wd/{wd}/",
  586. "分类url": "https://kb17.oneoneno8cd345.xyz/t/{cateId}-{catePg}/;;z",
  587. "分类数组": "<a&&</a>",
  588. "分类标题": ">&&</a>",
  589. "分类ID": "/t/&&/"
  590. },
  591. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar"
  592. },
  593. {
  594. "key": "*91麻豆x",
  595. "name": "🔞91麻豆┃備1",
  596. "type": 1,
  597. "api": "https://91md.me/api.php/provide/vod/",
  598. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  599. "searchable": 1,
  600. "quickSearch": 1
  601. },
  602. {
  603. "key": "*91麻豆2🔞",
  604. "name": "🔞91麻豆┃備2",
  605. "type": 1,
  606. "api": "http://www.9191md.me/api.php/provide/vod/",
  607. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  608. "searchable": 1,
  609. "quickSearch": 1
  610. },
  611. {
  612. "key": "*91麻豆3x",
  613. "name": "🔞91麻豆┃備3",
  614. "type": 1,
  615. "api": "http://www.md91.cc/api.php/provide/vod/",
  616. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  617. "searchable": 1,
  618. "quickSearch": 1
  619. },
  620. {
  621. "key": "*91麻豆4x",
  622. "name": "🔞91麻豆┃備4",
  623. "type": 1,
  624. "api": "http://www.36717.pw/api.php/provide/vod/",
  625. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  626. "searchable": 1,
  627. "quickSearch": 1
  628. },
  629. {
  630. "key": "*91麻豆5🔞",
  631. "name": "🔞91麻豆┃備5",
  632. "type": 1,
  633. "api": "http://www.bt4.cc/api.php/provide/vod/",
  634. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  635. "searchable": 1,
  636. "quickSearch": 1
  637. },
  638. {
  639. "key": "麻豆",
  640. "name": "🔞91麻豆┃備6",
  641. "type": 1,
  642. "api": "https://md91.cc/api.php/provide/vod/",
  643. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  644. "filterable": 1
  645. },
  646. {
  647. "key": "91黑料",
  648. "name": "🔞91黑料",
  649. "type": 3,
  650. "api": "csp_XBPQ",
  651. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  652. "filterable": 1,
  653. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/91黑料.json"
  654. },
  655. {
  656. "key": "J91",
  657. "name": "🔞91珍惜",
  658. "type": 3,
  659. "api": "csp_J91",
  660. "filterable": 1,
  661. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/182.jar"
  662. },
  663. {
  664. "key": "csp_XYQHiker_xvideos",
  665. "name": "🔞Xvideos",
  666. "type": 3,
  667. "api": "csp_XYQHiker",
  668. "searchable": 1,
  669. "quickSearch": 0,
  670. "filterable": 0,
  671. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/xvideos.json",
  672. "style": {
  673. "type": "rect",
  674. "ratio": 1.6
  675. }
  676. },
  677. {"key":"drpyS_采王成人[密]","name":"采王成人[密](DS)","type":4,"api":"https://drpys.aera.eu.org/api/采集之王[合]?pwd=18","searchable":1,"filterable":1,"quickSearch":0,"ext":"H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2W/TT9W2xL+fOfNbQqAcSVjFUAQAd5YgpIQAAAA=="},
  678. {"key":"drpyS_采王道长[合]","name":"采王道长[合](DS)","type":4,"api":"https://drpys.aera.eu.org/api/采集之王[合]?pwd=18","searchable":1,"filterable":1,"quickSearch":0,"ext":"H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ228u5M581NOqBRFQMAcGPDNobAAAA"},
  679. {"key":"drpyS_采王zy[密]","name":"采王zy[密](DS)","type":4,"api":"https://drpys.aera.eu.org/api/采集之王[合]?pwd=18","searchable":1,"filterable":1,"quickSearch":0,"ext":"H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2W3RVZezLuTOfNTTqgURVDAGu/MCKHwAAAA=="},
  680. {
  681. "key":"drpyS_xvideos[密]",
  682. "name":"🔞xvideos1",
  683. "type":4,
  684. "api":"http://drpys.aera.eu.org/api/xvideos[密]",
  685. "searchable":1,
  686. "filterable":0,
  687. "quickSearch":0,
  688. "ext":""
  689. },
  690. {
  691. "key": "xvideos4中文",
  692. "name": "🔞xvideos4",
  693. "type": 3,
  694. "api": "csp_XBPQ",
  695. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  696. "ext": {
  697. "是否开启获取首页数据": "1",
  698. "首页推荐链接": "https://dpmnmv.xvideos4.hair/vodtype/32.html",
  699. "首页列表数组规则": "#main",
  700. "首页片单列表数组规则": "article",
  701. "首页片单是否Jsoup写法": "1",
  702. "首页片单标题": ".entry-header&&Text",
  703. "首页片单链接": "a&&href",
  704. "首页片单图片": "img&&data-src",
  705. "首页片单副标题": "'⏱'+.duration&&Text+'👁'+.views&&Text+'👍'+.rating-bar&&span&&Text",
  706. "首页片单链接加前缀": "",
  707. "首页片单链接加后缀": "",
  708. "直接播放": "1",
  709. "数组": "<li>&&</li>",
  710. "链接": "href=\"&&\"",
  711. "图片": " src=\"&&\"",
  712. "标题": "title=\"&&\"",
  713. "播放链接前缀": "https://iktvoc.xvideos4.hair/",
  714. "播放标题": ">&&</a>",
  715. "播放链接": "href=\"&&\"",
  716. "分类url": "https://dpmnmv.xvideos4.hair/vodtype/{cateId}-{catePg}.html",
  717. "分类": "女神$21#美女直播$22#人妻$23#动漫$35#无码$30#有码$31#中文字幕$32#三级伦理$36"
  718. }
  719. },
  720. {
  721. "key": "py_黑料18+",
  722. "name": "🔞黑料",
  723. "type": 3,
  724. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/py_黑料.py",
  725. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar;md5;60d0b94a00860a27e433ffe0e2fea2a0",
  726. "searchable": 1,
  727. "quickSearch": 1,
  728. "filterable": 1,
  729. "style": {
  730. "type": "rect",
  731. "ratio": 1.77
  732. }
  733. },
  734. {"key":"drpyS_黑料不打烊[密]","name":"黑料不打烊[密](DS)","type":4,"api":"http://drpys.aera.eu.org/api/黑料不打烊[密]","searchable":1,"filterable":0,"quickSearch":0,"ext":""},
  735. {
  736. "key": "hipy_js_avtoday[密]",
  737. "name": "🔞AVtoday",
  738. "type": 3,
  739. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  740. "searchable": 1,
  741. "quickSearch": 1,
  742. "filterable": 1,
  743. "order_num": 0,
  744. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/avtoday-改.js"
  745. },
  746. {
  747. "key": "csp_XYQHiker_missav",
  748. "name": "🔞MissAV",
  749. "type": 3,
  750. "api": "csp_XYQHiker",
  751. "searchable": 1,
  752. "quickSearch": 0,
  753. "filterable": 0,
  754. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/missav.json",
  755. "style": {
  756. "type": "rect",
  757. "ratio": 1.6
  758. }
  759. },
  760. {
  761. "key": "csp_XYQHiker_missav.app",
  762. "name": "🔞MissAV.app",
  763. "type": 3,
  764. "api": "csp_XYQHiker",
  765. "searchable": 1,
  766. "quickSearch": 0,
  767. "filterable": 0,
  768. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/missav.app.json",
  769. "style": {
  770. "type": "rect",
  771. "ratio": 1.6
  772. }
  773. },
  774. {
  775. "key": "csp_XYQHiker_netflav",
  776. "name": "🔞NETFLAV",
  777. "type": 3,
  778. "api": "csp_XYQHiker",
  779. "searchable": 1,
  780. "quickSearch": 0,
  781. "filterable": 0,
  782. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/netflav.json",
  783. "style": {
  784. "type": "rect",
  785. "ratio": 1.6
  786. }
  787. },
  788. {
  789. "key": "csp_Netflav",
  790. "name": "🔞Netflav2",
  791. "type": 3,
  792. "api": "csp_Netflav",
  793. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  794. "changeable": 1,
  795. "filterable": 0,
  796. "timeout": 60
  797. },
  798. {
  799. "key": "csp_XYQHiker_nowavtv",
  800. "name": "🔞NOWAVTV",
  801. "type": 3,
  802. "api": "csp_XYQHiker",
  803. "searchable": 1,
  804. "quickSearch": 0,
  805. "filterable": 0,
  806. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/nowavtv.json",
  807. "style": {
  808. "type": "rect",
  809. "ratio": 1.6
  810. }
  811. },
  812. {
  813. "key": "Jable",
  814. "name": "🔞Jable",
  815. "type": 3,
  816. "api": "csp_Jable",
  817. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  818. "filterable": 1
  819. },
  820. {
  821. "key": "Jable",
  822. "name": "🔞Jable(海外)",
  823. "type": 3,
  824. "api": "csp_Jable",
  825. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg-0923.jar",
  826. "changeable": 1,
  827. "ext": "127.0.0.1:10072$$$null$$$1",
  828. "style": {
  829. "type": "rect",
  830. "ratio": 1.77
  831. },
  832. "timeout": 60,
  833. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg-0923.jar"
  834. },
  835. {
  836. "key": "jable",
  837. "name": "🔞jable-HL版",
  838. "type": 3,
  839. "changeable": 1,
  840. "filterable": 1,
  841. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  842. "api": "csp_XBPQ",
  843. "ext": {
  844. "直接播放": "1",
  845. "搜索模式": "1",
  846. "搜索url": "https://jable.tv/search/{wd}/",
  847. "数组": "<div class=\"img-box cover-md\">&&</h6>",
  848. "图片": "data-src=\"&&\"",
  849. "标题": "class=\"title\">&&</a>",
  850. "链接": "href=\"&&\"",
  851. "链接前缀": "https://jable.tv",
  852. "副标题": "<span class=\"label\">&&</span>",
  853. "播放数组": "<h6&&</h6>",
  854. "播放列表": "<a&&/a>",
  855. "播放标题": ">&&<",
  856. "播放链接": "href=\"&&\"",
  857. "分类": "最近更新$latest-updates#最新上市$new-release#主奴调教$categories/bdsm#字幕$categories/chinese-subtitle#凌辱$categories/rape#制服$categories/uniform#角色$categories/roleplay#偷拍$categories/hidden-cam#无码解码$categories/uncensored#多P$categories/groupsex#丝袜$categories/pantyhose",
  858. "分类url": "https://jable.tv/{cateId}/{catePg}/",
  859. "免嗅": "0",
  860. "嗅探词": ".m3u8#.mp4",
  861. "页面代理": "127.0.0.1:10072"
  862. }
  863. },
  864. {
  865. "key": "SOAV",
  866. "name": "🔞SOAV(點選點播才有東西)",
  867. "type": 3,
  868. "api": "csp_XBPQ",
  869. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  870. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  871. "style": {
  872. "type": "rect",
  873. "ratio": 1.5
  874. },
  875. "ext": {
  876. "主页url": "https://www.wantav.co/",
  877. "搜索url": "https://777080.xyz/?s={wd}",
  878. "数组": "data-video-uid=&&</div>",
  879. "图片": "data-src=\"&&\"",
  880. "标题": "alt=\"&&\"",
  881. "副标题": "</i>&&</span>",
  882. "链接": "href=\"&&\"",
  883. "分类url": "https://777080.xyz/category/{cateId}/page/{catePg}/;;z",
  884. "分类": "國產精選$國產精選#探花約炮$探花約炮#日韓影片$日韓影片#無碼素人$無碼素人#歐美專區$歐美專區#中字動漫$中字動漫"
  885. }
  886. },
  887. {
  888. "key": "csp_XYQHiker_jable",
  889. "name": "🔞Jable",
  890. "type": 3,
  891. "api": "csp_XYQHiker",
  892. "searchable": 1,
  893. "quickSearch": 0,
  894. "filterable": 0,
  895. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/jable.json",
  896. "style": {
  897. "type": "rect",
  898. "ratio": 1.6
  899. }
  900. },
  901. {
  902. "key": "pronlulu",
  903. "name": "🔞pronlulu",
  904. "type": 3,
  905. "api": "csp_XBPQ",
  906. "recordable": 0,
  907. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  908. "ext": {
  909. "直接播放": "1",
  910. "嗅探词": ".m3u8#.mp4",
  911. "分类url": "https://www.pornlulu.com/cat/{cateId}?page={catePg}",
  912. "分类": "國產自拍$263#中文字幕$48#日本有碼$269國產情色460#日本無碼$270#國產精品$249強姦亂倫$13#歐美精品$260#制服誘惑$92#蘿莉少女$103#成人動漫$274#美女主播$264#亞洲有碼$105#國產主播$268#國產視頻$304#巨乳美乳$93#歐美極品$266#自拍偷拍$28#騎兵有碼$261#無碼專區$254#抖陰視頻$25"
  913. }
  914. },
  915. {
  916. "key": "csp_XYQHiker_porn87",
  917. "name": "🔞porn87(點選點播才有東西)",
  918. "type": 3,
  919. "api": "csp_XYQHiker",
  920. "searchable": 1,
  921. "quickSearch": 0,
  922. "filterable": 0,
  923. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/porn87.json",
  924. "style": {
  925. "type": "rect",
  926. "ratio": 1.6
  927. }
  928. },
  929. {
  930. "key": "csp_XYQHiker_pornlulu",
  931. "name": "🔞PornLuLu",
  932. "type": 3,
  933. "api": "csp_XYQHiker",
  934. "searchable": 1,
  935. "quickSearch": 0,
  936. "filterable": 0,
  937. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/pornlulu.json",
  938. "style": {
  939. "type": "rect",
  940. "ratio": 1.6
  941. }
  942. },
  943. {
  944. "key": "csp_XYQHiker_spankbang",
  945. "name": "🔞spankbang",
  946. "type": 3,
  947. "api": "csp_XYQHiker",
  948. "searchable": 1,
  949. "quickSearch": 0,
  950. "filterable": 0,
  951. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/spankbang.json",
  952. "style": {
  953. "type": "rect",
  954. "ratio": 1.6
  955. }
  956. },
  957. {
  958. "key": "csp_XYQHiker_hdpornmovies",
  959. "name": "🔞hdpornmovies",
  960. "type": 3,
  961. "api": "csp_XYQHiker",
  962. "searchable": 1,
  963. "quickSearch": 0,
  964. "filterable": 0,
  965. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/hdpornmovies.json",
  966. "style": {
  967. "type": "rect",
  968. "ratio": 1.6
  969. }
  970. },
  971. {
  972. "key": "csp_XYQHiker_pornhub",
  973. "name": "🔞伊甸園(pornhub)",
  974. "type": 3,
  975. "api": "csp_XYQHiker",
  976. "searchable": 1,
  977. "quickSearch": 0,
  978. "filterable": 0,
  979. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/pornhub.json",
  980. "style": {
  981. "type": "rect",
  982. "ratio": 1.6
  983. }
  984. },
  985. {
  986. "key": "Theporn",
  987. "name": "🔞Theporn(點選點播才有東西)",
  988. "type": 3,
  989. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  990. "changeable": 1,
  991. "timeout": 60,
  992. "style": {
  993. "type": "rect",
  994. "ratio": 1.5
  995. },
  996. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/theporn.js"
  997. },
  998. {
  999. "key": "csp_XYQHiker_鉴黄师",
  1000. "name": "🔞鉴黄师",
  1001. "type": 3,
  1002. "api": "csp_XYQHiker",
  1003. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1004. "searchable": 1,
  1005. "quickSearch": 0,
  1006. "filterable": 0,
  1007. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/鉴黄师.json",
  1008. "style": {
  1009. "type": "rect",
  1010. "ratio": 1.6
  1011. }
  1012. },
  1013. {
  1014. "key": "csp_春水堂",
  1015. "name": "🔞春水堂",
  1016. "type": 3,
  1017. "api": "csp_XBPQ",
  1018. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1019. "filterable": 1,
  1020. "ext": {
  1021. "分类url": "https://cst1.buzz/frim/index{cateId}-{catePg}.html",
  1022. "分类": "國產視頻$25#中文字幕$26#國產傳媒$27#日本有碼$28#日本無碼$29#歐美無碼$30#強奸亂倫$31#制服誘惑$32#國產主播$33#激情動漫$34#明星換臉$35#抖音視頻$36#女優明星$37#網曝黑料$38#倫理三級$39#AV解說$40#SM調教$41#蘿莉少女$42#極品媚黑$43#女同性戀$44#網紅頭條$45#人妖系列$46#韓國主播$47#VR視角$48",
  1023. "简介": "class=\"plot\"&&</div>"
  1024. }
  1025. },
  1026. {
  1027. "key": "csp_色花堂",
  1028. "name": "🔞色花堂",
  1029. "type": 3,
  1030. "changeable": 1,
  1031. "filterable": 1,
  1032. "api": "csp_XBPQ",
  1033. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1034. "ext":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/色花堂.json"
  1035. },
  1036. {
  1037. "key": "csp_XBPQ_蜜",
  1038. "name": "🔞木瓜",
  1039. "type": 3,
  1040. "api": "csp_XBPQ",
  1041. "filterable": 1,
  1042. "ext": {
  1043. "分类url": "https://www.okav15.cc/index.php/vod/type/id/{cateId}/page/{catePg}.html",
  1044. "直接播放": "1",
  1045. "图片": "data-original=\"&&\"",
  1046. "分类": "國產$1#日韓$2#歐美$3#動漫$4#中字$5"
  1047. },
  1048. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar"
  1049. },
  1050. {
  1051. "key": "csp_XYQHiker_苹果av",
  1052. "name": "🔞苹果",
  1053. "type": 3,
  1054. "api": "csp_XYQHiker",
  1055. "searchable": 1,
  1056. "quickSearch": 0,
  1057. "filterable": 0,
  1058. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/苹果av.json",
  1059. "style": {
  1060. "type": "rect",
  1061. "ratio": 1.6
  1062. }
  1063. },
  1064. {
  1065. "key": "辣椒资源",
  1066. "name": "🔞辣椒",
  1067. "type": 1,
  1068. "api": "http://api.11bat.com/api.php/provide/vod/",
  1069. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1070. "searchable": 1,
  1071. "quickSearch": 1
  1072. },
  1073. {
  1074. "key": "hipy_js_地瓜视频[密]",
  1075. "name": "🔞地瓜(點選點播才有東西)",
  1076. "type": 3,
  1077. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  1078. "filterable": 1,
  1079. "order_num": 0,
  1080. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/地瓜视频[密].js"
  1081. },
  1082. {
  1083. "key": "apilj.com",
  1084. "name": "🔞紅椒",
  1085. "type": 1,
  1086. "api": "http://apilj.com/api.php/provide/vod/at/json/",
  1087. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1088. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1089. "recordable": 0,
  1090. "style": {
  1091. "type": "rect",
  1092. "ratio": 1.33
  1093. }
  1094. },
  1095. {
  1096. "key": "大地专场",
  1097. "name": "🔞大地采集",
  1098. "type": 0,
  1099. "api": "https://dadiapi.com/api.php",
  1100. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1101. "filterable": 1,
  1102. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1103. "recordable": 0,
  1104. "style": {
  1105. "type": "rect",
  1106. "ratio": 1.33
  1107. }
  1108. },
  1109. {
  1110. "key": "*大地资源",
  1111. "name": "🔞大地资源",
  1112. "type": 0,
  1113. "api": "http://ddkbo.com/api.php",
  1114. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1115. "searchable": 1,
  1116. "quickSearch": 1
  1117. },
  1118. {
  1119. "key": "*香奶儿资源",
  1120. "name": "🔞香奶儿资源",
  1121. "type": 0,
  1122. "api": "https://www.gdlsp.com/api/xml.php",
  1123. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1124. "searchable": 1,
  1125. "quickSearch": 1
  1126. },
  1127. {
  1128. "key": "Naixxzy.com",
  1129. "name": "🔞奶香资源",
  1130. "type": 1,
  1131. "api": "https://Naixxzy.com/api.php/provide/vod/",
  1132. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1133. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1134. "recordable": 0,
  1135. "style": {
  1136. "type": "rect",
  1137. "ratio": 1.33
  1138. }
  1139. },
  1140. {
  1141. "key": "*美少女资源",
  1142. "name": "🔞美少女",
  1143. "type": 0,
  1144. "api": "https://www.msnii.com/api/xml.php",
  1145. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1146. "searchable": 1,
  1147. "quickSearch": 1
  1148. },
  1149. {
  1150. "key": "*色猫资源",
  1151. "name": "🔞色猫资源",
  1152. "type": 1,
  1153. "api": "https://api.maozyapi.com/inc/apijson_vod.php",
  1154. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1155. "searchable": 1,
  1156. "quickSearch": 1
  1157. },
  1158. {
  1159. "key": "乐播",
  1160. "name": "️🔞乐播采集",
  1161. "type": 1,
  1162. "api": "https://lbapi9.com/api.php/provide/vod/",
  1163. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1164. "playUrl": "",
  1165. "filterable": 1,
  1166. "categories": ["亚洲情色", "国产主播", "国产自拍", "无码专区", "欧美性爱", "熟女人妻", "强奸乱伦", "巨乳美乳", "中文字幕", "制服诱惑", "女同性恋", "卡通动画", "视频伦理", "少女萝莉", "重口色情", "人兽性交"]
  1167. },
  1168. {
  1169. "key": "*番号资源",
  1170. "name": "🔞番号资源",
  1171. "type": 1,
  1172. "api": "http://fhapi9.com/api.php/provide/vod/",
  1173. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1174. "searchable": 1,
  1175. "quickSearch": 1
  1176. },
  1177. {
  1178. "key": "vv002",
  1179. "name": "️🔞番號",
  1180. "type": 4,
  1181. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/00title05152.json",
  1182. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  1183. "searchable": 0,
  1184. "quickSearch": 0,
  1185. "filterable": 0
  1186. },
  1187. {
  1188. "key": "13AV",
  1189. "name": "🔞13AV",
  1190. "type": 3,
  1191. "api": "csp_XBPQ",
  1192. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1193. "style": {
  1194. "type": "rect",
  1195. "ratio": 1.5
  1196. },
  1197. "ext": {
  1198. "主页url": "https://13av.com/",
  1199. "过滤词": ".mp4",
  1200. "数组": "\"col-6 col-sm-4 col-lg-3\"&&\"col-6 col-sm-4 col-lg-3\"",
  1201. "图片": "data-src=\"&&\"",
  1202. "标题": "href=\"*\">&&</a>",
  1203. "副标题": "class=\"label\">&&</span>",
  1204. "链接": "href=\"&&\"",
  1205. "简介": "⚠️慢点撸,皮要掉了!!!",
  1206. "分类url": "https://13av.com/type/{cateId}/{catePg}.html;;z",
  1207. "分类": "角色剧情$5#直接开啪$6#主奴调教$7#凌辱快感$8#无码影视$24#中文字幕$9#制服诱惑$10#丝袜美腿$21#男友视角$20#多P群交$22#盗摄偷拍$23#女同欢愉$25"
  1208. }
  1209. },
  1210. {
  1211. "key": "csp_XYQHiker_18av",
  1212. "name": "🔞18AV",
  1213. "type": 3,
  1214. "api": "csp_XYQHiker",
  1215. "searchable": 1,
  1216. "quickSearch": 0,
  1217. "filterable": 0,
  1218. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/18av.json",
  1219. "style": {
  1220. "type": "rect",
  1221. "ratio": 1.6
  1222. }
  1223. },
  1224. {
  1225. "key": "155专场",
  1226. "name": "🔞155专场",
  1227. "type": 1,
  1228. "api": "https://155api.com/api.php/provide/vod/",
  1229. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1230. "playUrl": "",
  1231. "filterable": 1,
  1232. "categories": ["无码专区", "麻豆传媒", "制服诱惑", "三级伦理", "AI换脸", "中文字幕", "卡通动漫", "欧美系列", "美女主播", "国产自拍", "熟女人妻", "萝莉少女", "女同性爱", "多人群交", "美乳巨乳", "强奸乱伦", "抖音视频", "韩国主播", "网红头条", "网爆黑料", "欧美无码", "女优明星", "SM调教", "AV解说"]
  1233. },
  1234. {
  1235. "key": "csp_XYQHiker_170av",
  1236. "name": "🔞170av",
  1237. "type": 3,
  1238. "api": "csp_XYQHiker",
  1239. "searchable": 1,
  1240. "quickSearch": 0,
  1241. "filterable": 0,
  1242. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/170av.json",
  1243. "style": {
  1244. "type": "rect",
  1245. "ratio": 1.6
  1246. }
  1247. },
  1248. {
  1249. "key": "csp_XYQHiker_300分类",
  1250. "name": "🔞300分类",
  1251. "type": 3,
  1252. "api": "csp_XYQHiker",
  1253. "searchable": 1,
  1254. "quickSearch": 0,
  1255. "filterable": 0,
  1256. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/300分类.json"
  1257. },
  1258. {
  1259. "key": "csp_XYQHiker_444咖啡",
  1260. "name": "🔞444咖啡(點選點播才有東西)",
  1261. "type": 3,
  1262. "api": "csp_XYQHiker",
  1263. "searchable": 1,
  1264. "quickSearch": 0,
  1265. "filterable": 0,
  1266. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/444咖啡.json",
  1267. "style": {
  1268. "type": "rect",
  1269. "ratio": 1.6
  1270. }
  1271. },
  1272. {
  1273. "key": "apiyutu.com",
  1274. "name": "🔞玉兔资源",
  1275. "type": 1,
  1276. "api": "https://apiyutu.com/api.php/provide/vod/",
  1277. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1278. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1279. "recordable": 0,
  1280. "style": {
  1281. "type": "rect",
  1282. "ratio": 1.33
  1283. }
  1284. },
  1285. {
  1286. "key": "csp_XYQHiker_airav",
  1287. "name": "🔞AirAV(點選點播才有東西)",
  1288. "type": 3,
  1289. "api": "csp_XYQHiker",
  1290. "searchable": 1,
  1291. "quickSearch": 0,
  1292. "filterable": 0,
  1293. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/airav.json",
  1294. "style": {
  1295. "type": "rect",
  1296. "ratio": 1.6
  1297. }
  1298. },
  1299. {
  1300. "key": "csp_XYQHiker_asianssex",
  1301. "name": "🔞亞洲情色網",
  1302. "type": 3,
  1303. "api": "csp_XYQHiker",
  1304. "searchable": 1,
  1305. "quickSearch": 0,
  1306. "filterable": 0,
  1307. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/asianssex.json",
  1308. "style": {
  1309. "type": "rect",
  1310. "ratio": 1.6
  1311. }
  1312. },
  1313. {
  1314. "key": "av影视",
  1315. "name": "🔞AV影视",
  1316. "type": 3,
  1317. "api": "csp_XBPQ",
  1318. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1319. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1320. "style": {
  1321. "type": "rect",
  1322. "ratio": 1.5
  1323. },
  1324. "ext": {
  1325. "图片": "data-src=\"&&\"",
  1326. "直接播放": "1",
  1327. "分类url": "https://wyaslcwgroup.cfd/index.php/vod/type/id/{cateId}/page/{catePg}.html",
  1328. "分类": "国产视频$1#主播$2#黑料$3#中文$6#国产传媒$7#制服$12#抖音$15#三级$17#AV解说$18#日本有码$8#日本无码$9#强奸乱轮$11#动漫$13#明星换脸$14#女优明星$16"
  1329. }
  1330. },
  1331. {
  1332. "key": "草溜资源",
  1333. "name": "🔞草溜资源",
  1334. "type": 1,
  1335. "api": "https://www.caoliuzyw.com/api.php/provide/vod/at/json/",
  1336. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1337. "searchable": 1,
  1338. "quickSearch": 1
  1339. },
  1340. {
  1341. "key": "csp_XYQHiker_hohoj",
  1342. "name": "🔞HOHOJ",
  1343. "type": 3,
  1344. "api": "csp_XYQHiker",
  1345. "searchable": 1,
  1346. "quickSearch": 0,
  1347. "filterable": 0,
  1348. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/hohoj.json",
  1349. "style": {
  1350. "type": "rect",
  1351. "ratio": 1.6
  1352. }
  1353. },
  1354. {
  1355. "key": "csp_XYQHiker_ixxxj",
  1356. "name": "🔞IXXXJ",
  1357. "type": 3,
  1358. "api": "csp_XYQHiker",
  1359. "searchable": 1,
  1360. "quickSearch": 0,
  1361. "filterable": 0,
  1362. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/ixxxj.json",
  1363. "style": {
  1364. "type": "rect",
  1365. "ratio": 1.6
  1366. }
  1367. },
  1368. {
  1369. "key": "JKUN(采集)",
  1370. "name": "🔞JKUN",
  1371. "type": 1,
  1372. "api": "https://jkunzyapi.com/api.php/provide/vod",
  1373. "searchable": 1,
  1374. "quickSearch": 1,
  1375. "style": {
  1376. "type": "rect",
  1377. "ratio": 1.6
  1378. }
  1379. },
  1380. {
  1381. "key": "csp_XYQHiker_kanav",
  1382. "name": "🔞KANAV",
  1383. "type": 3,
  1384. "api": "csp_XYQHiker",
  1385. "searchable": 1,
  1386. "quickSearch": 0,
  1387. "filterable": 0,
  1388. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/kanav.json",
  1389. "style": {
  1390. "type": "rect",
  1391. "ratio": 1.6
  1392. }
  1393. },
  1394. {
  1395. "key": "csp_XYQHiker_owoAV",
  1396. "name": "🔞OWOAV",
  1397. "type": 3,
  1398. "api": "csp_XYQHiker",
  1399. "searchable": 1,
  1400. "quickSearch": 0,
  1401. "filterable": 0,
  1402. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/owoav.json",
  1403. "style": {
  1404. "type": "rect",
  1405. "ratio": 1.6
  1406. }
  1407. },
  1408. {
  1409. "key": "csp_XYQHiker_ppp",
  1410. "name": "🔞PPP",
  1411. "type": 3,
  1412. "api": "csp_XYQHiker",
  1413. "searchable": 1,
  1414. "quickSearch": 0,
  1415. "filterable": 0,
  1416. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/ppp.json",
  1417. "style": {
  1418. "type": "rect",
  1419. "ratio": 1.6
  1420. }
  1421. },
  1422. {
  1423. "key": "csp_XYQHiker_playav",
  1424. "name": "🔞playav",
  1425. "type": 3,
  1426. "api": "csp_XYQHiker",
  1427. "searchable": 1,
  1428. "quickSearch": 0,
  1429. "filterable": 0,
  1430. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/playav.json",
  1431. "style": {
  1432. "type": "rect",
  1433. "ratio": 1.6
  1434. }
  1435. },
  1436. {
  1437. "key": "api.sexnguon.com",
  1438. "name": "🔞Sexnguon",
  1439. "type": 1,
  1440. "api": "http://api.sexnguon.com/api.php/provide/vod/",
  1441. "searchable": 1,
  1442. "recordable": 0,
  1443. "style": {
  1444. "type": "rect",
  1445. "ratio": 1.6
  1446. }
  1447. },
  1448. {
  1449. "key": "csp_XYQHiker_taiav",
  1450. "name": "🔞TaiAv",
  1451. "type": 3,
  1452. "api": "csp_XYQHiker",
  1453. "searchable": 1,
  1454. "quickSearch": 0,
  1455. "filterable": 0,
  1456. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/taiav.json",
  1457. "style": {
  1458. "type": "rect",
  1459. "ratio": 1.6
  1460. }
  1461. },
  1462. {
  1463. "key": "TaiAv",
  1464. "name": "🔞TaiAv2",
  1465. "type": 3,
  1466. "api": "csp_XBPQ",
  1467. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1468. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1469. "style": {
  1470. "type": "rect",
  1471. "ratio": 1.5
  1472. },
  1473. "ext": {
  1474. "主页url": "https://taiav.com/",
  1475. "搜索url": "https://taiav.com/search?q={wd}",
  1476. "数组": "uk-card-media-top\"&&</a>",
  1477. "图片": "src=\"&&\"",
  1478. "标题": "alt=\"&&\"",
  1479. "副标题": "</span>&&</div>",
  1480. "链接": "href=\"&&\"",
  1481. "分类url": "https://taiav.com/cn/category/{cateId}?page={catePg};;z",
  1482. "分类": "国产AV$国产AV#网红主播$网红主播#有码$有码#无码$无码"
  1483. }
  1484. },
  1485. {
  1486. "key": "csp_XYQHiker_thisav",
  1487. "name": "🔞ThisAV",
  1488. "type": 3,
  1489. "api": "csp_XYQHiker",
  1490. "searchable": 1,
  1491. "quickSearch": 0,
  1492. "filterable": 0,
  1493. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/thisav.json",
  1494. "style": {
  1495. "type": "rect",
  1496. "ratio": 1.6
  1497. }
  1498. },
  1499. {
  1500. "key": "csp_XYQHiker_tktube",
  1501. "name": "🔞Tktube",
  1502. "type": 3,
  1503. "api": "csp_XYQHiker",
  1504. "searchable": 1,
  1505. "quickSearch": 0,
  1506. "filterable": 0,
  1507. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/tktube.json",
  1508. "style": {
  1509. "type": "rect",
  1510. "ratio": 1.6
  1511. }
  1512. },
  1513. {
  1514. "key": "csp_XYQHiker_xgroovy",
  1515. "name": "🔞xgroovy",
  1516. "type": 3,
  1517. "api": "csp_XYQHiker",
  1518. "searchable": 1,
  1519. "quickSearch": 0,
  1520. "filterable": 0,
  1521. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/xgroovy.json",
  1522. "style": {
  1523. "type": "rect",
  1524. "ratio": 1.6
  1525. }
  1526. },
  1527. {
  1528. "key": "vv001",
  1529. "name": "️🔞女優",
  1530. "type": 4,
  1531. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/00title05151.json",
  1532. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  1533. "searchable": 0,
  1534. "quickSearch": 0,
  1535. "filterable": 0
  1536. },
  1537. {
  1538. "key": "aosikazy.com",
  1539. "name": "🔞奥斯卡",
  1540. "type": 1,
  1541. "api": "https://aosikazy.com/api.php/provide/vod/",
  1542. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1543. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1544. "recordable": 0,
  1545. "style": {
  1546. "type": "rect",
  1547. "ratio": 1.33
  1548. }
  1549. },
  1550. {
  1551. "key": "奥斯卡资源",
  1552. "name": "🔞奥斯卡资源",
  1553. "type": 1,
  1554. "api": "https://aosikazy.com/api.php/provide/vod/?ac=list",
  1555. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1556. "searchable": 1,
  1557. "quickSearch": 1
  1558. },
  1559. {
  1560. "key": "chujia.cc",
  1561. "name": "🔞精东资源",
  1562. "type": 1,
  1563. "api": "http://chujia.cc/api.php/provide/vod/",
  1564. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1565. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1566. "recordable": 0,
  1567. "style": {
  1568. "type": "rect",
  1569. "ratio": 1.33
  1570. }
  1571. },
  1572. {
  1573. "key": "airav",
  1574. "name": "Airav",
  1575. "type": 3,
  1576. "api": "csp_XBPQ",
  1577. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1578. "style": {
  1579. "type": "rect",
  1580. "ratio": 1.485
  1581. },
  1582. "ext": {
  1583. "直接播放": 1,
  1584. "分类url": "https://airav.io/list?idx={catePg}&sort={cateId}",
  1585. "分类": "最新發行$2#今日热门$3#本周热门$4#本月热门$5"
  1586. }
  1587. },
  1588. {
  1589. "key": "csp_XBPQ_奶很大",
  1590. "name": "🔞奶很大",
  1591. "type": 3,
  1592. "api": "csp_XBPQ",
  1593. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1594. "filterable": 0,
  1595. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/奶很大.json"
  1596. },
  1597. {
  1598. "key": "hav6.beauty",
  1599. "name": "🔞黄AV",
  1600. "type": 0,
  1601. "api": "https://www.pgxdy.com/api/xml.php",
  1602. "searchable": 1,
  1603. "recordable": 0,
  1604. "style": {
  1605. "type": "rect",
  1606. "ratio": 1.6
  1607. }
  1608. },
  1609. {
  1610. "key": "HiPianZhiBo",
  1611. "name": "🔞嗨片",
  1612. "type": 3,
  1613. "api": "csp_HiPianZhiBo",
  1614. "filterable": 1,
  1615. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/182.jar"
  1616. },
  1617. {
  1618. "key": "HuaDu",
  1619. "name": "🔞好多",
  1620. "type": 3,
  1621. "api": "csp_HuaDu",
  1622. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1623. "changeable": 1
  1624. },
  1625. {
  1626. "key": "jingpinx.com",
  1627. "name": "🔞精品",
  1628. "type": 1,
  1629. "api": "https://www.jingpinx.com/api.php/provide/vod/?ac=list",
  1630. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1631. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1632. "recordable": 0,
  1633. "style": {
  1634. "type": "rect",
  1635. "ratio": 1.33
  1636. }
  1637. },
  1638. {
  1639. "key": "kanav",
  1640. "name": "🔞看AV",
  1641. "type": 3,
  1642. "filterable": 1,
  1643. "api": "csp_XBPQ",
  1644. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1645. "ext": {
  1646. "分类url": "https://kanav.info/index.php/vod/type/id/{cateId}.html",
  1647. "分类": "中文字幕$1#日韩有码$2#日韩无码$3#国产AV$4#流出自拍$22#动漫番剧$20"
  1648. }
  1649. },
  1650. {
  1651. "key": "laosebizy.com",
  1652. "name": "🔞老色逼",
  1653. "type": 1,
  1654. "api": "https://apilsbzy1.com/api.php/provide/vod/",
  1655. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1656. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  1657. "recordable": 0,
  1658. "style": {
  1659. "type": "rect",
  1660. "ratio": 1.33
  1661. }
  1662. },
  1663. {
  1664. "key": "玩偶妹妹",
  1665. "name": "🔞玩偶妹妹",
  1666. "type": 3,
  1667. "api": "csp_XBPQ",
  1668. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1669. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1670. "filterable": 1,
  1671. "ext": {
  1672. "主页url": "https://urcccg.dbtav9.today/cn/home/web/",
  1673. "直接播放": "1",
  1674. "分类url": "https://urcccg.dbtav9.today/vodtype/{cateId}/{catePg}/;;a",
  1675. "分类": "国产精品$20#主播大秀$21#唯美视频$22#口交视频$23#日本有碼$24#日本無碼$25#动漫视频$26#欧美视频$27#日韩视频$28#欧美视频$29#动漫视频$30#伦理影片$31"
  1676. }
  1677. },
  1678. {
  1679. "key": "csp_XYQHiker_玩偶姐姐",
  1680. "name": "🔞玩偶姐姐",
  1681. "type": 3,
  1682. "api": "csp_XYQHiker",
  1683. "searchable": 1,
  1684. "quickSearch": 0,
  1685. "filterable": 0,
  1686. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/玩偶姐姐.json",
  1687. "style": {
  1688. "type": "rect",
  1689. "ratio": 1.6
  1690. }
  1691. },
  1692. {
  1693. "key": "糖心",
  1694. "name": "🔞糖心次元",
  1695. "type": 3,
  1696. "api": "csp_XBPQ",
  1697. "style": {
  1698. "ratio": 1.7
  1699. },
  1700. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1701. "ext": {
  1702. "数组": "<section&&</section",
  1703. "副标题": "添加时间:&&</span>",
  1704. "嗅探词": "cdn2020.com#m3u8",
  1705. "分类url": "http://www.txcyeat.buzz/index.php/vodtype/{cateId}-{catePg}.html;;z",
  1706. "分类": "国产片商$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#PussyHunter$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"
  1707. }
  1708. },
  1709. {
  1710. "key": "csp_XYQHiker_MOTV",
  1711. "name": "🔞MOTV",
  1712. "type": 3,
  1713. "api": "csp_XYQHiker",
  1714. "searchable": 1,
  1715. "quickSearch": 0,
  1716. "filterable": 0,
  1717. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/motv.json",
  1718. "style": {
  1719. "type": "rect",
  1720. "ratio": 1.6
  1721. }
  1722. },
  1723. {
  1724. "key": "avgle",
  1725. "name": "🔞AV.GL",
  1726. "type": 3,
  1727. "changeable": 1,
  1728. "filterable": 1,
  1729. "api": "csp_XBPQ",
  1730. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1731. "ext": {
  1732. "分类url": "https://av.gl/avtype/{cateId}-{catePg}.html",
  1733. "分类": "日本有碼$Censored#日本無碼$Uncensored#FC2$FC2-PPV#無碼破解$Mosaic_Removed#中文字幕$CHN_SUB#MGS動画$MGS#寫真$Adult_IDOL#國產$Asian_Amateur#歐美成人$Western_Porn"
  1734. }
  1735. },
  1736. {
  1737. "key": "最色影视",
  1738. "name": "🔞最色影视",
  1739. "type": 4,
  1740. "api": "http://zhangqun66.com/doll.php",
  1741. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar",
  1742. "searchable": 1,
  1743. "changeable": 0
  1744. },
  1745. {
  1746. "key": "色色影视",
  1747. "name": "🔞色色影视",
  1748. "type": 4,
  1749. "api": "http://zhangqun66.com/228.php",
  1750. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar",
  1751. "searchable": 1,
  1752. "changeable": 0
  1753. },
  1754. {
  1755. "key": "天美",
  1756. "name": "🔞天美",
  1757. "type": 3,
  1758. "api": "csp_XBPQ",
  1759. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1760. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1761. "ext": {
  1762. "搜索链接": "http://www.xbyc.cc/index.php/vod/search/page/{pg}/wd/{wd}.html",
  1763. "数组": "\"box-item\"&&</em>",
  1764. "副标题": "<strong>&&</strong>",
  1765. "分类数组": "<li>&&</li>",
  1766. "分类标题": "\">&&</a",
  1767. "分类ID": "id/&&.",
  1768. "分类链接": "http://www.xbyc.cc/index.php/vod/type/id/{cateId}/page/{catePg}.html;;mz"
  1769. }
  1770. },
  1771. {
  1772. "key": "优异资源",
  1773. "name": "🔞优异资源",
  1774. "type": 1,
  1775. "api": "https://a.uezy.pw/api.php/provide/vod/",
  1776. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar"
  1777. },
  1778. {
  1779. "key": "鲨鱼资源",
  1780. "name": "🔞鲨鱼资源",
  1781. "type": 1,
  1782. "api": "https://shayuapi.com/api.php/provide/vod/",
  1783. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1784. "changeable": 0,
  1785. "filterable": 1
  1786. },
  1787. {
  1788. "key": "秀人",
  1789. "name": "🔞秀人",
  1790. "type": 1,
  1791. "api": "https://xiuren.site/api.php/provide/vod/",
  1792. "searchable": 1,
  1793. "changeable": 1,
  1794. "categories": [],
  1795. "style": {
  1796. "type": "rect",
  1797. "ratio": 1.6
  1798. }
  1799. },
  1800. {
  1801. "key": "高清xxxx黑料",
  1802. "name": "🔞高清黑料3",
  1803. "type": 3,
  1804. "api": "csp_XBPQ",
  1805. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1806. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1807. "filterable": 1,
  1808. "ext": {
  1809. "发布地址": "https://xxxxxxav3.com",
  1810. "主页url": "https://xxxxxxav3.com/xxxx",
  1811. "数组": "class=\"item-box\">&&</a",
  1812. "图片": "src=\"&&\"",
  1813. "标题": "title=\"&&\"",
  1814. "副标题": "<small>&&</small>",
  1815. "简介": "description\"content=\"&&|全站",
  1816. "链接": "href=\"&&\"[替换:voddetail>>v]",
  1817. "跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
  1818. "搜索模式": "1",
  1819. "搜索url": "https://xxxxxxav3.com/s/page/{pg}/wd/{wd}/",
  1820. "分类数组": "<a&&/a>",
  1821. "分类标题": ">&&<",
  1822. "分类ID": "/t/&&/",
  1823. "分类url": "https://xxxxxxav3.com/t/{cateId}-{catePg}/;;z"
  1824. }
  1825. },
  1826. {
  1827. "key": "麻",
  1828. "name": "🔞麻玉",
  1829. "type": 3,
  1830. "changeable": 1,
  1831. "filterable": 1,
  1832. "api": "csp_XBPQ",
  1833. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1834. "style": {
  1835. "ratio": 1.7
  1836. },
  1837. "ext": {
  1838. "搜索url": "http://gcmd.cc/index.php/vod/search/page/{pg}/wd/{wd}.html",
  1839. "分类": "日本视频$1#麻豆视频$2",
  1840. "分类url": "http://gcmd.cc/index.php/vod/show/class/{class}/id/{cateId}/page/{catePg}.html",
  1841. "直接播放": "1"
  1842. }
  1843. },
  1844. {
  1845. "key": "湿乐园",
  1846. "name": "🔞湿乐园",
  1847. "type": 1,
  1848. "api": "https://xxavs.com/api.php/provide/vod/",
  1849. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar"
  1850. },
  1851. {
  1852. "key": "csp_XYQHiker_小丑撸",
  1853. "name": "🔞小丑撸",
  1854. "type": 3,
  1855. "api": "csp_XYQHiker",
  1856. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1857. "searchable": 1,
  1858. "quickSearch": 0,
  1859. "filterable": 0,
  1860. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/小丑撸.json",
  1861. "style": {
  1862. "type": "rect",
  1863. "ratio": 1.6
  1864. }
  1865. },
  1866. {
  1867. "key": "csp_XYQHiker_正妹AV",
  1868. "name": "🔞正妹AV(點選點播才有東西)",
  1869. "type": 3,
  1870. "api": "csp_XYQHiker",
  1871. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1872. "searchable": 1,
  1873. "quickSearch": 0,
  1874. "filterable": 0,
  1875. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/正妹av.json",
  1876. "style": {
  1877. "type": "rect",
  1878. "ratio": 1.6
  1879. }
  1880. },
  1881. {
  1882. "key": "csp_XYQHiker_有爱爱uaa",
  1883. "name": "🔞有爱爱uaa(點選點播才有東西)",
  1884. "type": 3,
  1885. "api": "csp_XYQHiker",
  1886. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1887. "searchable": 1,
  1888. "quickSearch": 0,
  1889. "filterable": 0,
  1890. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/有爱爱.json",
  1891. "style": {
  1892. "type": "rect",
  1893. "ratio": 1.75
  1894. },
  1895. "logo": "https://m.uaa.com/assets/logo-af49a8e2.svg"
  1896. },
  1897. {
  1898. "key": "csp_XYQHiker_朱古力",
  1899. "name": "🔞朱古力",
  1900. "type": 3,
  1901. "api": "csp_XYQHiker",
  1902. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1903. "searchable": 1,
  1904. "quickSearch": 0,
  1905. "filterable": 0,
  1906. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/朱古力.json",
  1907. "style": {
  1908. "type": "rect",
  1909. "ratio": 1.6
  1910. }
  1911. },
  1912. {
  1913. "key": "csp_XYQHiker_杏吧视频",
  1914. "name": "🔞杏吧视频",
  1915. "type": 3,
  1916. "api": "csp_XYQHiker",
  1917. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1918. "searchable": 1,
  1919. "quickSearch": 0,
  1920. "filterable": 0,
  1921. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/杏吧视频.json",
  1922. "style": {
  1923. "type": "rect",
  1924. "ratio": 1.6
  1925. }
  1926. },
  1927. {
  1928. "key": "csp_XYQHiker_丽丽AV",
  1929. "name": "🔞丽丽AV(點選點播才有東西)",
  1930. "type": 3,
  1931. "api": "csp_XYQHiker",
  1932. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1933. "searchable": 1,
  1934. "quickSearch": 0,
  1935. "filterable": 0,
  1936. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/丽丽av.json",
  1937. "style": {
  1938. "type": "rect",
  1939. "ratio": 1.6
  1940. }
  1941. },
  1942. {
  1943. "key": "csp_XYQHiker_紫色成人",
  1944. "name": "🔞紫色成人",
  1945. "type": 3,
  1946. "api": "csp_XYQHiker",
  1947. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1948. "searchable": 1,
  1949. "quickSearch": 0,
  1950. "filterable": 0,
  1951. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/紫色成人.json",
  1952. "style": {
  1953. "type": "rect",
  1954. "ratio": 1.6
  1955. }
  1956. },
  1957. {
  1958. "key": "csp_XYQHiker_鲨鱼av",
  1959. "name": "🔞鲨鱼av",
  1960. "type": 3,
  1961. "api": "csp_XYQHiker",
  1962. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1963. "searchable": 1,
  1964. "quickSearch": 0,
  1965. "filterable": 0,
  1966. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/鲨鱼av.json",
  1967. "style": {
  1968. "type": "rect",
  1969. "ratio": 1.6
  1970. }
  1971. },
  1972. {
  1973. "key": "农夫与蛇",
  1974. "name": "🔞农夫与蛇",
  1975. "type": 3,
  1976. "api": "csp_XBPQ",
  1977. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  1978. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1979. "style": {
  1980. "type": "rect",
  1981. "ratio": 1.5
  1982. },
  1983. "ext": {
  1984. "主页url": "https://nfsf8kj.nfsf-a2.buzz/go",
  1985. "搜索url": "https://nfsf8kj.nfsf-a2.buzz/go/index.php/vod/search.html?wd={wd}",
  1986. "数组": "<li>&&</li>",
  1987. "图片": "data-original=\"&&\"",
  1988. "标题": "title=\"&&\"",
  1989. "副标题": "class=\"date-text-bg text-bg-r\"&&</p>",
  1990. "链接": "href=\"&&\"",
  1991. "分类url": "https://nfsf8kj.nfsf-a2.buzz/go/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
  1992. "分类": "国产专区$6#制服诱惑$13#中文字幕$7#国产传媒$8#日本有码$9#日本无码$10#欧美无码$11#强奸乱伦$12#三级专区$23#人妖系列$30#韩国主播$31#国产主播$14#激情动漫$15#明星换脸$16#抖阴视频$20#女优明星$21#网曝黑料$22#AV解说$24#SM调教$25#少女萝莉$26"
  1993. }
  1994. },
  1995. {
  1996. "key": "乐哥特供-蜜桃屯",
  1997. "name": "🔞蜜桃影视",
  1998. "type": 3,
  1999. "api": "csp_XBPQ",
  2000. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2001. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2002. "ext": {
  2003. "二次截取": "class=\"block-post&&align=\"center",
  2004. "数组": "target=\"_blank&&class=\"info-post",
  2005. "图片": "data-src=\"&&\"",
  2006. "标题": "title=\"&&\"",
  2007. "链接": "href=\"&&\"",
  2008. "直接播放": "1",
  2009. "跳转播放链接": "var player_*\"url\":\"&&\"",
  2010. "搜索url": "https://www.okav13.mom/index.php/vod/search/page/{pg}/wd/{wd}.html",
  2011. "分类url": "https://www.okav13.mom/index.php/vod/show/by/{by}/id/{cateId}/page/{catePg}.html",
  2012. "分类": "国产AV$1#日韩AV$2#欧美AV$3#污污动漫$4#高清字幕$5#顶级主播$9#外流泄密$11#偷窥偷拍$14#传媒剧情$15#强奸乱伦$13#三级伦理$16",
  2013. "排序": "热门$hits#点赞$up#评分$score"
  2014. }
  2015. },
  2016. {
  2017. "key": "AVMobTV",
  2018. "name": "🔞 AVMobTV",
  2019. "type": 3,
  2020. "api": "csp_XBPQ",
  2021. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2022. "searchable": 1,
  2023. "quickSearch": 1,
  2024. "filterable": 1,
  2025. "ext": {
  2026. "主页url": "https://avmob.tv",
  2027. "分类url": "https://avmob.tv/zh-hant/c/category/&&/source=ja/{cateId}/",
  2028. "分类": "最新更新$new#日本高清$jp-hd#日本無碼$jp-uncensored#台灣高清$tw-hd#自拍流出$self-post"
  2029. }
  2030. },
  2031. {
  2032. "key": "998资源(采集)🔞",
  2033. "name": "🔞998资源",
  2034. "type": 1,
  2035. "api": "https://api.998zy.com/api.php/provide/vod/at/json/",
  2036. "searchable": 1,
  2037. "quickSearch": 1,
  2038. "categories": [],
  2039. "style": {
  2040. "type": "rect",
  2041. "ratio": 1.6
  2042. }
  2043. },
  2044. {
  2045. "key": "俺要社",
  2046. "name": "🔞神社影视",
  2047. "type": 3,
  2048. "api": "csp_XBPQ",
  2049. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2050. "searchable": 1,
  2051. "quickSearch": 1,
  2052. "changeable": 1,
  2053. "filterable": 1,
  2054. "ext": {
  2055. "主页url": "https://hongkongdoll.anyaoshe16.top/",
  2056. "数组": "<a&&</a>",
  2057. "直接播放": "1",
  2058. "图片": "url(&&)",
  2059. "标题": "title=\"&&\"",
  2060. "链接": "href=\"&&\"",
  2061. "简介": "description\" content=\"&&\"",
  2062. "搜索模式": "1",
  2063. "搜索url": "https://hongkongdoll.anyaoshe16.top/index.php/vod/search/page/{pg}/wd/{wd}.html",
  2064. "分类url": "https://hongkongdoll.anyaoshe16.top/index.php/vod/type/id/{cateId}/page/{catePg}.html",
  2065. "分类数组": "<a&&</a>",
  2066. "分类标题": ">&&</a>",
  2067. "分类ID": "/type/id/&&.html"
  2068. }
  2069. },
  2070. {
  2071. "key": "流氓兔",
  2072. "name": "🔞流氓兔",
  2073. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2074. "type": 3,
  2075. "api": "csp_XBPQ",
  2076. "searchable": 1,
  2077. "quickSearch": 1,
  2078. "filterable": 1,
  2079. "ext": {
  2080. "请求头": "User-Agent$MOBILE_UA",
  2081. "主页url": "https://fyu.lmt4.monster/cn/home/web/",
  2082. "数组": "<article>&&</article>",
  2083. "标题": "alt=\"&&\"",
  2084. "副标题": "actress\">&&</div>",
  2085. "图片": "img src=\"&&\"",
  2086. "链接": "href=\"&&\"",
  2087. "跳转播放链接": "var player_*\"url\":\"&&\"",
  2088. "简介": "description\" content=\"&&\"",
  2089. "搜索url": "https://fyu.lmt4.monster/cn/home/web/index.php/vod/search/page/{pg}/wd/{wd}.html",
  2090. "分类url": "https://fyu.lmt4.monster/cn/home/web/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
  2091. "分类数组": "<a&&a>",
  2092. "分类标题": ">&&<",
  2093. "分类ID": "/cn/home/web/index.php/vod/type/id/&&.html"
  2094. }
  2095. },
  2096. {
  2097. "key": "果冻破解版",
  2098. "name": "🔞果冻破解",
  2099. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2100. "type": 3,
  2101. "api": "csp_XBPQ",
  2102. "searchable": 1,
  2103. "quickSearch": 1,
  2104. "filterable": 1,
  2105. "ext": {
  2106. "请求头": "User-Agent$MOBILE_UA",
  2107. "主页url": "https://zvz.gdpjb8.work/cn/home/web/",
  2108. "数组": "well well-sm&&/a>",
  2109. "标题": "m-t-5\">&&<",
  2110. "副标题": "duration\">&&</div>",
  2111. "图片": "img src=\"&&\"",
  2112. "链接": "href=\"&&\"",
  2113. "跳转播放链接": "var player_*\"url\":\"&&\"",
  2114. "简介": "description\" content=\"&&\"",
  2115. "搜索url": "https://zvz.gdpjb8.work/cn/home/web/index.php/vod/search/page/{pg}/wd/{wd}.html",
  2116. "分类url": "https://zvz.gdpjb8.work/cn/home/web/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
  2117. "分类二次截取": "<ul>&&ul>",
  2118. "分类数组": "<a&&a>",
  2119. "分类标题": "title=\"&&\"",
  2120. "分类ID": "/cn/home/web/index.php/vod/type/id/&&.html"
  2121. }
  2122. },
  2123. {
  2124. "key": "百草香",
  2125. "name": "🔞百香草",
  2126. "type": 3,
  2127. "api": "csp_XBPQ",
  2128. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2129. "searchable": 1,
  2130. "quickSearch": 1,
  2131. "filterable": 1,
  2132. "ext": {
  2133. "请求头": "User-Agent$MOBILE_UA",
  2134. "主页url": "https://kcd.bxc7.one/cn/home/web/",
  2135. "数组": "lazyload\"&&/a>",
  2136. "标题": "title=\"&&\"",
  2137. "图片": "data-original=\"&&\"",
  2138. "链接": "href=\"&&\"",
  2139. "跳转播放链接": "vod_play_url = '&&'",
  2140. "简介": "description\" content=\"&&\"",
  2141. "搜索url": "https://kcd.bxc7.one/s/{wd}/page/{pg}.html",
  2142. "分类url": "https://kcd.bxc7.one/vodtype/{cateId}-{catePg}.html;;z",
  2143. "分类二次截取": "<ul&&ul>",
  2144. "分类数组": "<a&&a>",
  2145. "分类标题": ">&&<",
  2146. "分类ID": "/vodtype/&&.html"
  2147. }
  2148. },
  2149. {
  2150. "key": "风流视频",
  2151. "name": "🔞风流",
  2152. "type": 3,
  2153. "api": "csp_XBPQ",
  2154. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2155. "searchable": 1,
  2156. "quickSearch": 1,
  2157. "filterable": 1,
  2158. "ext": {
  2159. "请求头": "User-Agent$MOBILE_UA",
  2160. "主页url": "https://djtzph.flsp8.cyou/cn/",
  2161. "数组": "container&&</li>",
  2162. "标题": "title=\"&&\"",
  2163. "图片": "src=\"&&\"",
  2164. "副标题": "icoplay\">&&</",
  2165. "链接": "href=\"&&\"",
  2166. "跳转播放链接": "vod_play_url = '&&'",
  2167. "简介": "description\" content=\"&&\"",
  2168. "搜索url": "https://djtzph.flsp8.cyou/s/{wd}/page/{pg}.html",
  2169. "分类url": "https://djtzph.flsp8.cyou/vodtype/{cateId}-{catePg}.html;;z",
  2170. "分类二次截取": "<ul>&&ul>",
  2171. "分类数组": "<a&&a>",
  2172. "分类标题": ">&&<",
  2173. "分类ID": "/vodtype/&&.html"
  2174. }
  2175. },
  2176. {
  2177. "key": "速播",
  2178. "name": "🔞 成人频道[速播](點選點播才有東西)",
  2179. "type": 1,
  2180. "api": "https://subocaiji.com/api.php/provide/vod/from/subyun/at/json",
  2181. "searchable": 1,
  2182. "changeable": 1,
  2183. "categories": ["伦理片"]
  2184. },
  2185. {
  2186. "key": "ikun",
  2187. "name": "🔞 成人频道[ikun](點選點播才有東西)",
  2188. "type": 1,
  2189. "api": "https://ikunzyapi.com/api.php/provide/vod",
  2190. "searchable": 1,
  2191. "changeable": 1,
  2192. "categories": ["伦理片"]
  2193. },
  2194. {
  2195. "key": "光速",
  2196. "name": "🔞 成人频道[光速](點選點播才有東西)",
  2197. "type": 1,
  2198. "api": "https://api.guangsuapi.com/api.php/provide/vod",
  2199. "searchable": 1,
  2200. "changeable": 1,
  2201. "categories": ["伦理片"]
  2202. },
  2203. {
  2204. "key": "探探资源",
  2205. "name": "🔞探探资源",
  2206. "type": 1,
  2207. "api": "https://apittzy.com/api.php/provide/vod/",
  2208. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2209. "searchable": 1,
  2210. "quickSearch": 1
  2211. },
  2212. {
  2213. "key": "森林资源🔞",
  2214. "name": "🔞森林资源",
  2215. "type": 1,
  2216. "api": "https://slapibf.com/api.php/provide/vod/",
  2217. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2218. "searchable": 1,
  2219. "quickSearch": 1
  2220. },
  2221. {
  2222. "key": "白嫖资源",
  2223. "name": "🔞白嫖资源",
  2224. "type": 0,
  2225. "api": "https://www.kxgav.com/api/xml.php",
  2226. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2227. "changeable": 0,
  2228. "filterable": 1
  2229. },
  2230. {
  2231. "key": "*丝袜资源",
  2232. "name": "🔞丝袜资源",
  2233. "type": 1,
  2234. "api": "https://siwazyw.tv/api.php/provide/vod/at/json_now/",
  2235. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2236. "searchable": 1,
  2237. "quickSearch": 1
  2238. },
  2239. {
  2240. "key": "18j.tv",
  2241. "name": "🔞18j.tv",
  2242. "type": 3,
  2243. "api": "csp_XBPQ",
  2244. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2245. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2246. "ext": {
  2247. "主页url": "https://18j.tv/",
  2248. "直接播放": "1",
  2249. "嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  2250. "图片": "data-original=\"&&\"",
  2251. "标题": "title=\"&&\"",
  2252. "链接": "href=\"&&\"",
  2253. "分类url": "https://18j.tv/show/{cateId}/nid/1/page/{catePg}/sid/1/",
  2254. "分类": "国产$1#日韩$2#欧美$3#伦理$4#动漫$16"
  2255. }
  2256. },
  2257. {
  2258. "key": "csp_XYQHiker_300分类",
  2259. "name": "🔞300分类",
  2260. "type": 3,
  2261. "api": "csp_XYQHiker",
  2262. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/Aoki.jar",
  2263. "filterable": 1,
  2264. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/300分类.json"
  2265. },
  2266. {
  2267. "key": "Cg51",
  2268. "name": "🔞51吃瓜",
  2269. "type": 3,
  2270. "api": "csp_Cg51",
  2271. "filterable": 1,
  2272. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/182.jar"
  2273. },
  2274. {
  2275. "key": "csp_XYQHiker_ACG漫画网",
  2276. "name": "🔞ACG漫画网(點選點播才有東西)",
  2277. "type": 3,
  2278. "api": "csp_XYQHiker",
  2279. "searchable": 1,
  2280. "quickSearch": 0,
  2281. "filterable": 0,
  2282. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/acg漫画网.json",
  2283. "style": {
  2284. "type": "rect",
  2285. "ratio": 1.33
  2286. }
  2287. },
  2288. {
  2289. "key": "csp_XYQHiker_avbebe",
  2290. "name": "🔞AVbebe(點選點播才有東西)",
  2291. "type": 3,
  2292. "api": "csp_XYQHiker",
  2293. "searchable": 1,
  2294. "quickSearch": 0,
  2295. "filterable": 0,
  2296. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/avbebe.json",
  2297. "style": {
  2298. "type": "rect",
  2299. "ratio": 1.33
  2300. }
  2301. },
  2302. {
  2303. "key": "csp_XYQHiker_av淘宝",
  2304. "name": "🔞av淘宝",
  2305. "type": 3,
  2306. "api": "csp_XYQHiker",
  2307. "searchable": 1,
  2308. "quickSearch": 0,
  2309. "filterable": 0,
  2310. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/av淘宝.json",
  2311. "style": {
  2312. "type": "rect",
  2313. "ratio": 1.6
  2314. }
  2315. },
  2316. {
  2317. "key": "AIvin(采集)",
  2318. "name": "🔞AIvin",
  2319. "type": 1,
  2320. "api": "http://lbapiby.com/api.php/provide/vod/",
  2321. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2322. "searchable": 1,
  2323. "quickSearch": 1,
  2324. "style": {
  2325. "type": "rect",
  2326. "ratio": 1.6
  2327. }
  2328. },
  2329. {
  2330. "key": "csp_XYQHiker_bongacams直播",
  2331. "name": "🔞bongacams直播(點選點播才有東西)",
  2332. "type": 3,
  2333. "api": "csp_XYQHiker",
  2334. "searchable": 1,
  2335. "quickSearch": 0,
  2336. "filterable": 0,
  2337. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/bongacams直播.json",
  2338. "style": {
  2339. "type": "rect",
  2340. "ratio": 1.6
  2341. }
  2342. },
  2343. {
  2344. "key": "csp_XYQHiker_b影院",
  2345. "name": "🔞B影院",
  2346. "type": 3,
  2347. "api": "csp_XYQHiker",
  2348. "searchable": 1,
  2349. "quickSearch": 0,
  2350. "filterable": 0,
  2351. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/b影院.json",
  2352. "style": {
  2353. "type": "rect",
  2354. "ratio": 1.6
  2355. }
  2356. },
  2357. {
  2358. "key": "csp_XBPQ_BE視頻",
  2359. "name": "🔞BE視頻",
  2360. "type": 3,
  2361. "api": "csp_XBPQ",
  2362. "filterable": 1,
  2363. "ext": {
  2364. "分类url": "https://l6bvp3.bbbeee.fun/type/{cateId}-{catePg}.html",
  2365. "直接播放": "1",
  2366. "图片": "data-src=\"&&\"",
  2367. "分类": "视频一区$1#视频二区$29#视频三区$47"
  2368. },
  2369. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar"
  2370. },
  2371. {
  2372. "key": "Bi8TV",
  2373. "name": "🔞Bi8TV",
  2374. "type": 3,
  2375. "api": "csp_XBPQ",
  2376. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2377. "style": {
  2378. "type": "rect",
  2379. "ratio": 1.485
  2380. },
  2381. "ext": {
  2382. "主页url": "https://v3.bi888.link/",
  2383. "直接播放": "1",
  2384. "图片": "imgsrc=\"&&\"",
  2385. "标题": "alt=\"&&\"",
  2386. "链接": "href=\"&&\"",
  2387. "分类url": "https://v3.bi888.link/vodtype/{cateId}-{catePg}.html",
  2388. "分类": "精品推荐$20#国产精品$21#日韩精品$22#欧美精品$23#中文字幕$24#日韩无码$25#日韩有码$26#网红主播$27#卡通动漫$28#探花系列$29#SM重味$30#自拍偷拍$31#强奸乱伦$32#口交视频$33#自慰系列$34#教师学生$35#3P合辑$36#巨乳系列$37#颜射系列$38#制服诱惑$39#萝莉少女$40#人兽之恋$41#人妻熟女$42#女同性恋$43#稀缺资源$45#三级伦理$44#空姐模特$48#国产盗摄$49#人妖系列$50#虚拟VR$51"
  2389. }
  2390. },
  2391. {
  2392. "key": "CK资源",
  2393. "name": "🔞CK资源",
  2394. "type": 1,
  2395. "api": "https://ckzy.me/api.php/provide/vod/",
  2396. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2397. "changeable": 0,
  2398. "filterable": 1
  2399. },
  2400. {
  2401. "key": "csp_XYQHiker_hanimi1",
  2402. "name": "🔞Hanime1",
  2403. "type": 3,
  2404. "api": "csp_XYQHiker",
  2405. "searchable": 1,
  2406. "quickSearch": 0,
  2407. "filterable": 0,
  2408. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/hanime1.json",
  2409. "style": {
  2410. "type": "rect",
  2411. "ratio": 1.6
  2412. }
  2413. },
  2414. {
  2415. "key": "csp_XYQHiker_jiedm",
  2416. "name": "🔞jiedmAV(點選點播才有東西)",
  2417. "type": 3,
  2418. "api": "csp_XYQHiker",
  2419. "searchable": 1,
  2420. "quickSearch": 0,
  2421. "filterable": 0,
  2422. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/jiedm.json",
  2423. "style": {
  2424. "type": "rect",
  2425. "ratio": 1.6
  2426. }
  2427. },
  2428. {
  2429. "key": "艾旦影视",
  2430. "name": "🔞lovedan艾旦",
  2431. "type": 1,
  2432. "api": "https://lovedan.net/api.php/provide/vod/",
  2433. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  2434. "filterable": 1
  2435. },
  2436. {
  2437. "key": "csp_XYQHiker_p影院",
  2438. "name": "🔞P影院",
  2439. "type": 3,
  2440. "api": "csp_XYQHiker",
  2441. "searchable": 1,
  2442. "quickSearch": 0,
  2443. "filterable": 0,
  2444. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/p影院.json",
  2445. "style": {
  2446. "type": "rect",
  2447. "ratio": 1.6
  2448. }
  2449. },
  2450. {
  2451. "key": "csp_XYQHiker_qinav",
  2452. "name": "🔞Qinav",
  2453. "type": 3,
  2454. "api": "csp_XYQHiker",
  2455. "searchable": 1,
  2456. "quickSearch": 0,
  2457. "filterable": 0,
  2458. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/qinav.json",
  2459. "style": {
  2460. "type": "rect",
  2461. "ratio": 1.6
  2462. }
  2463. },
  2464. {
  2465. "key": "csp_XYQHiker_sexsex",
  2466. "name": "🔞sexsex",
  2467. "type": 3,
  2468. "api": "csp_XYQHiker",
  2469. "searchable": 1,
  2470. "quickSearch": 0,
  2471. "filterable": 0,
  2472. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/sexsex.json",
  2473. "style": {
  2474. "type": "rect",
  2475. "ratio": 1.6
  2476. }
  2477. },
  2478. {
  2479. "key": "csp_XYQHiker_ujizzcn",
  2480. "name": "🔞Ujizzcn",
  2481. "type": 3,
  2482. "api": "csp_XYQHiker",
  2483. "searchable": 1,
  2484. "quickSearch": 0,
  2485. "filterable": 0,
  2486. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/ujizzcn.json",
  2487. "style": {
  2488. "type": "rect",
  2489. "ratio": 1.6
  2490. }
  2491. },
  2492. {
  2493. "key": "hipy_js_UAA[密]",
  2494. "name": "🔞UAA(點選點播才有東西)",
  2495. "type": 3,
  2496. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  2497. "filterable": 1,
  2498. "order_num": 0,
  2499. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/UAA[密].js"
  2500. },
  2501. {
  2502. "key": "csp_XYQHiker_xHamster",
  2503. "name": "🔞xHamster",
  2504. "type": 3,
  2505. "api": "csp_XYQHiker",
  2506. "searchable": 1,
  2507. "quickSearch": 0,
  2508. "filterable": 0,
  2509. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/xHamster.json",
  2510. "style": {
  2511. "type": "rect",
  2512. "ratio": 1.6
  2513. }
  2514. },
  2515. {
  2516. "key": "csp_XBPQ_骏马",
  2517. "name": "🔞骏马",
  2518. "type": 3,
  2519. "api": "csp_XBPQ",
  2520. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2521. "filterable": 1,
  2522. "ext": {
  2523. "分类url": "https://junmatv.com/vodtype/{cateId}-{catePg}.html",
  2524. "直接播放": "1",
  2525. "图片": "data-original=\"&&\"",
  2526. "图片代理": "1",
  2527. "分类": "字幕好片$20#本土对白$21#有码薄码$24#动漫次元$23#分级电影$25#外国美女$22"
  2528. }
  2529. },
  2530. {
  2531. "key": "csp_XBPQ_yyxl",
  2532. "name": "🔞夜夜新郎",
  2533. "type": 3,
  2534. "api": "csp_XBPQ",
  2535. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2536. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2537. "filterable": 0,
  2538. "ext": "https://raw.githubusercontent.com/guot55/yg/main/lib/夜夜新郎.json"
  2539. },
  2540. {
  2541. "key": "csp_XBPQ_癢癢",
  2542. "name": "🔞癢癢",
  2543. "type": 3,
  2544. "api": "csp_XBPQ",
  2545. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2546. "filterable": 1,
  2547. "ext": {
  2548. "分类url": "https://guochan.yangyangtv13.top/index.php/vod/show/id/{cateId}/page/{catePg}.html",
  2549. "直接播放": "1",
  2550. "图片": "data-original=\"&&\"",
  2551. "分类": "自拍偷拍$58#绿帽淫妻$59#国产视频$51#主播大秀$52#抖阴视频$41#网红头条$37#网曝黑料$36#AI换脸$32#女优明星$53#日本无码$39#中文字幕$40#日本有码$38#葫芦影业$48#蜜桃传媒$49#杏吧传媒$50#天美传媒$44"
  2552. }
  2553. },
  2554. {
  2555. "key": "didizy.com",
  2556. "name": "🔞滴滴",
  2557. "type": 1,
  2558. "api": "https://api.ddapi.cc/api.php/provide/vod/",
  2559. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2560. "playUrl": "json:http://127.0.0.1:10079/parse/?thread=0&proxy=&url=",
  2561. "recordable": 0,
  2562. "style": {
  2563. "type": "rect",
  2564. "ratio": 1.33
  2565. }
  2566. },
  2567. {
  2568. "key": "hipy_js_一点视频[密]",
  2569. "name": "🔞一点视频(點選點播才有東西)",
  2570. "type": 3,
  2571. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  2572. "filterable": 1,
  2573. "order_num": 0,
  2574. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/一点视频[密].js"
  2575. },
  2576. {
  2577. "key": "hipy_js_爱爱影院[密]",
  2578. "name": "🔞爱爱影院",
  2579. "type": 3,
  2580. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  2581. "filterable": 1,
  2582. "order_num": 0,
  2583. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/爱爱影院[密].js"
  2584. },
  2585. {
  2586. "key": "hipy_js_黑料不打烊-z",
  2587. "name": "🔞黑料不打烊-z",
  2588. "type": 3,
  2589. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  2590. "filterable": 1,
  2591. "order_num": 0,
  2592. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/黑料不打烊-z.js"
  2593. },
  2594. {
  2595. "key": "淫水机资源",
  2596. "name": "🔞淫水机资源",
  2597. "type": 0,
  2598. "api": "https://www.xrbsp.com/api/xml.php",
  2599. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2600. "searchable": 1,
  2601. "quickSearch": 1
  2602. },
  2603. {
  2604. "key": "黄瓜资源",
  2605. "name": "🔞黄瓜",
  2606. "type": 1,
  2607. "api": "https://www.avre06.com/api.php/provide/vod/?ac=list",
  2608. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2609. "searchable": 1,
  2610. "quickSearch": 1
  2611. },
  2612. {
  2613. "key": "*葡萄资源",
  2614. "name": "🔞葡萄",
  2615. "type": 1,
  2616. "api": "https://caiji.putaozyw.net/inc/apijson_vod_dx.php",
  2617. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2618. "searchable": 1,
  2619. "quickSearch": 1
  2620. },
  2621. {
  2622. "key": "富二代",
  2623. "name": "🔞富二代",
  2624. "type": 0,
  2625. "api": "http://f2dcj6.com/sapi?ac=list&pg=1",
  2626. "filterable": 0
  2627. },
  2628. {
  2629. "key": "*鲨鱼资源",
  2630. "name": "🔞鲨鱼",
  2631. "type": 1,
  2632. "api": "http://shayuzy1.com/api.php/provide/vod/",
  2633. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2634. "searchable": 1,
  2635. "quickSearch": 1
  2636. },
  2637. {
  2638. "key": "MiMei",
  2639. "name": "🔞迷妹",
  2640. "type": 3,
  2641. "api": "csp_MiMei",
  2642. "filterable": 1,
  2643. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/182.jar"
  2644. },
  2645. {
  2646. "key": "semaozy.com",
  2647. "name": "🔞色猫(FQ)",
  2648. "type": 1,
  2649. "filterable": 1,
  2650. "api": "https://caiji.semaozy.net/inc/apijson_vod.php",
  2651. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar"
  2652. },
  2653. {
  2654. "key": "vv003",
  2655. "name": "️🔞薇薇珊",
  2656. "type": 4,
  2657. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/00title05153.json",
  2658. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xc0126.jar",
  2659. "searchable": 0,
  2660. "quickSearch": 0,
  2661. "filterable": 0
  2662. },
  2663. {
  2664. "key": "XHP",
  2665. "name": "🔞高清小黄片",
  2666. "type": 3,
  2667. "api": "csp_XBPQ",
  2668. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2669. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2670. "ext": {
  2671. "主页url": "http://gqxhp.top/",
  2672. "分类": "高清一区$1#高清二区$2#高清三区$3#高清福利$33",
  2673. "分类url": "http://gqxhp.top/index.php/vod/type/id/{cateId}/page/{catePg}.html"
  2674. }
  2675. },
  2676. {
  2677. "key": "女优色库",
  2678. "name": "🔞女优色库",
  2679. "type": 3,
  2680. "api": "csp_XBPQ",
  2681. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2682. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2683. "style": {
  2684. "ratio": 1.7
  2685. },
  2686. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/女优.json"
  2687. },
  2688. {
  2689. "key": "小幺女|床吧",
  2690. "name": "🔞小幺女",
  2691. "type": 3,
  2692. "playerType": 2,
  2693. "api": "csp_XBPQ",
  2694. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2695. "filterable": 1,
  2696. "ext": {
  2697. "站名": "小幺女",
  2698. "主页url": "https://xxynhkaa1.buzz/sort/id/245.html",
  2699. "数组": "class=\"vod_box\">&&</li>",
  2700. "图片": "url('&&'",
  2701. "标题": "title=\"&&\"",
  2702. "链接": "https://xxynhkaa1.buzz/detail+href='/display&&'",
  2703. "跳转播放链接": "varplayUrl='&&'",
  2704. "直接播放": "1",
  2705. "嗅探词": "index.m3u8",
  2706. "分类数组": "<a&&</a",
  2707. "分类标题": "target=\"_blank\">&&</a[不包含:<h3>伦理作品</h3>#<h3>成人动漫</h3>#<h3>国产主播</h3>#<h3>自拍专区</h3>]",
  2708. "分类ID": "href=\"/sort/id/&&.html\"",
  2709. "分类url": "https://xxynhkaa1.buzz/type/id/{cateId}/{catePg}.html"
  2710. }
  2711. },
  2712. {
  2713. "key": "天空资源",
  2714. "name": "🔞天空",
  2715. "type": 1,
  2716. "api": "https://api.tiankongapi.com/api.php/provide/vod/",
  2717. "searchable": 1,
  2718. "changeable": 1,
  2719. "categories": []
  2720. },
  2721. {
  2722. "key": "天堂岛",
  2723. "name": "🔞天堂岛",
  2724. "type": 3,
  2725. "api": "csp_XBPQ",
  2726. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2727. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2728. "filterable": 1,
  2729. "ext": {
  2730. "主页url": "https://www.ttdao666.buzz",
  2731. "数组": "<div class=\"item&&</a",
  2732. "图片": "data-original=\"&&\"",
  2733. "标题": "title=\"&&\"",
  2734. "副标题": "<em>&&</em",
  2735. "简介": "description\" content=\"&&剧情",
  2736. "链接": "https://www.ttdao666.buzz/vod/play/id/+href=\"/vod/detail/id/&&/\"+/sid/1/nid/1/",
  2737. "跳转播放链接": "var player_*\"url\":\"&&\"",
  2738. "搜索模式": "1",
  2739. "搜索url": "https://www.ttdao666.buzz/vod/search/page/{pg}/wd/{wd}/",
  2740. "分类数组": "<a&&/a",
  2741. "分类标题": ">&&<",
  2742. "分类ID": "/vod/type/id/&&/",
  2743. "分类url": "https://www.ttdao666.buzz/vod/type/id/{cateId}/page/{catePg}/;;z"
  2744. }
  2745. },
  2746. {
  2747. "key": "手鸡助手",
  2748. "name": "🔞手鸡助手",
  2749. "type": 3,
  2750. "api": "csp_XBPQ",
  2751. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2752. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2753. "ext": {
  2754. "请求头": "手机",
  2755. "直接播放": "1",
  2756. "分类url": "https://mcpg.sjzs199p.buzz/?mod=videos&cateid={cateId}&page={catePg}",
  2757. "分类": "日韩有码$480#日韩无码$481#中文字幕$483#AV解说$485#欧美情色$482#国产情色$479#网红主播$484#卡通动漫$1505",
  2758. "播放标题": "<h1&&</h1>",
  2759. "搜索url": "https://mcpg.sjzs199p.buzz/?mod=videos&wd={wd}"
  2760. }
  2761. },
  2762. {
  2763. "key": "传媒二区",
  2764. "name": "🔞传媒二区",
  2765. "type": 3,
  2766. "api": "csp_XBPQ",
  2767. "filterable": 1,
  2768. "ext": {
  2769. "主页url": "https://www.34gaobk.com/index.html",
  2770. "数组": "<div class=\"card mb-0\">&&</a",
  2771. "标题": "atl=\"&&\"",
  2772. "副标题": "img-tag\">&&</div>",
  2773. "直接播放": "1",
  2774. "搜索模式": "1",
  2775. "搜索url": "https://www.34gaobk.com/gaosearch/{wd}-/page/{pg}/",
  2776. "分类数组": "<a&&/a>",
  2777. "分类标题": ">&&<",
  2778. "分类ID": "/gaotype/&&.html",
  2779. "分类url": "https://www.34gaobk.com/gaotype/{cateId}_{catePg}.html[https://www.34gaobk.com/gaotype/{cateId}.html]"
  2780. },
  2781. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar"
  2782. },
  2783. {
  2784. "key": "成人重口",
  2785. "name": "🔞成人重口",
  2786. "type": 3,
  2787. "api": "csp_XBPQ",
  2788. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2789. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2790. "filterable": 1,
  2791. "ext": {
  2792. "发布地址": "1:https://www.crzk11.buzz/,2:www.crzk3.top",
  2793. "主页url": "https://www.crzk22.buzz",
  2794. "数组": "<li class=\"content-item&&</li",
  2795. "图片": "data-original=\"&&\"",
  2796. "标题": "title=\"&&\"",
  2797. "副标题": "text-bg-r\">&&</span>",
  2798. "简介": "description\" content=\"&&剧情",
  2799. "链接": "https://www.crzk22.buzz/index.php/vod/play/id/+href=\"/index.php/vod/detail/id/&&.html\"+/sid/1/nid/1.html",
  2800. "跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
  2801. "搜索模式": "1",
  2802. "搜索url": "https://www.crzk22.buzz/index.php/vod/search/page/{pg}/wd/{wd}.html",
  2803. "分类数组": "<a&&/a",
  2804. "分类标题": ">&&<",
  2805. "分类ID": "/index.php/vod/type/id/&&.html",
  2806. "分类url": "https://www.crzk22.buzz/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z"
  2807. }
  2808. },
  2809. {
  2810. "key": "纤纤影视福利版",
  2811. "name": "🔞纤纤倫理",
  2812. "type": 3,
  2813. "api": "csp_XBPQ",
  2814. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2815. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2816. "playerType": 1,
  2817. "filterable": 1,
  2818. "ext": {
  2819. "主页url": "https://m.xian372.top/L/26.html",
  2820. "请求头": "手机",
  2821. "编码": "gb2312",
  2822. "数组": "<a class=\"ui-pic&&</a",
  2823. "图片": "src=\"&&\"",
  2824. "标题": "title=\"&&\"",
  2825. "副标题": "ui-type\">&&</span>",
  2826. "链接": "href=\"&&\"",
  2827. "简介": "description\"><p>&&</p",
  2828. "线路数组": "class=\"boxp15\">&&</div>",
  2829. "线路标题": ">云播福利线路<",
  2830. "播放数组": "<div class=\"playlist&&</div",
  2831. "播放列表": "<li>&&</li",
  2832. "播放标题": ">&&</a",
  2833. "播放链接": "href='&&'",
  2834. "嗅探词": "index.m3u8",
  2835. "搜索数组": "<a class=\"ui-pic&&</a",
  2836. "搜索图片": "src=\"&&\"",
  2837. "搜索标题": "title=\"&&\"",
  2838. "搜索链接": "href=\"&&\"",
  2839. "搜索url": "https://m.xian372.top/search.asp?page={pg}&searchword={wd}&searchtype=-1",
  2840. "分类数组": "<a&&</a",
  2841. "分类标题": ".html\">&&</a[不包含:2#3#4#5#下一页]",
  2842. "分类ID": "href=\"/L/&&.html\"",
  2843. "分类url": "https://m.xian372.top/L/{cateId}_{catePg}.html[https://m.xian372.top/L/{cateId}.html]"
  2844. }
  2845. },
  2846. {
  2847. "key": "亚色影库",
  2848. "name": "🔞亚瑟影库",
  2849. "type": 3,
  2850. "api": "csp_XBPQ",
  2851. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2852. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2853. "ext": {
  2854. "主页url": "https://www.yasetube.com/",
  2855. "直接播放": "1",
  2856. "嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  2857. "分类url": "https://www.yasetube.com/video/category/{cateId}/page/{catePg}",
  2858. "分类": "女厕偷拍$nvce#海角系列$hj#FC2PPV$fc2-ppv#Mesubuta系列$me#MILF人妻无码$milf#偷拍自拍$dalu#品牌传媒$madou"
  2859. }
  2860. },
  2861. {
  2862. "key": "www.pgxdy.com",
  2863. "name": "🔞黄AV资源",
  2864. "type": 0,
  2865. "api": "https://www.pgxdy.com/api/xml.php",
  2866. "recordable": 0,
  2867. "style": {
  2868. "type": "rect",
  2869. "ratio": 1.33
  2870. }
  2871. },
  2872. {
  2873. "key": "玉兔资源🔞",
  2874. "name": "🔞玉兔资源",
  2875. "type": 1,
  2876. "api": "https://yutuzy10.com/api.php/provide/vod/",
  2877. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2878. "searchable": 1,
  2879. "quickSearch": 1
  2880. },
  2881. {
  2882. "key": "老鸨资源",
  2883. "name": "🔞老鸨资源",
  2884. "type": 1,
  2885. "api": "http://laobaozy.com/api.php/provide/vod/",
  2886. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar"
  2887. },
  2888. {
  2889. "key": "老色逼资源",
  2890. "name": "🔞老色逼资源(采集)",
  2891. "type": 1,
  2892. "api": "https://apilsbzy1.com/api.php/provide/vod/",
  2893. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2894. "searchable": 1,
  2895. "quickSearch": 1
  2896. },
  2897. {
  2898. "key": "博天堂",
  2899. "name": "🔞博天堂",
  2900. "type": 0,
  2901. "api": "http://bttcjz.com/inc/sapi.php",
  2902. "jar": "https:///raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  2903. "searchable": 1,
  2904. "quickSearch": 1
  2905. },
  2906. {
  2907. "key": "肉视频",
  2908. "name": "🔞肉視頻(點選點播才有東西)",
  2909. "type": 3,
  2910. "api": "csp_XBPQ",
  2911. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2912. "ext": {
  2913. "分类url": "https://rouvx2.xyz/t/{cateId}?order=createdAt&page={catePg}",
  2914. "直接播放": "1",
  2915. "分类": "國產AV$國產AV#探花$探花#自拍流出$自拍流出#日本$日本"
  2916. }
  2917. },
  2918. {
  2919. "key": "色最色",
  2920. "name": "🔞色最色(點選點播才有東西)",
  2921. "type": 3,
  2922. "api": "csp_XBPQ",
  2923. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2924. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2925. "ext": {
  2926. "主页url": "https://xn--zovv42dba.com/",
  2927. "直接播放": "1",
  2928. "嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  2929. "分类url": "https://xn--zovv42dba.com/list-read-id-{cateId}-p-{catePg}",
  2930. "分类": "国产精品$19#偷拍自拍$20#欧美成人$26#中文无码$23#中文字幕$22#亚洲情色$21#卡通动漫$24#成人伦理$25"
  2931. }
  2932. },
  2933. {
  2934. "key": "艾蛋影视",
  2935. "name": "🔞艾蛋影视",
  2936. "type": 1,
  2937. "api": "https://www.lovedan.net/api.php/provide/vod",
  2938. "searchable": 1,
  2939. "changeable": 1,
  2940. "categories": []
  2941. },
  2942. {
  2943. "key": "我爱AV",
  2944. "name": "🔞我爱AV",
  2945. "type": 3,
  2946. "api": "csp_XBPQ",
  2947. "filterable": 1,
  2948. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/我爱AV.json",
  2949. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar"
  2950. },
  2951. {
  2952. "key": "我爱AV",
  2953. "name": "🔞我爱AV社区",
  2954. "type": 3,
  2955. "api": "csp_XBPQ",
  2956. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2957. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2958. "playerType": 2,
  2959. "filterable": 1,
  2960. "ext": {
  2961. "数组": "class=\"stui-vodlist__thumb lazyload\"&&</a",
  2962. "副标题": "span class=\"pic-texttext-right\">&&</p",
  2963. "线路数组": "<li&&</li>",
  2964. "线路标题": "✨PYLB专享✨+<h3>私密专线</h3>",
  2965. "播放标题": ">&&</a",
  2966. "搜索模式": "1",
  2967. "搜索url": "/vodsearch/{wd}----------{pg}---.html",
  2968. "分类数组": "<li&&</li>",
  2969. "分类标题": ">&&</a",
  2970. "分类ID": "/vodtype/&&.html",
  2971. "分类链接": "https://vip.woaav.online:13097/vodshow/{cateId}--------{catePg}---.html"
  2972. }
  2973. },
  2974. {
  2975. "key": "沙咖影院",
  2976. "name": "🔞沙咖影院",
  2977. "type": 3,
  2978. "api": "csp_XBPQ",
  2979. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  2980. "filterable": 1,
  2981. "ext": {
  2982. "数组": "stui-vodlist__thumb lazyload&&</a",
  2983. "图片": "data-original=\"&&\"",
  2984. "图片代理": "1",
  2985. "副标题": "pic-texttext-right\">&&</span>",
  2986. "简介": "description\"content=\"&&\"",
  2987. "链接": "href=\"/voddetail/&&.html\"",
  2988. "链接前缀": "https://sar.sarga.cc/vodplay/",
  2989. "链接后缀": "-1-1.html",
  2990. "跳转播放链接": "urlDecode(var player*url\":\"&&\")",
  2991. "搜索url": "https://sar.sarga.cc/vodsearch/{wd}----------{pg}---.html",
  2992. "分类url": "https://sar.sarga.cc/vodtype/{cateId}-{catePg}.html;;z",
  2993. "分类": "中文新作$20#国语视频$21#有码精品$24#动漫专场$23#经典伦理$25#欧美性爱$22"
  2994. }
  2995. },
  2996. {
  2997. "key": "花影视",
  2998. "name": "🔞花影视(點選點播才有東西)",
  2999. "type": 3,
  3000. "api": "csp_XBPQ",
  3001. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3002. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3003. "ext": {
  3004. "数组": "col-6 col-sm-4 col-lg-3\">&&</div></div>",
  3005. "图片": "data-original=\"&&\"",
  3006. "标题": "<h6 class=\"title\"><a href=*>&&</a>",
  3007. "播放数组": "class=\"item line\">&&</div>",
  3008. "线路数组": "class=\"item line\">&&</div>",
  3009. "分类url": "https://11gaokk.com/typegaokk/{cateId}_{catePg}.html[https://11gaokk.com/typegaokk/{cateId}.html]",
  3010. "分类": "日韩$2#巨乳$7#中文$4#口交$8#制服$9#无码$11#女优$18#人妻$19#独家$22#潮吹$24#三级$12"
  3011. }
  3012. },
  3013. {
  3014. "key": "暗网色库",
  3015. "name": "🔞暗网(點選點播才有東西)",
  3016. "type": 3,
  3017. "api": "csp_XBPQ",
  3018. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3019. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3020. "style": {
  3021. "ratio": 1.7
  3022. },
  3023. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/暗网.json"
  3024. },
  3025. {
  3026. "key": "csp_XYQHiker_中国性味",
  3027. "name": "🔞中国性味",
  3028. "type": 3,
  3029. "api": "csp_XYQHiker",
  3030. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3031. "searchable": 1,
  3032. "quickSearch": 0,
  3033. "filterable": 0,
  3034. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/中国性味.json",
  3035. "style": {
  3036. "type": "rect",
  3037. "ratio": 1.6
  3038. }
  3039. },
  3040. {
  3041. "key": "csp_XYQHiker_台湾kiss",
  3042. "name": "🔞台湾kiss",
  3043. "type": 3,
  3044. "api": "csp_XYQHiker",
  3045. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3046. "searchable": 1,
  3047. "quickSearch": 0,
  3048. "filterable": 0,
  3049. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/台湾kiss.json",
  3050. "style": {
  3051. "type": "rect",
  3052. "ratio": 1.6
  3053. }
  3054. },
  3055. {
  3056. "key": "csp_XYQHiker_亚色影库",
  3057. "name": "🔞亚色影库",
  3058. "type": 3,
  3059. "api": "csp_XYQHiker",
  3060. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3061. "searchable": 1,
  3062. "quickSearch": 0,
  3063. "filterable": 0,
  3064. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/亚色影库.json",
  3065. "style": {
  3066. "type": "rect",
  3067. "ratio": 1.8
  3068. }
  3069. },
  3070. {
  3071. "key": "csp_XYQHiker_亚洲色吧",
  3072. "name": "🔞亚洲色吧(點選點播才有東西)",
  3073. "type": 3,
  3074. "api": "csp_XYQHiker",
  3075. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3076. "searchable": 1,
  3077. "quickSearch": 0,
  3078. "filterable": 0,
  3079. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/亚洲色吧.json",
  3080. "style": {
  3081. "type": "rect",
  3082. "ratio": 1.6
  3083. }
  3084. },
  3085. {
  3086. "key": "csp_XYQHiker_动漫PRO",
  3087. "name": "🔞动漫PRO(點選點播才有東西)",
  3088. "type": 3,
  3089. "api": "csp_XYQHiker",
  3090. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3091. "searchable": 1,
  3092. "quickSearch": 0,
  3093. "filterable": 0,
  3094. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/动漫pro.json",
  3095. "style": {
  3096. "type": "rect",
  3097. "ratio": 1.6
  3098. }
  3099. },
  3100. {
  3101. "key": "csp_XYQHiker_好色TV",
  3102. "name": "🔞好色TV",
  3103. "type": 3,
  3104. "api": "csp_XYQHiker",
  3105. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3106. "searchable": 1,
  3107. "quickSearch": 0,
  3108. "filterable": 0,
  3109. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/好色tv.json",
  3110. "style": {
  3111. "type": "rect",
  3112. "ratio": 1.6
  3113. }
  3114. },
  3115. {
  3116. "key": "csp_XYQHiker_色库TV",
  3117. "name": "🔞色库TV",
  3118. "type": 3,
  3119. "api": "csp_XYQHiker",
  3120. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3121. "searchable": 1,
  3122. "quickSearch": 0,
  3123. "filterable": 0,
  3124. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/色库tv.json",
  3125. "style": {
  3126. "type": "rect",
  3127. "ratio": 1.6
  3128. }
  3129. },
  3130. {
  3131. "key": "csp_XYQHiker_直播1",
  3132. "name": "🔞直播1",
  3133. "type": 3,
  3134. "api": "csp_XYQHiker",
  3135. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3136. "searchable": 1,
  3137. "quickSearch": 0,
  3138. "filterable": 0,
  3139. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/直播1.json",
  3140. "style": {
  3141. "type": "rect",
  3142. "ratio": 1.6
  3143. }
  3144. },
  3145. {
  3146. "key": "csp_XYQHiker_直播2",
  3147. "name": "🔞直播2",
  3148. "type": 3,
  3149. "api": "csp_XYQHiker",
  3150. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3151. "searchable": 1,
  3152. "quickSearch": 0,
  3153. "filterable": 0,
  3154. "ext": {
  3155. "规则名": "直播1-XYQHiker",
  3156. "规则作者": "飞鱼",
  3157. "请求头参数": "手机",
  3158. "网页编码格式": "UTF-8",
  3159. "分类起始页码": "1",
  3160. "分类链接": "http://api.vipmisss.com:81/mf/jsonDancelife.txt",
  3161. "分类名称": "直播",
  3162. "分类名称替换词": "",
  3163. "分类截取模式": "0",
  3164. "分类列表数组规则": "zhubo",
  3165. "分类片单是否Jsoup写法": "1",
  3166. "分类片单标题": "title",
  3167. "分类片单链接": "address",
  3168. "分类片单图片": "img",
  3169. "分类片单副标题": "Number",
  3170. "分类片单链接加前缀": "",
  3171. "分类片单链接加后缀": "",
  3172. "链接是否直接播放": "1",
  3173. "分析MacPlayer": "0",
  3174. "是否开启手动嗅探": "1",
  3175. "手动嗅探视频链接关键词": ".m3u8#.mp4#flv#rtmp",
  3176. "手动嗅探视频链接过滤词": "baidu.com"
  3177. },
  3178. "style": {
  3179. "type": "rect",
  3180. "ratio": 1.6
  3181. }
  3182. },
  3183. {
  3184. "key": "csp_XYQHiker_直播大全",
  3185. "name": "🔞直播大全",
  3186. "type": 3,
  3187. "api": "csp_XYQHiker",
  3188. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3189. "searchable": 1,
  3190. "quickSearch": 0,
  3191. "filterable": 0,
  3192. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/直播大全.json",
  3193. "style": {
  3194. "type": "rect",
  3195. "ratio": 1.6
  3196. }
  3197. },
  3198. {
  3199. "key": "csp_XYQHiker_热骚",
  3200. "name": "🔞热骚",
  3201. "type": 3,
  3202. "api": "csp_XYQHiker",
  3203. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3204. "searchable": 1,
  3205. "quickSearch": 0,
  3206. "filterable": 0,
  3207. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/热骚.json",
  3208. "style": {
  3209. "type": "rect",
  3210. "ratio": 1.6
  3211. }
  3212. },
  3213. {
  3214. "key": "csp_XYQHiker_黄色仓库123",
  3215. "name": "🔞黄色仓库123✈️🔗",
  3216. "type": 3,
  3217. "api": "csp_XYQHiker",
  3218. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3219. "searchable": 1,
  3220. "quickSearch": 0,
  3221. "filterable": 0,
  3222. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/黄色仓库123.json",
  3223. "style": {
  3224. "type": "rect",
  3225. "ratio": 1.6
  3226. }
  3227. },
  3228. {
  3229. "key": "csp_XYQHiker_黄色仓库la",
  3230. "name": "🔞黄色仓库啦✈️🔗",
  3231. "type": 3,
  3232. "api": "csp_XYQHiker",
  3233. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3234. "searchable": 1,
  3235. "quickSearch": 0,
  3236. "filterable": 0,
  3237. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/黄色仓库啦.json",
  3238. "style": {
  3239. "type": "rect",
  3240. "ratio": 1.6
  3241. }
  3242. },
  3243. {
  3244. "key": "csp_XYQHiker_酷爱成人网>",
  3245. "name": "🔞酷爱成人网✈️",
  3246. "type": 3,
  3247. "api": "csp_XYQHiker",
  3248. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3249. "searchable": 1,
  3250. "quickSearch": 0,
  3251. "filterable": 0,
  3252. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/酷爱成人网.json",
  3253. "style": {
  3254. "type": "rect",
  3255. "ratio": 1.6
  3256. }
  3257. },
  3258. {
  3259. "key": "微密猫",
  3260. "name": "🔞微密猫(點選點播才有東西)",
  3261. "type": 3,
  3262. "api": "csp_XBPQ",
  3263. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3264. "ext": {
  3265. "主页url": "https://maobao.vip/",
  3266. "首页": "无圣光视频$wushebgguang/无圣光视频",
  3267. "数组": "\"post grid\"&&\"post grid\"",
  3268. "图片": "src=\"&&\"",
  3269. "标题": "title=\"&&\"",
  3270. "副标题": "</i>&&</span>",
  3271. "链接": "href=\"&&\"",
  3272. "分类url": "https://maobao.vip/mid/{cateId}/page/{catePg};;z",
  3273. "分类": "无圣光视频$wushebgguang/无圣光视频#微密视频$weme/wmsp#森甜视频$stxl/stsp#网红视频$whxl/whsp"
  3274. }
  3275. },
  3276. {
  3277. "key": "指间的黑客",
  3278. "name": "🔞金陵撸铁汉",
  3279. "type": 3,
  3280. "api": "csp_XBPQ",
  3281. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3282. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3283. "ext": {
  3284. "主页url": "https://jud.jllth9.motorcycles/cn/home/web/",
  3285. "直接播放": "1",
  3286. "数组": "img\">&&</p",
  3287. "图片": "src=\"&&\"",
  3288. "标题": "title-p\">*_self\">&&</a>",
  3289. "副标题": "</i>&&</span>",
  3290. "链接": "href=\"&&\"[替换:play#.html>>/sid/1/nid/1.html]",
  3291. "搜索模式": "1",
  3292. "搜索url": "https://jud.jllth9.motorcycles/cn/home/web/index.php/vod/search/page/{pg}/wd/{wd}.html",
  3293. "分类url": "https://jud.jllth9.motorcycles/cn/home/web/index.php/vod/type/id/{cateId}/{catePg}.html",
  3294. "分类": "自拍偷拍&巨乳波霸&强奸乱伦&人妻熟女&制服丝袜&花季少女&无码露毛&群P多人&人兽人妖&男同女同&韩日专区&欧美色情&成人动漫&三级剧情",
  3295. "分类值": "20&21&22&23&24&25&26&27&28&29&30&31&32&33"
  3296. }
  3297. },
  3298. {
  3299. "key": "绝美视频",
  3300. "name": "🔞绝美视频",
  3301. "type": 3,
  3302. "api": "csp_XBPQ",
  3303. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3304. "style": {
  3305. "type": "rect",
  3306. "ratio": 1.5
  3307. },
  3308. "ext": {
  3309. "主页url": "https://www.juemei.fun/",
  3310. "分类url": "https://www.juemei.fun/type/{cateId}-{catePg}.html;;z",
  3311. "分类": "tsuki$1#jeehyeon$13#YeonHwa$2#KYUL$3#ChoiApple$4#클로이 요가 Chloe YOGA$5#jiyoung$12#임제리 IMJERRY LOOKBOOK$7#Ajin lookbook$8#엔픽컴퍼니 Official$9#Saki Vlog$10#HAATSSOl 햇쏠 LOOKBOOK VLOGER$11#yunji$14#GGotBBang TV$15#슬렌서아 Slenn Seoah$6"
  3312. }
  3313. },
  3314. {
  3315. "key": "sexBJcam",
  3316. "name": "🔞sexBJcam",
  3317. "type": 3,
  3318. "api": "csp_XBPQ",
  3319. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3320. "timeout": 120,
  3321. "style": {
  3322. "type": "rect",
  3323. "ratio": 1.5
  3324. },
  3325. "ext": {
  3326. "数组": "<article&&</article>",
  3327. "直接播放": "1",
  3328. "图片": "data-src=\"&&\"",
  3329. "分类url": "https://sexbjcam.com/category/{cateId}/page/{catePg}/?filter=latest",
  3330. "分类": "chinese-gril$chinese-gril#korean-bj$korean-bj#chaturbate$chaturbate"
  3331. }
  3332. },
  3333. {
  3334. "key": "蓝金鱼AV",
  3335. "name": "🔞蓝金鱼AV",
  3336. "type": 3,
  3337. "api": "csp_XBPQ",
  3338. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3339. "页面代理": "127.0.0.1:10172",
  3340. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3341. "ext": {
  3342. "主页url": "https://cezeoj.ljyav7.beauty/cn/home/web/",
  3343. "直接播放": "1",
  3344. "分类url": "https://cezeoj.ljyav7.beauty/vodtype/{cateId}.html",
  3345. "分类": "国产精品$20#主播大秀$21#唯美视频$22#口交视频$23#日本有碼$24#日本無碼$25#动漫视频$26#欧美视频$27"
  3346. }
  3347. },
  3348. {
  3349. "key": "农夫与少妇",
  3350. "name": "🔞农夫&少妇(點選點播才有東西)",
  3351. "type": 3,
  3352. "api": "csp_XBPQ",
  3353. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar",
  3354. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3355. "searchable": 1,
  3356. "quickSearch": 1,
  3357. "filterable": 1,
  3358. "ext": {
  3359. "请求头": "User-Agent$MOBILE_UA",
  3360. "分类url": "https://nfsfhf9.nfsf-a16.buzz/go/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
  3361. "分类": "国产专区$6#制服诱惑$13#中文字幕$7#国产传媒$8#日本有码$9#日本无码$10#欧美无码$11#强奸乱伦$12#三级专区$23#人妖系列$30#韩国主播$31#国产主播$14#激情动漫$15#明星换脸$16#抖阴视频$20#女优明星$21#网曝黑料$22#AV解说$24#SM调教$25#少女萝莉$26"
  3362. }
  3363. },
  3364. {
  3365. "key": "婶婶影视",
  3366. "name": "🔞婶婶(點選點播才有東西)",
  3367. "type": 3,
  3368. "api": "csp_XBPQ",
  3369. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3370. "searchable": 1,
  3371. "quickSearch": 1,
  3372. "filterable": 1,
  3373. "ext": {
  3374. "请求头": "User-Agent$MOBILE_UA",
  3375. "数组": "col-25 col-m-12 mb20&&</section>",
  3376. "标题": ">&&</a></h2>",
  3377. "图片": "img src=\"&&\"",
  3378. "链接": "href=\"&&\"",
  3379. "播放数组": "pchide wapflex tx-flex-hc mb20&&</div>",
  3380. "搜索url": "https://sslli9.ssll35.buzz/links/index.php/vod/search/page/{pg}/wd/{wd}.html",
  3381. "分类url": "https://sslli9.ssll35.buzz/links/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
  3382. "分类": "国产视频$6#制服诱惑$13#中文字幕$7#国产传媒$8#日本有码$9#日本无码$10#欧美无码$11#强奸乱伦$12#伦理三级$23#人妖系列$30#韩国主播$31#国产主播$14#激情动漫$15#明星换脸$16#抖阴视频$20#女优明星$21#网曝黑料$22#AV解说$24#SM调教$25#萝莉少女$26"
  3383. }
  3384. },
  3385. {
  3386. "key": "小姨子的诱惑",
  3387. "name": "🔞妻妹(點選點播才有東西)",
  3388. "type": 3,
  3389. "api": "csp_XBPQ",
  3390. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3391. "searchable": 1,
  3392. "quickSearch": 1,
  3393. "filterable": 1,
  3394. "ext": {
  3395. "请求头": "User-Agent$MOBILE_UA",
  3396. "编码": "UTF-8",
  3397. "数组": "<li class=\"content-item&&</span>",
  3398. "标题": "title=\"&&\"",
  3399. "图片": "data-original=\"&&\"",
  3400. "链接": "href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]",
  3401. "搜索url": "https://s5t6u7v8.xiaoyizi85.buzz/vodsearch/{wd}----------{pg}---.html",
  3402. "搜索链接": "/vodplay/+/voddetail/&&.html+-1-1.html",
  3403. "分类url": "https://s5t6u7v8.xiaoyizi85.buzz/vodtype/{cateId}-{catePg}.html;;z",
  3404. "分类": "国产传媒$1#国产剧情$2#精品资源$4#特色仓库$5#必射精选$161#网曝事件$162#中文字幕$15",
  3405. "类型": "精东影业$27#蜜桃传媒$24#天美传媒$23#皇家华人$25#麻豆视频$21#兔子先生$30#91制片厂$22#星空传媒$26萝莉社$38#杏吧原创$31#大象传媒$34#开心鬼传媒$35#mini传媒$33#糖心Vlog$37#性视界$39#玩偶姐姐$32网曝黑料$53#激情动漫$49#AV解说$55#国产主播$48#明星换脸$50#抖阴视频$51#伦理三级$54#女优明星$52SM调教$56#网红头条$60#极品媚黑$58#萝莉少女$57#VR视角$63#人妖系列$61#韩国主播$62#女同性恋$59偷拍自拍$163#国产大作$164#乱伦毁三观$165#嫖妓全过程$166#淫乱学生妹$167#黑料不打烊$168#监控摄像头$169#主播网红$170成人综艺$171#媚黑母狗$172#为国争光$173#少女破处$174#燃烧荷尔蒙$175#重口味$176#东南亚$178#人兽典藏$197调教中文$150#制服中文$148#人妻中文$149#无码中文$144#强奸中文$145#出轨中文$151#乱伦中文$147#巨乳中文$146"
  3406. }
  3407. },
  3408. {
  3409. "key": "色弟弟",
  3410. "name": "🔞弟弟",
  3411. "type": 3,
  3412. "api": "csp_XBPQ",
  3413. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3414. "searchable": 1,
  3415. "quickSearch": 1,
  3416. "filterable": 1,
  3417. "ext": {
  3418. "请求头": "User-Agent$MOBILE_UA",
  3419. "数组": "popup-video-link&&</a>",
  3420. "标题": "<strong class=\"title\">&&</strong>",
  3421. "图片": "original=\"&&\"",
  3422. "链接": "href=\"&&\"",
  3423. "搜索url": "https://bk8.sedidi33.xyz/?mod=videos&wd={wd}&page={pg}",
  3424. "分类url": "https://bk8.sedidi33.xyz/?mod=videos&cateid={cateId}&page={catePg};;z",
  3425. "分类": "国产精品$5049#国产传媒$5050#网曝黑料$5051#中文字幕$5052#日本有码$5053#日本无码$5054#激情欧美$5055#成人动漫$5056"
  3426. }
  3427. },
  3428. {
  3429. "key": "蜜桃社(采集)🔞",
  3430. "name": "🔞蜜桃社",
  3431. "type": 1,
  3432. "api": "https://mitaoshe.cyou/api.php/provide/vod/",
  3433. "searchable": 1,
  3434. "quickSearch": 1,
  3435. "categories": [],
  3436. "style": {
  3437. "type": "rect",
  3438. "ratio": 1.6
  3439. }
  3440. },
  3441. {
  3442. "key": "csp_香蕉资源",
  3443. "name": "🔞香蕉中文资源",
  3444. "type": 3,
  3445. "api": "csp_XBPQ",
  3446. "jar": "https://raw.githubusercontent.com/aliluya1977/TVBox/master/spider.jar",
  3447. "searchable": 1,
  3448. "quickSearch": 1,
  3449. "filterable": 1,
  3450. "ext": {
  3451. "站名": "香蕉资源",
  3452. "主页url": "https://su-qq.vip/xjzy/",
  3453. "直接播放": "1",
  3454. "分类": "解说原片$sd-jieshuoyuanpian#3D同人$sd-3Dtongren#中文无码$sd-zhongwenwuma#中文综合$sd-zhongwenzonghe#中文近亲$sd-zhongwenjingqing#中文护士$sd-zhongwenhushi#中文师生$sd-zhongwenshisheng#中文强奸$sd-zhongwenqiangjian#国产自拍$sd-guochanzipai#美女主播$sd-meinvzhubo#三级伦理$sd-sanjizonghe",
  3455. "图片": "data-original=\"&&\"",
  3456. "标题": "title=\"&&\"",
  3457. "链接": "href=\"/xjzy/sdplay&&.html\"",
  3458. "副标题": "<div class=\"duration\">&&</div>",
  3459. "链接前缀": "https://su-qq.vip/xjzy/sdplay",
  3460. "链接后缀": ".html",
  3461. "线路数组": "button&&/a>",
  3462. "线路标题": ">&&<",
  3463. "搜索数组": "<div class=\"item\"&&</div>",
  3464. "搜索图片": "data-original=\"&&\"",
  3465. "搜索标题": "title=\"&&\"",
  3466. "搜索链接": "href=\"/xjzy/sdplay&&.html\"",
  3467. "搜索模式": "1",
  3468. "搜索url": "https://su-qq.vip/xjzy/vod/search/page/{catePg}/wd/{wd}.html",
  3469. "搜索链接前缀": "https://su-qq.vip/xjzy/sdplay",
  3470. "搜索链接后缀": "-1-1.html",
  3471. "分类url": "https://su-qq.vip/xjzy/{cateId}-{catePg}.html",
  3472. "免嗅": "0",
  3473. "嗅探词": ".m3u8#.mp4#.flv#.m4a#.avi#.mkv#.mov#.3gp#.asf#.rm#.rmvb#.wmv#.mpg#.mpeg#.mpe#.ts#.vob#.mp3#.wma"
  3474. }
  3475. },
  3476. {
  3477. "key": "csp_xBPQ香蕉超清",
  3478. "name": "🔞新香蕉超清资源〔xBPQ〕",
  3479. "type": 3,
  3480. "api": "csp_XBPQ",
  3481. "jar": "https://raw.githubusercontent.com/aliluya1977/TVBox/master/spider.jar",
  3482. "searchable": 1,
  3483. "quickSearch": 1,
  3484. "filterable": 1,
  3485. "ext": {
  3486. "站名": "超清资源",
  3487. "主页url": "https://su-qq.vip/cq/",
  3488. "直接播放": "1",
  3489. "分类": "亚洲AV$as-yazhou#自拍偷拍$as-zipaitoupai#超清传媒$as-chaoqingchuanmei#3D动漫$as-3Ddongman#欧美AV$as-oumei#乱伦人妻$as-luanlunrenqi#丝袜制服$as-siwazhifu#直播录播$as-zhibolubo#SM另类$as-SMlinglei#超清三级$as-chaoqingsanji",
  3490. "数组": "<div class=\"item\"&&</div>",
  3491. "图片": "data-original=\"&&\"",
  3492. "标题": "title=\"&&\"",
  3493. "链接": "href=\"/cq/asplay&&.html\"",
  3494. "副标题": "<div class=\"duration\">&&</div>",
  3495. "链接前缀": "https://su-qq.vip/cq/asplay",
  3496. "链接后缀": ".html",
  3497. "线路数组": "button&&/a>",
  3498. "线路标题": ">&&<",
  3499. "搜索图片": "data-original=\"&&\"",
  3500. "搜索标题": "title=\"&&\"",
  3501. "搜索链接": "href=\"/cq/k&&.html\"",
  3502. "搜索副标题": "<div class=\"duration\">&&</div>",
  3503. "搜索模式": "1",
  3504. "搜索url": "https://su-qq.vip/cq/vod/search/page/{catePg}/wd/{wd}.html",
  3505. "搜索链接前缀": "https://avhh.vip/cq/asplay",
  3506. "搜索链接后缀": "-1-1.html",
  3507. "简介": "<p>&&</p>",
  3508. "分类url": "https://su-qq.vip/cq/{cateId}-{catePg}.html",
  3509. "免嗅": "0"
  3510. }
  3511. },
  3512. {
  3513. "key": "csp_xBPQ_香蕉AV解说",
  3514. "name": "🔞香蕉AV解说",
  3515. "type": 3,
  3516. "api": "csp_XBPQ",
  3517. "jar": "https://raw.githubusercontent.com/aliluya1977/TVBox/master/spider.jar",
  3518. "searchable": 1,
  3519. "quickSearch": 1,
  3520. "filterable": 0,
  3521. "ext": {
  3522. "站名": "AV解说",
  3523. "主页url": "https://su-qq.vip/avjs/",
  3524. "直接播放": "1",
  3525. "分类": "AV解说$pa-AVJS",
  3526. "图片": "data-original=\"&&\"",
  3527. "标题": "title=\"&&\"",
  3528. "链接": "href=\"/avjs/paplay&&.html\"",
  3529. "副标题": "<div class=\"duration\">&&</div>",
  3530. "链接前缀": "https://su-qq.vip/avjs/paplay",
  3531. "链接后缀": ".html",
  3532. "线路标题": ">&&<",
  3533. "搜索数组": "<div class=\"item\"&&</div>",
  3534. "搜索图片": "data-original=\"&&\"",
  3535. "搜索标题": "title=\"&&\"",
  3536. "搜索链接": "href=\"/avjs/paplay&&.html\"",
  3537. "搜索副标题": "<div class=\"duration\">&&</div>",
  3538. "搜索模式": "1",
  3539. "搜索url": "https://su-qq.vip/avjs/vod/search/page/{catePg}/wd/{wd}.html",
  3540. "搜索链接前缀": "https://su-qq.vip/avjs/paplay",
  3541. "搜索链接后缀": "-1-1.html",
  3542. "简介": "<p>&&</p>",
  3543. "分类url": "https://su-qq.vip/avjs/{cateId}-{catePg}.html",
  3544. "免嗅": "0"
  3545. }
  3546. },
  3547. {
  3548. "key": "csp_xBPQ_香蕉久久热",
  3549. "name": "🔞香蕉久久热",
  3550. "type": 3,
  3551. "api": "csp_XBPQ",
  3552. "jar": "https://raw.githubusercontent.com/aliluya1977/TVBox/master/spider.jar",
  3553. "searchable": 1,
  3554. "quickSearch": 1,
  3555. "filterable": 0,
  3556. "ext": {
  3557. "站名": "久久热",
  3558. "主页url": "https://su-qq.vip/99re/",
  3559. "直接播放": "1",
  3560. "分类": "国产自拍$io-guochanzipai#欧美$io-oumei#中文字幕$io-zhongwenzimu#李宗瑞全集$io-lizongruiquanji#日本无码$io-ribenwuma#加勒比$io-jialebi#日本有码$io-ribenyouma#一本道$io-yibendao#高清$io-gaoqing#潮吹$io-chaochui#会员认证作品$io-jiujiurehuiyuanrenzhengzuopin#制服丝袜$io-zhifusiwa#口爆颜射$io-koubaoyanshe#肛交$io-gangjiao#东京热$io-dongjingre#$小格式综合io-xiaogeshizonghe#女主播系列$io-hanguonvzhuboxilie#成人动漫$io-chengrendongman#SM性虐$io-SMxingnue#韩国综合$io-hanguozonghe",
  3561. "数组": "<div class=\"item\"&&</div>",
  3562. "图片": "data-original=\"&&\"",
  3563. "标题": "title=\"&&\"",
  3564. "链接": "href=\"/99re/ioplay&&.html\"",
  3565. "副标题": "<div class=\"duration\">&&</div>",
  3566. "链接前缀": "https://su-qq.vip/99re/ioplay",
  3567. "链接后缀": ".html",
  3568. "搜索数组": "<div class=\"item\"&&</div>",
  3569. "搜索图片": "data-original=\"&&\"",
  3570. "搜索标题": "title=\"&&\"",
  3571. "搜索链接": "href=\"/99re/d&&.html\"",
  3572. "搜索副标题": "<div class=\"duration\">&&</div>",
  3573. "搜索模式": "1",
  3574. "搜索url": "https://su-qq.vip/99re/vod/search/wd/{wd}.html",
  3575. "搜索链接前缀": "https://su-qq.vip/99re/ioplay",
  3576. "搜索链接后缀": "-1-1.html",
  3577. "简介": "<p>&&</p>",
  3578. "分类url": "https://su-qq.vip/99re/{cateId}-{catePg}.html",
  3579. "免嗅": "0"
  3580. }
  3581. },
  3582. {
  3583. "key": "csp_xBPQ_香蕉国产",
  3584. "name": "🔞新香蕉国产传媒",
  3585. "type": 3,
  3586. "api": "csp_XBPQ",
  3587. "jar": "https://raw.githubusercontent.com/aliluya1977/TVBox/master/spider.jar",
  3588. "searchable": 1,
  3589. "quickSearch": 1,
  3590. "filterable": 0,
  3591. "ext": {
  3592. "站名": "国产传媒",
  3593. "主页url": "https://su-qq.vip/gccm/",
  3594. "直接播放": "1",
  3595. "分类": "综合传媒$op-madouyuanchuang#91制片厂$op-91zhipianchang#糖心Vlgo$op-tangxinVlgo#天美传媒$op-tianmeichuanmei#蜜桃传媒$op-mitaochuanmei#皇家华人$op-huangjiahuaren#星空传媒$op-xingkongchuanmei#精东影业$op-jingdongyingye#乐播传媒$op-lebochuanmei#乌鸦传媒$op-wuyachuanmei#兔子先生$op-tuzixiansheng#杏吧原创$op-xingbayuanchuang#MINI传媒$op-minichuanmei#大象传媒$op-daxiangchuanmei#开心鬼传媒$op-kaixinguichuanmei#PsychoPorn$op-PsychoPorn",
  3596. "图片": "data-original=\"&&\"",
  3597. "标题": "title=\"&&\"",
  3598. "链接": "href=\"/gccm/opplay-&&.html\"",
  3599. "副标题": "<div class=\"duration\">&&</div>",
  3600. "链接前缀": "https://su-qq.vip/gccm/opplay-",
  3601. "链接后缀": ".html",
  3602. "线路数组": "button-rounded&&/a>",
  3603. "线路标题": ">&&<",
  3604. "搜索图片": "data-original=\"&&\"",
  3605. "搜索标题": "title=\"&&\"",
  3606. "搜索链接": "href=\"/gccm/p-&&.html\"",
  3607. "搜索副标题": "<div class=\"duration\">&&</div>",
  3608. "搜索链接前缀": "https://su-qq.vip/gccm/opplay-",
  3609. "搜索链接后缀": "-1-1.html",
  3610. "搜索模式": "1",
  3611. "搜索url": "https://su-qq.vip/gccm/vod/search/wd/{wd}.html",
  3612. "简介": "<p>&&</p>",
  3613. "分类url": "https://su-qq.vip/gccm/{cateId}-{catePg}.html",
  3614. "免嗅": "0"
  3615. }
  3616. },
  3617. {
  3618. "key": "csp_香蕉废柴网",
  3619. "name": "🔞香蕉废柴网",
  3620. "type": 3,
  3621. "api": "csp_XBPQ",
  3622. "jar": "https://raw.githubusercontent.com/aliluya1977/TVBox/master/spider.jar",
  3623. "searchable": 1,
  3624. "quickSearch": 1,
  3625. "filterable": 1,
  3626. "ext": {
  3627. "站名": "香蕉废柴",
  3628. "主页url": "https://su-qq.vip/fcw/",
  3629. "直接播放": "1",
  3630. "数组": "<div class=\"item\"&&</div>",
  3631. "图片": "data-original=\"&&\"",
  3632. "标题": "title=\"&&\"",
  3633. "链接": "href=\"/fcw/uiplay&&.html\"",
  3634. "副标题": "<div class=\"duration\">&&</div>",
  3635. "链接前缀": "https://su-qq.vip/fcw/uiplay",
  3636. "链接后缀": ".html",
  3637. "线路标题": ">&&<",
  3638. "搜索数组": "<div class=\"item\"&&</div>",
  3639. "搜索图片": "data-original=\"&&\"",
  3640. "搜索标题": "title=\"&&\"",
  3641. "搜索链接": "href=\"/fcw/f&&.html\"",
  3642. "搜索模式": "1",
  3643. "搜索url": "https://su-qq.vip/fcw/vod/search/wd/{wd}.html",
  3644. "搜索链接前缀": "https://su-qq.vip/fcw/uiplay",
  3645. "搜索链接后缀": "-1-1.html",
  3646. "分类url": "https://su-qq.vip/fcw/{cateId}-{catePg}.html",
  3647. "分类": "VIP专区&偷拍自拍&国产自拍&日本有码&日本无码&成人动漫&韩国综合&VR专区&欧美",
  3648. "分类值": "ui-VIPzhuanqu&ui-toupaixilie&ui-guochanzipai&ui-ribenyouma&ui-ribenwuma&ui-chengrendongman&ui-hanguozonghe&ui-VRzhuanqu&ui-oumei",
  3649. "免嗅": "0"
  3650. }
  3651. },
  3652. {
  3653. "key": "csp_XYQHiker_xtoons",
  3654. "name": "🔞Xtoons动漫(點選點播才有東西)",
  3655. "type": 3,
  3656. "api": "csp_XYQHiker",
  3657. "searchable": 1,
  3658. "quickSearch": 0,
  3659. "filterable": 0,
  3660. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/xtoons.json",
  3661. "style": {
  3662. "type": "rect",
  3663. "ratio": 1.6
  3664. }
  3665. },
  3666. {
  3667. "key": "csp_XYQHiker_youjizz",
  3668. "name": "🔞Youjizz",
  3669. "type": 3,
  3670. "api": "csp_XYQHiker",
  3671. "searchable": 1,
  3672. "quickSearch": 0,
  3673. "filterable": 0,
  3674. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/youjizz.json",
  3675. "style": {
  3676. "type": "rect",
  3677. "ratio": 1.6
  3678. }
  3679. },
  3680. {
  3681. "key": "csp_XYBQ",
  3682. "name": "🔞比卡比卡",
  3683. "type": 3,
  3684. "api": "csp_XBPQ",
  3685. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3686. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3687. "filterable": 1,
  3688. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/比卡比卡.json"
  3689. },
  3690. {
  3691. "key": "csp_顶级网曝",
  3692. "name": "🔞顶级网曝",
  3693. "type": 3,
  3694. "api": "csp_XBPQ",
  3695. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3696. "playerType": 2,
  3697. "filterable": 0,
  3698. "ext": {
  3699. "请求头": "手机",
  3700. "站名": "顶级网曝",
  3701. "主页url": "https://www.djwb3.top/",
  3702. "数组": "<li class=\"content-item\">&&</a>",
  3703. "标题": "title=\"&&\"",
  3704. "图片": "data-original=\"&&\"",
  3705. "播放数组": "<td>&&</td>",
  3706. "播放链接": "href=\"&&\"",
  3707. "跳转播放链接": "urlDecode(var player*url\":\"&&\")",
  3708. "免嗅": "0",
  3709. "搜索url": "https://www.djwb3.top/index.php/vod/search/page/{pg}/wd/{wd}.html",
  3710. "嗅探词": ".m3u8#.mp4",
  3711. "分类url": "https://www.djwb3.top/index.php/vod/type/id/{cateId}/page/{catePg}.html",
  3712. "分类数组": "<li&&</li>",
  3713. "分类标题": "href=\"/index.php/vod/type/id/*.html\"target=\"_blank\">&&</a>",
  3714. "分类ID": "/index.php/vod/type/id/&&.html"
  3715. }
  3716. },
  3717. {
  3718. "key": "csp_XBPQ_疯猫av",
  3719. "name": "🔞疯猫av",
  3720. "type": 3,
  3721. "api": "csp_XBPQ",
  3722. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3723. "filterable": 0,
  3724. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/疯猫av.json"
  3725. },
  3726. {
  3727. "key": "蜜桃屯",
  3728. "name": "🔞蜜桃屯",
  3729. "type": 3,
  3730. "api": "csp_XBPQ",
  3731. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3732. "ext": {
  3733. "二次截取": "class=\"block-post&&align=\"center",
  3734. "数组": "target=\"_blank&&class=\"info-post",
  3735. "图片": "data-src=\"&&\"",
  3736. "标题": "title=\"&&\"",
  3737. "链接": "href=\"&&\"",
  3738. "直接播放": "1",
  3739. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3740. "搜索url": "https://www.okav13.mom/index.php/vod/search/page/{pg}/wd/{wd}.html",
  3741. "分类url": "https://www.okav13.mom/index.php/vod/show/by/{by}/id/{cateId}/page/{catePg}.html",
  3742. "分类": "国产AV$1#日韩AV$2#欧美AV$3#污污动漫$4#高清字幕$5#顶级主播$9#外流泄密$11#偷窥偷拍$14#传媒剧情$15#强奸乱伦$13#三级伦理$16",
  3743. "排序": "热门$hits#点赞$up#评分$score"
  3744. }
  3745. },
  3746. {
  3747. "key": "KISSAV(女优)",
  3748. "name": "🔞KISSAV(女优)",
  3749. "type": 3,
  3750. "api": "csp_XBPQ",
  3751. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3752. "searchable": 1,
  3753. "quickSearch": 1,
  3754. "filterable": 1,
  3755. "ext": {
  3756. "请求头": "User-Agent$MOBILE_UA",
  3757. "主页url": "https://www.kissavtv.com/index/getActorList/sort/count",
  3758. "数组": "bind_video_img\">&&</h",
  3759. "图片": "data-src=\"&&\"",
  3760. "标题": "title\"><a*>&&</a",
  3761. "副标题": "label\">&&<",
  3762. "简介": "header-left\">&&<php",
  3763. "链接": "href=\"&&\"",
  3764. "搜索模式": "1",
  3765. "搜索url": "https://www.kissavtv.com/search/page/{pg}/wd/{wd}.html",
  3766. "分类数组": "<div class=\"col-6 col-sm-4 col-lg-3\">&&<span",
  3767. "分类标题": "title\">&&</h",
  3768. "分类ID": "https://www.kissavtv.com/index/getActorMvs/actorId/&&\"",
  3769. "分类url": "https://www.kissavtv.com/index/getactormvs/actorId/{cateId}/sort/update/page/{catePg};;z"
  3770. }
  3771. },
  3772. {
  3773. "key": "KISSAV(标签)",
  3774. "name": "🔞KISSAV(标签)",
  3775. "type": 3,
  3776. "api": "csp_XBPQ",
  3777. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3778. "searchable": 1,
  3779. "quickSearch": 1,
  3780. "filterable": 1,
  3781. "ext": {
  3782. "请求头": "User-Agent$MOBILE_UA",
  3783. "主页url": "https://www.kissavtv.com",
  3784. "数组": "bind_video_img\">&&</h",
  3785. "图片": "data-src=\"&&\"",
  3786. "标题": "title\"><a*>&&</a",
  3787. "副标题": "label\">&&<",
  3788. "简介": "header-left\">&&<php",
  3789. "链接": "href=\"&&\"",
  3790. "搜索模式": "1",
  3791. "搜索url": "https://www.kissavtv.com/search/page/{pg}/wd/{wd}.html",
  3792. "分类数组": "<a class=\"tag text-light&&</a",
  3793. "分类标题": "title=\"&&\"",
  3794. "分类ID": "https://www.kissavtv.com/index/tagMvs/tags/&&\"",
  3795. "分类url": "https://www.kissavtv.com/index/tagmvs/tags/{cateId}/sort/update/page/{catePg};;z"
  3796. }
  3797. },
  3798. {
  3799. "key": "KISSAV(主题)",
  3800. "name": "🔞KISSAV",
  3801. "type": 3,
  3802. "api": "csp_XBPQ",
  3803. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3804. "searchable": 1,
  3805. "quickSearch": 1,
  3806. "filterable": 1,
  3807. "ext": {
  3808. "请求头": "User-Agent$MOBILE_UA",
  3809. "主页url": "https://www.kissavtv.com",
  3810. "数组": "bind_video_img\">&&</h",
  3811. "图片": "data-src=\"&&\"",
  3812. "标题": "title\"><a*>&&</a",
  3813. "副标题": "label\">&&<",
  3814. "简介": "header-left\">&&<php",
  3815. "链接": "href=\"&&\"",
  3816. "搜索模式": "1",
  3817. "搜索url": "https://www.kissavtv.com/search/page/{pg}/wd/{wd}.html",
  3818. "分类数组": "class=\"horizontal-img-box&&</a",
  3819. "分类标题": "alt=\"&&\"",
  3820. "分类ID": "/index/getStyleMvs/id/&&\"",
  3821. "分类url": "https://www.kissavtv.com/index/getstylemvs/id/{cateId}/sort/update/page/{catePg};;z"
  3822. }
  3823. }, {
  3824. "key": "🔞猛男日妓",
  3825. "name": "🔞猛男日妓",
  3826. "type": 3,
  3827. "api": "csp_XBPQ",
  3828. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3829. "searchable": 1,
  3830. "quickSearch": 1,
  3831. "filterable": 1,
  3832. "ext": {
  3833. "请求头": "User-Agent@Mozilla/5.0 (Linux;; Android 12;; PEHM00 Build/SKQ1.210216.001;; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/127.0.6533.103 Mobile Safari/537.36&&Cookie@c6s_RobotVerify=1;; gg_iscookie=1;; _ga=GA1.1.1482105610.1729155635;; c6s_uv=21e3094d1ded55b9be44364d1d0ac6ec;; gg_show_number3644=3",
  3834. "编码": "UTF-8",
  3835. "主页url": "https://xn--ieu270c.mnrj0z53.xyz",
  3836. "数组": "默认--<div class=\"gal\">&&</a||搜索--<div class=\"gal\">&&</a",
  3837. "图片": "original=\"&&\"",
  3838. "标题": "title=\"&&\"",
  3839. "副标题": "</i>&&<",
  3840. "简介": "description\" content=\"&&\"",
  3841. "链接": "href=\"&&\"",
  3842. "跳转播放链接": "\"url\": \"&&\"",
  3843. "搜索模式": "1",
  3844. "搜索url": "/index.php?m=vod-search-wd-{wd}-pg-{pg}.htm",
  3845. "分类url": "/index.php?m=vod-type-id-{cateId}-pg-{catePg}.htm;;z",
  3846. "分类": "国产视频$495#国产传媒$496#中文字幕$497#日本有码$498#日本无码$499#强奸乱伦$500#制服诱惑$501#激情欧美$502#成人动漫$503#抖阴视频$504#人妖伪娘$505#萝莉少女$1116#SM调教$1117#三级片$1118"
  3847. }
  3848. },
  3849. {
  3850. "key": "最爱扒裤衩",
  3851. "name": "🔞最爱扒裤衩",
  3852. "type": 3,
  3853. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3854. "api": "csp_XBPQ",
  3855. "ext": {
  3856. "请求头": "User-Agent$MOBILE_UA",
  3857. "编码": "UTF-8",
  3858. "主页url": "https://www.hahads.com/show/20-----------.html",
  3859. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3860. "分类url": "https://www.hahads.com/show/20-{cateId}-------{catePg}---.html",
  3861. "分类": "大陆👙$大陆#香港👙$香港#台湾👙$台湾#美国👙$美国#法国👙$法国#英国👙$英国#日本👙$日本#韩国👙$韩国#泰国👙$泰国#印度👙$印度#西班牙👙$西班牙#加拿大👙$加拿大#俄罗斯👙$俄罗斯#新加坡👙$新家波#其它👙$其他"
  3862. }
  3863. },
  3864. {
  3865. "key": "农夫与少妇",
  3866. "name": "🔞农夫少妇",
  3867. "type": 3,
  3868. "api": "csp_XBPQ",
  3869. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3870. "searchable": 1,
  3871. "quickSearch": 1,
  3872. "filterable": 1,
  3873. "ext": {
  3874. "请求头": "User-Agent$MOBILE_UA",
  3875. "分类url": "https://nfsfhf9.nfsf-a16.buzz/go/index.php/vod/type/id/{cateId}/page/{catePg}.html;;z",
  3876. "分类": "国产专区$6#制服诱惑$13#中文字幕$7#国产传媒$8#日本有码$9#日本无码$10#欧美无码$11#强奸乱伦$12#三级专区$23#人妖系列$30#韩国主播$31#国产主播$14#激情动漫$15#明星换脸$16#抖阴视频$20#女优明星$21#网曝黑料$22#AV解说$24#SM调教$25#少女萝莉$26"
  3877. }
  3878. },
  3879. {
  3880. "key": "AV小次郎",
  3881. "name": "🔞AV小次郎",
  3882. "type": 3,
  3883. "api": "csp_XBPQ",
  3884. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3885. "searchable": 1,
  3886. "quickSearch": 1,
  3887. "filterable": 1,
  3888. "ext": {
  3889. "主页url": "https://cxgyn.avxcl50.help/",
  3890. "数组": "img-top lazyimage\"&&/a></div>",
  3891. "直接播放": "1",
  3892. "图片": "data-src=\"&&\"",
  3893. "标题": "/index.php?m=vod*>&&<",
  3894. "副标题": "</i>&&</span>",
  3895. "链接": "href=\"&&\"",
  3896. "简介": "description\" content=\"&&\"",
  3897. "搜索模式": "1",
  3898. "搜索url": "https://cxgyn.avxcl50.help/index.php?m=vod&wd={wd}&pg={pg}",
  3899. "分类url": "https://cxgyn.avxcl50.help/index.php?m=vod&tid={cateId}&pg={catePg}",
  3900. "分类": "国产精品&日本有码&日本无码&中文字幕&欧美情色&色情动漫&伦理三级&制服诱惑",
  3901. "分类值": "826&828&829&830&831&832&955&956"
  3902. }
  3903. },
  3904. {
  3905. "key": "黃色都市",
  3906. "name": "🔞黃色都市",
  3907. "type": 3,
  3908. "changeable": 1,
  3909. "filterable": 1,
  3910. "api": "csp_XBPQ",
  3911. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  3912. "ext":
  3913. {
  3914. "分类url": "https://hsds1.mom/index.php/vod/type/id/{cateId}/page/{catePg}.html",
  3915. "分类": "国产❤️AV$1#日本と无码$9#欧美$2#麻豆传媒$3#明星❤️AI$4#三级伦理$6#5D动漫$7"
  3916. }
  3917. },
  3918. {
  3919. "key": "csp_汪汪汪影院",
  3920. "name": "🔞汪汪",
  3921. "type": 3,
  3922. "api": "csp_XBPQ",
  3923. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3924. "searchable": 1,
  3925. "quickSearch": 1,
  3926. "filterable": 1,
  3927. "ext": {
  3928. "请求头": "User-Agent$MOBILE_UA",
  3929. "编码": "UTF-8",
  3930. "主页url": "https://www.ffssaa7.site/",
  3931. "二次截取": "module-items\"&&id=\"page[替换:module-footer>>module-item]",
  3932. "数组": "module-item-pic&&module-item\"",
  3933. "标题": "title=\"&&\"",
  3934. "图片": "data-src=\"&&\"",
  3935. "副标题": "class=\"module-item-text\">&&</div>",
  3936. "链接": "href=\"&&\"",
  3937. "播放数组": "class=\"scroll-content\"&&</div>",
  3938. "播放列表": "<a&&a>",
  3939. "播放链接": "href=\"&&\"",
  3940. "播放标题": "<span>&&</span>",
  3941. "线路数组": "module-tab-item tab-item&&</div>",
  3942. "线路标题": "<span>&&</span>",
  3943. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3944. "分类url": "https://www.ffssaa7.site/index.php/vod/show/by/score/id/{cateId}/letter/{letter}/page/{catePg}/year/{year}.html",
  3945. "分类": "鲨鱼资源$1#115$2#乐播$3#辣椒资源$4",
  3946. "类型": "精品推荐$20#国产情色$21#日本无码$22#AV明星$23#中文字幕$24#网红主播$25#成人动漫$26#欧美情色$27#国模私拍$28#长腿丝袜$29#邻家人妻$30#韩国伦理$31#香港伦理$37||抖音视频$39#韩国主播$40#网红头条$41#网爆黑料$42#欧美无码$43#女优明星$44#SM调教$45#AV解说$46#无码专区$56#麻豆传媒$50#制服诱惑$51#三级伦理$52#AI换脸$53#中文字幕$54#卡通动漫$47#欧美系列$48#美女主播$49#强奸乱伦$57#国产自拍$55#熟女人妻$38||亚洲情色$58#国产主播$59#国产自拍$60#无码专区$61#欧美性爱$62#熟女人妻$63#强奸乱伦$64#巨乳美乳$65#中文字幕$66#制服诱惑$67#女同性恋$68#卡通动画$69#视频伦理$70#少女萝莉$71#重口色情$72#人兽性交$73||国产自拍$74#欧美极品$75#日韩无码$76#AV明星$77#中文字幕$78#动漫精品$79#极骚萝莉$80#人妖视频$81#重咸口味$82#强奸乱伦$83#三级自慰$84#HEYZO$85#独家DMM$86#HEY诱惑$87#童颜巨乳$88#高潮喷吹$89#激情口交$90#绝美少女$91#首次亮相$92#独家擂台格斗$95"
  3947. }
  3948. },
  3949. {
  3950. "key": "csp_XBPQ_天天",
  3951. "name": "动漫|天天",
  3952. "type": 3,
  3953. "api": "csp_XBPQ",
  3954. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3955. "searchable": 1,
  3956. "quickSearch": 1,
  3957. "filterable": 1,
  3958. "ext": {
  3959. "请求头": "User-Agent$MOBILE_UA",
  3960. "编码": "UTF-8",
  3961. "线路二次截取": "class=\"module-tab-items-box&&lass=\"swiper[替换:</div>>></a>]",
  3962. "线路数组": "class=\"module-tab-item tab-item&&</a>",
  3963. "线路标题": "<span>&&</span>",
  3964. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3965. "分类url": "https://www.ttdm.me/vod-show/{cateId}--{by}-{class}--{letter}---{catePg}---/",
  3966. "分类": "🇨🇳中国动漫$1#🇯🇵日本动漫$2#🇺🇸欧美动漫$3#🍑其他动漫$4#🌏动画电影$5"
  3967. }
  3968. }
  3969. ],
  3970. "parses": [{
  3971. "name": "解析聚合",
  3972. "type": 3,
  3973. "url": "Demo"
  3974. },
  3975. {
  3976. "name": "Json并发",
  3977. "type": 2,
  3978. "url": "Parallel"
  3979. },
  3980. {
  3981. "name": "Json轮询",
  3982. "type": 2,
  3983. "url": "Sequence"
  3984. },
  3985. {
  3986. "name": "飞捷",
  3987. "type": 1,
  3988. "url": "https://fjkkk.cn/toujiexisiquanjia.php?url=",
  3989. "ext": {
  3990. "flag": [
  3991. "qq",
  3992. "腾讯",
  3993. "letv",
  3994. "乐视",
  3995. "mgtv",
  3996. "芒果",
  3997. "youku",
  3998. "优酷",
  3999. "qiyi",
  4000. "iqiyi",
  4001. "爱奇艺",
  4002. "奇艺"
  4003. ]
  4004. }
  4005. },
  4006. {
  4007. "name": "集象",
  4008. "type": 1,
  4009. "url": "http://110.42.2.115:880/analysis/json/?uid=2245&my=cdfhirsuwyEGIPU346&url=",
  4010. "ext": {
  4011. "flag": [
  4012. "qq",
  4013. "腾讯",
  4014. "qiyi",
  4015. "爱奇艺",
  4016. "奇艺",
  4017. "youku",
  4018. "优酷",
  4019. "sohu",
  4020. "搜狐",
  4021. "letv",
  4022. "乐视",
  4023. "mgtv",
  4024. "芒果",
  4025. "CL4K",
  4026. "renrenmi",
  4027. "ltnb",
  4028. "xigua"
  4029. ]
  4030. }
  4031. },
  4032. {
  4033. "name": "急速1",
  4034. "type": 1,
  4035. "url": "https://www.daina.hk/api/?key=RXpzyrbMFYySN0sNps&url=",
  4036. "ext": {
  4037. "flag": [
  4038. "qq",
  4039. "腾讯",
  4040. "qiyi",
  4041. "爱奇艺",
  4042. "奇艺",
  4043. "youku",
  4044. "优酷",
  4045. "sohu",
  4046. "搜狐",
  4047. "letv",
  4048. "乐视",
  4049. "mgtv",
  4050. "芒果",
  4051. "CL4K",
  4052. "renrenmi",
  4053. "ltnb",
  4054. "xigua"
  4055. ]
  4056. }
  4057. },
  4058. {
  4059. "name": "急速3",
  4060. "type": 1,
  4061. "url": "https://jx.parwix.com:4433/player/?url=",
  4062. "ext": {
  4063. "flag": [
  4064. "qq",
  4065. "腾讯",
  4066. "qiyi",
  4067. "爱奇艺",
  4068. "奇艺",
  4069. "youku",
  4070. "优酷",
  4071. "mgtv",
  4072. "芒果",
  4073. "letv",
  4074. "乐视",
  4075. "pptv",
  4076. "PPTV",
  4077. "sohu",
  4078. "bilibili",
  4079. "哔哩哔哩",
  4080. "哔哩"
  4081. ]
  4082. }
  4083. },
  4084. {
  4085. "name": "VIP3",
  4086. "type": 1,
  4087. "url": "http://jifei.mrcy0.com/home/api?type=ys&uid=2752189&key=aefghtACLNRSZ01247&url=",
  4088. "ext": {
  4089. "flag": [
  4090. "qq",
  4091. "腾讯",
  4092. "letv",
  4093. "乐视",
  4094. "mgtv",
  4095. "芒果",
  4096. "youku",
  4097. "优酷",
  4098. "qiyi",
  4099. "iqiyi",
  4100. "爱奇艺",
  4101. "奇艺"
  4102. ]
  4103. }
  4104. },
  4105. {
  4106. "name": "急速6",
  4107. "type": 1,
  4108. "url": "http://api.vip123kan.vip/?url=",
  4109. "ext": {
  4110. "flag": [
  4111. "youku",
  4112. "优酷",
  4113. "mgtv",
  4114. "芒果",
  4115. "qq",
  4116. "腾讯",
  4117. "qiyi",
  4118. "爱奇艺",
  4119. "qq",
  4120. "奇艺"
  4121. ]
  4122. }
  4123. },
  4124. {
  4125. "name": "急速8",
  4126. "type": 1,
  4127. "url": "http://yaluan.520say.cn/home/api?type=ys&uid=65588&key=cdeghikortvAFGI078&url=",
  4128. "ext": {
  4129. "flag": [
  4130. "CL4K",
  4131. "饭后独播",
  4132. "芒果视频",
  4133. "youku",
  4134. "rx",
  4135. "ltnb",
  4136. "优酷",
  4137. "qiyi",
  4138. "爱奇艺",
  4139. "奇艺",
  4140. "renrenmi",
  4141. "qq",
  4142. "腾讯",
  4143. "腾讯视频",
  4144. "letv",
  4145. "乐视"
  4146. ]
  4147. }
  4148. },
  4149. {
  4150. "name": "急速4",
  4151. "type": 1,
  4152. "url": "https://jf.96ym.cn/home/api?type=ys&uid=1319830&key=cefgnoprtvxyzBGKP6&url=",
  4153. "ext": {
  4154. "flag": [
  4155. "qq",
  4156. "腾讯",
  4157. "letv",
  4158. "乐视",
  4159. "mgtv",
  4160. "芒果",
  4161. "youku",
  4162. "优酷",
  4163. "qiyi",
  4164. "iqiyi",
  4165. "爱奇艺",
  4166. "奇艺"
  4167. ]
  4168. }
  4169. },
  4170. {
  4171. "name": "急速5",
  4172. "type": 1,
  4173. "url": "http://ck.laobandq.com/3515240842.php?pltfrom=1100&url=",
  4174. "ext": {
  4175. "flag": [
  4176. "qq",
  4177. "腾讯",
  4178. "qiyi",
  4179. "爱奇艺",
  4180. "奇艺",
  4181. "youku",
  4182. "优酷",
  4183. "sohu",
  4184. "搜狐",
  4185. "letv",
  4186. "乐视",
  4187. "mgtv",
  4188. "芒果",
  4189. "CL4K",
  4190. "renrenmi",
  4191. "ltnb",
  4192. "xigua"
  4193. ]
  4194. }
  4195. },
  4196. {
  4197. "name": "急速9",
  4198. "type": 1,
  4199. "url": "https://api.exeyz.cc/api/Json.php?url="
  4200. },
  4201. {
  4202. "name": "海星解析",
  4203. "type": 1,
  4204. "url": "http://110.42.2.115:880/analysis/json/?uid=1735&my=hjklmsuwyzDGHIKXY3&url=",
  4205. "ext": {
  4206. "flag": [
  4207. "qq",
  4208. "腾讯",
  4209. "letv",
  4210. "乐视",
  4211. "mgtv",
  4212. "芒果",
  4213. "youku",
  4214. "优酷",
  4215. "qiyi",
  4216. "iqiyi",
  4217. "爱奇艺",
  4218. "奇艺"
  4219. ]
  4220. }
  4221. },
  4222. {
  4223. "name": "VIP1",
  4224. "type": 1,
  4225. "url": "http://110.42.2.115:880/analysis/json/?uid=2233&my=eginqstBCJMNSUX689&url=",
  4226. "ext": {
  4227. "flag": [
  4228. "qq",
  4229. "腾讯",
  4230. "letv",
  4231. "乐视",
  4232. "mgtv",
  4233. "芒果",
  4234. "youku",
  4235. "优酷",
  4236. "qiyi",
  4237. "iqiyi",
  4238. "爱奇艺",
  4239. "奇艺"
  4240. ]
  4241. }
  4242. },
  4243. {
  4244. "name": "MuX蓝光解析(辉夜)",
  4245. "type": 1,
  4246. "url": "https://vvip.funsline.cn/api/?key=8vMzuXb87MWtyJeECE&url=",
  4247. "ext": {
  4248. "flag": [
  4249. "qq",
  4250. "腾讯",
  4251. "qiyi",
  4252. "爱奇艺",
  4253. "奇艺",
  4254. "youku",
  4255. "优酷",
  4256. "sohu",
  4257. "搜狐",
  4258. "letv",
  4259. "乐视",
  4260. "mgtv",
  4261. "芒果",
  4262. "CL4K",
  4263. "renrenmi",
  4264. "ltnb",
  4265. "xigua",
  4266. "rongxing",
  4267. "rx",
  4268. "xfy",
  4269. "xueren"
  4270. ]
  4271. }
  4272. },
  4273. {
  4274. "name": "猫群专用解析y1",
  4275. "type": 1,
  4276. "url": "http://chaloli.cn/home/api?type=ys&uid=705072&key=abcdegipstBCFMSVZ6&url=",
  4277. "ext": {
  4278. "flag": [
  4279. "youku",
  4280. "qq",
  4281. "iqiyi",
  4282. "qiyi",
  4283. "letv",
  4284. "sohu",
  4285. "letv",
  4286. "tudou",
  4287. "pptv",
  4288. "mgtv",
  4289. "wasu",
  4290. "bilibili",
  4291. "leduo",
  4292. "fq3",
  4293. "fq4",
  4294. "xueren",
  4295. "duoduo",
  4296. "duoduozy",
  4297. "miaoparty",
  4298. "miaoparty2",
  4299. "miaoparty3",
  4300. "renrenmi",
  4301. "优酷",
  4302. "芒果",
  4303. "腾讯",
  4304. "爱奇艺",
  4305. "奇艺",
  4306. "ltnb",
  4307. "rx",
  4308. "CL4K",
  4309. "xfyun",
  4310. "wuduzy"
  4311. ]
  4312. }
  4313. },
  4314. {
  4315. "name": "猫群专用解析y2",
  4316. "type": 1,
  4317. "url": "http://chaloli.cn/home/api?type=ys&uid=705072&key=abcdegipstBCFMSVZ6&fs=sm&url=",
  4318. "ext": {
  4319. "flag": [
  4320. "youku",
  4321. "qq",
  4322. "iqiyi",
  4323. "qiyi",
  4324. "letv",
  4325. "sohu",
  4326. "letv",
  4327. "tudou",
  4328. "pptv",
  4329. "mgtv",
  4330. "wasu",
  4331. "bilibili",
  4332. "leduo",
  4333. "fq3",
  4334. "fq4",
  4335. "xueren",
  4336. "duoduo",
  4337. "duoduozy",
  4338. "miaoparty",
  4339. "miaoparty2",
  4340. "miaoparty3",
  4341. "renrenmi",
  4342. "优酷",
  4343. "芒果",
  4344. "腾讯",
  4345. "爱奇艺",
  4346. "奇艺",
  4347. "ltnb",
  4348. "rx",
  4349. "CL4K",
  4350. "xfyun",
  4351. "wuduzy"
  4352. ]
  4353. }
  4354. },
  4355. {
  4356. "name": "猫群专用解析y3",
  4357. "type": 1,
  4358. "url": "http://chaloli.cn/home/api?type=ys&uid=705072&key=abcdegipstBCFMSVZ6&fs=hz&url=",
  4359. "ext": {
  4360. "flag": [
  4361. "youku",
  4362. "qq",
  4363. "iqiyi",
  4364. "qiyi",
  4365. "letv",
  4366. "sohu",
  4367. "letv",
  4368. "tudou",
  4369. "pptv",
  4370. "mgtv",
  4371. "wasu",
  4372. "bilibili",
  4373. "leduo",
  4374. "fq3",
  4375. "fq4",
  4376. "xueren",
  4377. "duoduo",
  4378. "duoduozy",
  4379. "miaoparty",
  4380. "miaoparty2",
  4381. "miaoparty3",
  4382. "renrenmi",
  4383. "优酷",
  4384. "芒果",
  4385. "腾讯",
  4386. "爱奇艺",
  4387. "奇艺",
  4388. "ltnb",
  4389. "rx",
  4390. "CL4K",
  4391. "xfyun",
  4392. "wuduzy"
  4393. ]
  4394. }
  4395. },
  4396. {
  4397. "name": "猫群专用解析02",
  4398. "type": 1,
  4399. "url": "https://json.pangujiexi.com/json.php?url=",
  4400. "ext": {
  4401. "flag": [
  4402. "youku",
  4403. "优酷",
  4404. "qq",
  4405. "腾讯",
  4406. "qiyi",
  4407. "爱奇艺",
  4408. "奇艺"
  4409. ]
  4410. }
  4411. },
  4412. {
  4413. "name": "猫群专用解析03",
  4414. "type": 1,
  4415. "url": "https://vip.aiaine.com/api/?key=8FN8gNAySnvJiMllxZ&url=",
  4416. "ext": {
  4417. "flag": [
  4418. "Itnb",
  4419. "wuduzy"
  4420. ]
  4421. }
  4422. },
  4423. {
  4424. "name": "猫群专用解析04",
  4425. "type": 1,
  4426. "url": "http://api.vip123kan.vip/?url=",
  4427. "ext": {
  4428. "flag": [
  4429. "youku",
  4430. "优酷",
  4431. "mgtv",
  4432. "芒果",
  4433. "qq",
  4434. "腾讯",
  4435. "qiyi",
  4436. "爱奇艺",
  4437. "qq",
  4438. "xigua",
  4439. "奇艺"
  4440. ]
  4441. }
  4442. },
  4443. {
  4444. "name": "猫群专用解析05",
  4445. "type": 1,
  4446. "url": "https://a.dxzj88.com/jxrrm/jiami.php?url=",
  4447. "ext": {
  4448. "flag": [
  4449. "qq",
  4450. "腾讯",
  4451. "qiyi",
  4452. "爱奇艺",
  4453. "奇艺",
  4454. "youku",
  4455. "优酷",
  4456. "sohu",
  4457. "芒果",
  4458. "mgtv",
  4459. "xigua",
  4460. "wuduzy",
  4461. "bilibili",
  4462. "pptv",
  4463. "leduo",
  4464. "Clk4",
  4465. "哔哩",
  4466. "renrenmi",
  4467. "ltnb",
  4468. "rx"
  4469. ]
  4470. }
  4471. },
  4472. {
  4473. "name": "猫群专用解析06",
  4474. "type": 1,
  4475. "url": "https://sz.dxzj88.com/jxrjrm/jiaomi.php?url=",
  4476. "ext": {
  4477. "flag": [
  4478. "qq",
  4479. "腾讯",
  4480. "qiyi",
  4481. "爱奇艺",
  4482. "奇艺",
  4483. "youku",
  4484. "优酷",
  4485. "sohu",
  4486. "芒果",
  4487. "mgtv",
  4488. "xigua",
  4489. "wuduzy",
  4490. "bilibili",
  4491. "pptv",
  4492. "leduo",
  4493. "Clk4",
  4494. "哔哩",
  4495. "renrenmi",
  4496. "ltnb",
  4497. "rx"
  4498. ]
  4499. }
  4500. },
  4501. {
  4502. "name": "急速2",
  4503. "type": 1,
  4504. "url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url=",
  4505. "ext": {
  4506. "flag": [
  4507. "youku",
  4508. "优酷",
  4509. "qq",
  4510. "腾讯",
  4511. "mgtv",
  4512. "芒果"
  4513. ]
  4514. }
  4515. },
  4516. {
  4517. "name": "群鑫影视",
  4518. "type": 1,
  4519. "url": "http://cl.yjhan.com:8090/home/api?type=ys&uid=651075&key=aehuDFGIJSVWX24589&url=",
  4520. "ext": {
  4521. "flag": [
  4522. "youku",
  4523. "优酷",
  4524. "qiyi",
  4525. "爱奇艺",
  4526. "奇艺",
  4527. "qq",
  4528. "腾讯"
  4529. ]
  4530. }
  4531. },
  4532. {
  4533. "name":"虾米",
  4534. "url":"http://drpys.aera.eu.org/parse/虾米?url=",
  4535. "type":1,
  4536. "ext":{"flag":["qiyi","imgo","爱奇艺","奇艺","qq","qq 预告及花絮","腾讯","youku","优酷","pptv","PPTV","letv","乐视","leshi","mgtv","芒果","sohu","xigua","fun","风行"]},
  4537. "header":{"User-Agent":"Mozilla/5.0"}
  4538. }
  4539. ],
  4540. "sniffer":{"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.27","isVideoFormat":"http((?!http).){26,}\\.(m3u8|mp4|flv|avi|mkv|wmv|mpg|mpeg|mov|ts|3gp|rm|rmvb|asf|m4a|mp3|wma)","custom":[{"url":"/Cloud/Down/AliCloud/","mimeType":"text/html","encoding":"utf-8","header":{"Referer":"https://zxzj.vip/"}},
  4541. {"url":"ysting.ysxs8.vip","mimeType":"text/html","encoding":"utf-8","header":{"Referer":"http://ysting.ysxs8.vip:81"}}]},"recommend":[{"name":"豆瓣推荐","request":{"method":"GET","header":[{"key":"Referer","value":"https://movie.douban.com/"}],"url":{"raw":"https://movie.douban.com/j/new_search_subjects?sort=U&range=0,10&tags=&playable=1&start=0&year_range=2022,2022"}},"response":{"result":"$.data","data":[
  4542. {"key":"name","value":"title"},
  4543. {"key":"note","value":"rate"},
  4544. {"key":"pic","value":"cover"}]},"expires":"86400"}],"rating":[{"name":"rating","request":{"method":"GET","url":{"raw":"https://api.wmdb.tv/api/v1/movie/search?q={name}&limit=1"}},"response":{"result":"this","data":[{"key":"rating","value":"doubanRating"}]}}],"doh":[{"ips":["8.8.4.4","8.8.8.8"],"name":"Google","url":"https://dns.google/dns-query"},
  4545. {"ips":["1.1.1.1","1.0.0.1","2606:4700:4700::1111","2606:4700:4700::1001"],"name":"Cloudflare","url":"https://cloudflare-dns.com/dns-query"},
  4546. {"ips":["94.140.14.140","94.140.14.141"],"name":"AdGuard","url":"https://dns.adguard.com/dns-query"},
  4547. {"ips":["84.200.69.80","84.200.70.40"],"name":"DNSWatch","url":"https://resolver2.dns.watch/dns-query"},
  4548. {"ips":["9.9.9.9","149.112.112.112"],"name":"Quad9","url":"https://dns.quad9.net/dns-quer"}],
  4549. "rules":[{"hosts":["raw.githubusercontent.com","googlevideo.com","cdn.v82u1l.com","cdn.iz8qkg.com","cdn.kin6c1.com","c.biggggg.com","c.olddddd.com","haiwaikan.com","www.histar.tv","youtube.com","uhibo.com",".*boku.*",".*nivod.*",".*ulivetv.*","wogg.link","wogg.xyz"],"name":"proxy"},
  4550. {"hosts":["magnet"],"name":"cl","regex":["最新","直播","更新"]},
  4551. {"hosts":["haiwaikan"],"name":"海外看","regex":["10.0099","10.3333","16.0599","8.1748","12.33","10.85"]},
  4552. {"hosts":["suonizy"],"name":"索尼","regex":["15.1666","15.2666"]},
  4553. {"hosts":["bfzy","bfbfvip"],"name":"暴風","regex":["#EXTINF.*?\\s+.*?adjump.*?\\.ts\\s+"]},
  4554. {"hosts":["aws.ulivetv.net"],"name":"星星","regex":["#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY"]},
  4555. {"hosts":["vip.lz","hd.lz","v.cdnlz"],"name":"量子","regex":["18.5333"]},
  4556. {"hosts":["vip.ffzy","hd.ffzy"],"name":"非凡","regex":["25.1999","25.0666","25.08","20.52"]},
  4557. {"hosts":["huoshan.com"],"name":"火山嗅探","regex":["item_id="]},
  4558. {"hosts":["douyin.com"],"name":"抖音嗅探","regex":["is_play_url="]},
  4559. {"hosts":["api.52wyb.com"],"name":"七新嗅探","regex":["m3u8?pt=m3u8"]},
  4560. {"hosts":["10086.cn"],"name":"czzy","regex":["/storageWeb/servlet/downloadServlet"]},
  4561. {"exclude":[".m3u8"],"hosts":["bytetos.com","byteimg.com","bytednsdoc.com","pstatp.com"],"name":"bdys","regex":["/tos-cn"]},
  4562. {"exclude":[".m3u8"],"hosts":["bdys10.com"],"name":"bdys10","regex":["/obj/"]}
  4563. ],
  4564. "ads":["mimg.0c1q0l.cn","www.googletagmanager.com","www.google-analytics.com","mc.usihnbcq.cn","mg.g1mm3d.cn","mscs.svaeuzh.cn","cnzz.hhttm.top","tp.vinuxhome.com","cnzz.mmstat.com","www.baihuillq.com","s23.cnzz.com","z3.cnzz.com","c.cnzz.com","stj.v1vo.top","z12.cnzz.com","img.mosflower.cn","tips.gamevvip.com","ehwe.yhdtns.com","xdn.cqqc3.com","www.jixunkyy.cn","sp.chemacid.cn","hm.baidu.com","s9.cnzz.com","z6.cnzz.com","um.cavuc.com","mav.mavuz.com","wofwk.aoidf3.com","z5.cnzz.com","xc.hubeijieshikj.cn","tj.tianwenhu.com","xg.gars57.cn","k.jinxiuzhilv.com","cdn.bootcss.com","ppl.xunzhuo123.com","xomk.jiangjunmh.top","img.xunzhuo123.com","z1.cnzz.com","s13.cnzz.com","xg.huataisangao.cn","z7.cnzz.com","xg.huataisangao.cn","z2.cnzz.com","s96.cnzz.com","q11.cnzz.com","thy.dacedsfa.cn","xg.whsbpw.cn","s19.cnzz.com","z8.cnzz.com","s4.cnzz.com","f5w.as12df.top","ae01.alicdn.com","www.92424.cn","k.wudejia.com","vivovip.mmszxc.top","qiu.xixiqiu.com","cdnjs.hnfenxun.com","cms.qdwght.com","wan.51img1.com","iqiyi.hbuioo.com","vip.ffzyad.com","https://lf1-cdn-tos.bytegoofy.com/obj/tos-cn-i-dy/455ccf9e8ae744378118e4bd289288dd"],"drives":[{"name":"阿里","password":"43886374072944a2bcc55a0ed129ab48","type":"alidrive"}],"cost":42}