index.json 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887
  1. {
  2. "wallpaper": "https://tuapi.eees.cc/api.php?category=fengjing&type=302",
  3. "homepage": "https://github.com/hjdhnx/hipy-server",
  4. "homeLogo": "./img/logo500x200-1.png",
  5. "spider": "./jar/pg.jar?md5=7633f8ea346c082b7aa163be58aed023",
  6. "sites": [
  7. {
  8. "key": "hipy_js_360影视[官]",
  9. "name": "360影视[官](drpy_t3)",
  10. "type": 3,
  11. "api": "./drpy_libs/drpy2.min.js",
  12. "searchable": 1,
  13. "quickSearch": 1,
  14. "filterable": 1,
  15. "order_num": 0,
  16. "ext": "./drpy_js/360影视[官].js"
  17. },
  18. {
  19. "key": "hipy_js_菜狗[官]",
  20. "name": "菜狗[官](drpy_t3)",
  21. "type": 3,
  22. "api": "./drpy_libs/drpy2.min.js",
  23. "searchable": 1,
  24. "quickSearch": 1,
  25. "filterable": 1,
  26. "order_num": 0,
  27. "ext": "./drpy_js/菜狗[官].js"
  28. },
  29. {
  30. "key": "hipy_js_奇珍异兽[官]",
  31. "name": "奇珍异兽[官](drpy_t3)",
  32. "type": 3,
  33. "api": "./drpy_libs/drpy2.min.js",
  34. "searchable": 1,
  35. "quickSearch": 1,
  36. "filterable": 1,
  37. "order_num": 0,
  38. "ext": "./drpy_js/奇珍异兽[官].js"
  39. },
  40. {
  41. "key": "hipy_js_优酷[官]",
  42. "name": "优酷[官](drpy_t3)",
  43. "type": 3,
  44. "api": "./drpy_libs/drpy2.min.js",
  45. "searchable": 1,
  46. "quickSearch": 1,
  47. "filterable": 1,
  48. "order_num": 0,
  49. "ext": "./drpy_js/优酷[官].js"
  50. },
  51. {
  52. "key": "hipy_js_腾云驾雾[官]",
  53. "name": "腾云驾雾[官](drpy_t3)",
  54. "type": 3,
  55. "api": "./drpy_libs/drpy2.min.js",
  56. "searchable": 1,
  57. "quickSearch": 1,
  58. "filterable": 1,
  59. "order_num": 0,
  60. "ext": "./drpy_js/腾云驾雾[官].js"
  61. },
  62. {
  63. "key": "hipy_js_百忙无果[官]",
  64. "name": "百忙无果[官](drpy_t3)",
  65. "type": 3,
  66. "api": "./drpy_libs/drpy2.min.js",
  67. "searchable": 1,
  68. "quickSearch": 1,
  69. "filterable": 1,
  70. "order_num": 0,
  71. "ext": "./drpy_js/百忙无果[官].js"
  72. },
  73. {
  74. "key": "hipy_js_哔哩影视[官]",
  75. "name": "哔哩影视[官](drpy_t3)",
  76. "type": 3,
  77. "api": "./drpy_libs/drpy2.min.js",
  78. "searchable": 1,
  79. "quickSearch": 1,
  80. "filterable": 1,
  81. "order_num": 0,
  82. "ext": "./drpy_js/哔哩影视[官].js"
  83. },
  84. {
  85. "key": "hipy_js_我的哔哩[官]0",
  86. "name": "哔哩教育[官](drpy_t3)",
  87. "type": 3,
  88. "api": "./drpy_libs/drpy2.min.js",
  89. "searchable": 1,
  90. "quickSearch": 1,
  91. "filterable": 1,
  92. "order_num": 0,
  93. "ext": "./drpy_js/我的哔哩[官].js?type=url&params=../json/哔哩教育.json"
  94. },
  95. {
  96. "key": "hipy_js_我的哔哩[官]1",
  97. "name": "哔哩大全[官](drpy_t3)",
  98. "type": 3,
  99. "api": "./drpy_libs/drpy2.min.js",
  100. "searchable": 1,
  101. "quickSearch": 1,
  102. "filterable": 1,
  103. "order_num": 1,
  104. "ext": "./drpy_js/我的哔哩[官].js?type=url&params=../json/哔哩大全.json"
  105. },
  106. {
  107. "key": "hipy_js_采集之王[合]0",
  108. "name": "采王道长[合](drpy_t3)",
  109. "type": 3,
  110. "api": "./drpy_libs/drpy2.min.js",
  111. "searchable": 1,
  112. "quickSearch": 1,
  113. "filterable": 1,
  114. "order_num": 0,
  115. "ext": "./drpy_js/采集之王[合].js?type=url&params=../json/采集静态.json$1"
  116. },
  117. {
  118. "key": "hipy_js_采集之王[合]1",
  119. "name": "采王zy[密](drpy_t3)",
  120. "type": 3,
  121. "api": "./drpy_libs/drpy2.min.js",
  122. "searchable": 1,
  123. "quickSearch": 1,
  124. "filterable": 1,
  125. "order_num": 1,
  126. "ext": "./drpy_js/采集之王[合].js?type=url&params=../json/采集[zy]静态.json$1"
  127. },
  128. {
  129. "key": "hipy_js_[资]采集集合",
  130. "name": "[资]采集集合(drpy_t3)",
  131. "type": 3,
  132. "api": "./drpy_libs/drpy2.min.js",
  133. "searchable": 1,
  134. "quickSearch": 1,
  135. "filterable": 1,
  136. "order_num": 0,
  137. "ext": "./drpy_js/[资]采集集合.js"
  138. },
  139. {
  140. "key": "hipy_js_🤡爱你短剧[🤡]",
  141. "name": "🤡爱你短剧[🤡](drpy_t3)",
  142. "type": 3,
  143. "api": "./drpy_libs/drpy2.min.js",
  144. "searchable": 1,
  145. "quickSearch": 1,
  146. "filterable": 1,
  147. "order_num": 0,
  148. "ext": "./drpy_js/🤡爱你短剧[🤡].js"
  149. },
  150. {
  151. "key": "hipy_js_01看球[球]",
  152. "name": "01看球[球](drpy_t3)",
  153. "type": 3,
  154. "api": "./drpy_libs/drpy2.min.js",
  155. "searchable": 1,
  156. "quickSearch": 1,
  157. "filterable": 1,
  158. "order_num": 0,
  159. "ext": "./drpy_js/01看球[球].js"
  160. },
  161. {
  162. "key": "hipy_js_0855影视",
  163. "name": "0855影视(drpy_t3)",
  164. "type": 3,
  165. "api": "./drpy_libs/drpy2.min.js",
  166. "searchable": 1,
  167. "quickSearch": 1,
  168. "filterable": 1,
  169. "order_num": 0,
  170. "ext": "./drpy_js/0855影视.js"
  171. },
  172. {
  173. "key": "hipy_js_29片库[密]",
  174. "name": "29片库[密](drpy_t3)",
  175. "type": 3,
  176. "api": "./drpy_libs/drpy2.min.js",
  177. "searchable": 1,
  178. "quickSearch": 1,
  179. "filterable": 1,
  180. "order_num": 0,
  181. "ext": "./drpy_js/29片库[密].js"
  182. },
  183. {
  184. "key": "hipy_js_310直播[球]",
  185. "name": "310直播[球](drpy_t3)",
  186. "type": 3,
  187. "api": "./drpy_libs/drpy2.min.js",
  188. "searchable": 1,
  189. "quickSearch": 1,
  190. "filterable": 1,
  191. "order_num": 0,
  192. "ext": "./drpy_js/310直播[球].js"
  193. },
  194. {
  195. "key": "hipy_js_348电影网",
  196. "name": "348电影网(drpy_t3)",
  197. "type": 3,
  198. "api": "./drpy_libs/drpy2.min.js",
  199. "searchable": 1,
  200. "quickSearch": 1,
  201. "filterable": 1,
  202. "order_num": 0,
  203. "ext": "./drpy_js/348电影网.js"
  204. },
  205. {
  206. "key": "hipy_js_360吧[球]",
  207. "name": "360吧[球](drpy_t3)",
  208. "type": 3,
  209. "api": "./drpy_libs/drpy2.min.js",
  210. "searchable": 1,
  211. "quickSearch": 1,
  212. "filterable": 1,
  213. "order_num": 0,
  214. "ext": "./drpy_js/360吧[球].js"
  215. },
  216. {
  217. "key": "hipy_js_36直播[密]",
  218. "name": "36直播[密](drpy_t3)",
  219. "type": 3,
  220. "api": "./drpy_libs/drpy2.min.js",
  221. "searchable": 1,
  222. "quickSearch": 1,
  223. "filterable": 1,
  224. "order_num": 0,
  225. "ext": "./drpy_js/36直播[密].js"
  226. },
  227. {
  228. "key": "hipy_js_4K-AV",
  229. "name": "4K-AV(drpy_t3)",
  230. "type": 3,
  231. "api": "./drpy_libs/drpy2.min.js",
  232. "searchable": 1,
  233. "quickSearch": 1,
  234. "filterable": 1,
  235. "order_num": 0,
  236. "ext": "./drpy_js/4K-AV.js"
  237. },
  238. {
  239. "key": "hipy_js_4k剧院",
  240. "name": "4k剧院(drpy_t3)",
  241. "type": 3,
  242. "api": "./drpy_libs/drpy2.min.js",
  243. "searchable": 1,
  244. "quickSearch": 1,
  245. "filterable": 1,
  246. "order_num": 0,
  247. "ext": "./drpy_js/4k剧院.js"
  248. },
  249. {
  250. "key": "hipy_js_4khdr",
  251. "name": "4khdr(drpy_t3)",
  252. "type": 3,
  253. "api": "./drpy_libs/drpy2.min.js",
  254. "searchable": 1,
  255. "quickSearch": 1,
  256. "filterable": 1,
  257. "order_num": 0,
  258. "ext": "./drpy_js/4khdr.js"
  259. },
  260. {
  261. "key": "hipy_js_539影视",
  262. "name": "539影视(drpy_t3)",
  263. "type": 3,
  264. "api": "./drpy_libs/drpy2.min.js",
  265. "searchable": 1,
  266. "quickSearch": 1,
  267. "filterable": 1,
  268. "order_num": 0,
  269. "ext": "./drpy_js/539影视.js"
  270. },
  271. {
  272. "key": "hipy_js_555影视[飞]",
  273. "name": "555影视[飞](drpy_t3)",
  274. "type": 3,
  275. "api": "./drpy_libs/drpy2.min.js",
  276. "searchable": 1,
  277. "quickSearch": 1,
  278. "filterable": 1,
  279. "order_num": 0,
  280. "ext": "./drpy_js/555影视[飞].js"
  281. },
  282. {
  283. "key": "hipy_js_58动漫[漫]",
  284. "name": "58动漫[漫](drpy_t3)",
  285. "type": 3,
  286. "api": "./drpy_libs/drpy2.min.js",
  287. "searchable": 1,
  288. "quickSearch": 1,
  289. "filterable": 1,
  290. "order_num": 0,
  291. "ext": "./drpy_js/58动漫[漫].js"
  292. },
  293. {
  294. "key": "hipy_js_6V新版[磁]",
  295. "name": "6V新版[磁](drpy_t3)",
  296. "type": 3,
  297. "api": "./drpy_libs/drpy2.min.js",
  298. "searchable": 1,
  299. "quickSearch": 1,
  300. "filterable": 1,
  301. "order_num": 0,
  302. "ext": "./drpy_js/6V新版[磁].js"
  303. },
  304. {
  305. "key": "hipy_js_777影视",
  306. "name": "777影视(drpy_t3)",
  307. "type": 3,
  308. "api": "./drpy_libs/drpy2.min.js",
  309. "searchable": 1,
  310. "quickSearch": 1,
  311. "filterable": 1,
  312. "order_num": 0,
  313. "ext": "./drpy_js/777影视.js"
  314. },
  315. {
  316. "key": "hipy_js_77看片网",
  317. "name": "77看片网(drpy_t3)",
  318. "type": 3,
  319. "api": "./drpy_libs/drpy2.min.js",
  320. "searchable": 1,
  321. "quickSearch": 1,
  322. "filterable": 1,
  323. "order_num": 0,
  324. "ext": "./drpy_js/77看片网.js"
  325. },
  326. {
  327. "key": "hipy_js_7猫小说[书]",
  328. "name": "7猫小说[书](drpy_t3)",
  329. "type": 3,
  330. "api": "./drpy_libs/drpy2.min.js",
  331. "searchable": 1,
  332. "quickSearch": 1,
  333. "filterable": 1,
  334. "order_num": 0,
  335. "ext": "./drpy_js/7猫小说[书].js"
  336. },
  337. {
  338. "key": "hipy_js_88看球[球]",
  339. "name": "88看球[球](drpy_t3)",
  340. "type": 3,
  341. "api": "./drpy_libs/drpy2.min.js",
  342. "searchable": 1,
  343. "quickSearch": 1,
  344. "filterable": 1,
  345. "order_num": 0,
  346. "ext": "./drpy_js/88看球[球].js"
  347. },
  348. {
  349. "key": "88Pan",
  350. "name": "88网盘|网盘搜索",
  351. "type": 3,
  352. "api": "csp_EightEight",
  353. "timeout": 60,
  354. "ext": "./json/tokenm.json$$$https://662688.xyz$$$",
  355. "style": {
  356. "type": "list",
  357. "ratio": 1.1
  358. },
  359. "order_num": 9999
  360. },
  361. {
  362. "key": "hipy_js_88影视网",
  363. "name": "88影视网(drpy_t3)",
  364. "type": 3,
  365. "api": "./drpy_libs/drpy2.min.js",
  366. "searchable": 1,
  367. "quickSearch": 1,
  368. "filterable": 1,
  369. "order_num": 0,
  370. "ext": "./drpy_js/88影视网.js"
  371. },
  372. {
  373. "key": "hipy_js_8号影院",
  374. "name": "8号影院(drpy_t3)",
  375. "type": 3,
  376. "api": "./drpy_libs/drpy2.min.js",
  377. "searchable": 1,
  378. "quickSearch": 1,
  379. "filterable": 1,
  380. "order_num": 0,
  381. "ext": "./drpy_js/8号影院.js"
  382. },
  383. {
  384. "key": "hipy_js_阿里土豆[盘]",
  385. "name": "阿里土豆[盘](drpy_t3)",
  386. "type": 3,
  387. "api": "./drpy_libs/drpy2.min.js",
  388. "searchable": 1,
  389. "quickSearch": 1,
  390. "filterable": 1,
  391. "order_num": 0,
  392. "ext": "./drpy_js/阿里土豆[盘].js"
  393. },
  394. {
  395. "key": "AliShareEBook",
  396. "name": "阿里云盘书籍分享",
  397. "type": 3,
  398. "api": "csp_AliShare",
  399. "searchable": 0,
  400. "quickSearch": 0,
  401. "changeable": 0,
  402. "filterable": 0,
  403. "timeout": 60,
  404. "ext": "./json/tokenm.json$$$./json/alishare.ebook.txt$$$db$$$1",
  405. "style": {
  406. "type": "list",
  407. "ratio": 1.1
  408. },
  409. "order_num": 9999
  410. },
  411. {
  412. "key": "AliShare",
  413. "name": "阿里云盘影视分享",
  414. "type": 3,
  415. "api": "csp_AliShare",
  416. "searchable": 1,
  417. "quickSearch": 1,
  418. "changeable": 1,
  419. "filterable": 0,
  420. "timeout": 60,
  421. "ext": "./json/tokenm.json$$$./json/alishare.txt$$$db$$$1",
  422. "style": {
  423. "type": "list",
  424. "ratio": 1.1
  425. },
  426. "order_num": 9999
  427. },
  428. {
  429. "key": "hipy_js_啊哈DJ[听]",
  430. "name": "啊哈DJ[听](drpy_t3)",
  431. "type": 3,
  432. "api": "./drpy_libs/drpy2.min.js",
  433. "searchable": 1,
  434. "quickSearch": 1,
  435. "filterable": 1,
  436. "order_num": 0,
  437. "ext": "./drpy_js/啊哈DJ[听].js"
  438. },
  439. {
  440. "key": "hipy_js_爱爱影院[密]",
  441. "name": "爱爱影院[密](drpy_t3)",
  442. "type": 3,
  443. "api": "./drpy_libs/drpy2.min.js",
  444. "searchable": 1,
  445. "quickSearch": 1,
  446. "filterable": 1,
  447. "order_num": 0,
  448. "ext": "./drpy_js/爱爱影院[密].js"
  449. },
  450. {
  451. "key": "hipy_js_爱车MV[听]",
  452. "name": "爱车MV[听](drpy_t3)",
  453. "type": 3,
  454. "api": "./drpy_libs/drpy2.min.js",
  455. "searchable": 1,
  456. "quickSearch": 1,
  457. "filterable": 1,
  458. "order_num": 0,
  459. "ext": "./drpy_js/爱车MV[听].js"
  460. },
  461. {
  462. "key": "hipy_js_爱弹幕[漫]",
  463. "name": "爱弹幕[漫](drpy_t3)",
  464. "type": 3,
  465. "api": "./drpy_libs/drpy2.min.js",
  466. "searchable": 1,
  467. "quickSearch": 1,
  468. "filterable": 1,
  469. "order_num": 0,
  470. "ext": "./drpy_js/爱弹幕[漫].js"
  471. },
  472. {
  473. "key": "hipy_js_爱迪影视",
  474. "name": "爱迪影视(drpy_t3)",
  475. "type": 3,
  476. "api": "./drpy_libs/drpy2.min.js",
  477. "searchable": 1,
  478. "quickSearch": 1,
  479. "filterable": 1,
  480. "order_num": 0,
  481. "ext": "./drpy_js/爱迪影视.js"
  482. },
  483. {
  484. "key": "hipy_js_爱看短剧[盘]",
  485. "name": "爱看短剧[盘](drpy_t3)",
  486. "type": 3,
  487. "api": "./drpy_libs/drpy2.min.js",
  488. "searchable": 1,
  489. "quickSearch": 1,
  490. "filterable": 1,
  491. "order_num": 0,
  492. "ext": "./drpy_js/爱看短剧[盘].js"
  493. },
  494. {
  495. "key": "hipy_js_爱看机器人[虫]",
  496. "name": "爱看机器人[虫](drpy_t3)",
  497. "type": 3,
  498. "api": "./drpy_libs/drpy2.min.js",
  499. "searchable": 1,
  500. "quickSearch": 1,
  501. "filterable": 1,
  502. "order_num": 0,
  503. "ext": "./drpy_js/爱看机器人[虫].js"
  504. },
  505. {
  506. "key": "hipy_js_爱看农民[优]",
  507. "name": "爱看农民[优](drpy_t3)",
  508. "type": 3,
  509. "api": "./drpy_libs/drpy2.min.js",
  510. "searchable": 1,
  511. "quickSearch": 1,
  512. "filterable": 1,
  513. "order_num": 0,
  514. "ext": "./drpy_js/爱看农民[优].js"
  515. },
  516. {
  517. "key": "hipy_js_爱看农民2[优]",
  518. "name": "爱看农民2[优](drpy_t3)",
  519. "type": 3,
  520. "api": "./drpy_libs/drpy2.min.js",
  521. "searchable": 1,
  522. "quickSearch": 1,
  523. "filterable": 1,
  524. "order_num": 0,
  525. "ext": "./drpy_js/爱看农民2[优].js"
  526. },
  527. {
  528. "key": "hipy_js_爱看影院",
  529. "name": "爱看影院(drpy_t3)",
  530. "type": 3,
  531. "api": "./drpy_libs/drpy2.min.js",
  532. "searchable": 1,
  533. "quickSearch": 1,
  534. "filterable": 1,
  535. "order_num": 0,
  536. "ext": "./drpy_js/爱看影院.js"
  537. },
  538. {
  539. "key": "hipy_js_爱看hd",
  540. "name": "爱看hd(drpy_t3)",
  541. "type": 3,
  542. "api": "./drpy_libs/drpy2.min.js",
  543. "searchable": 1,
  544. "quickSearch": 1,
  545. "filterable": 1,
  546. "order_num": 0,
  547. "ext": "./drpy_js/爱看hd.js"
  548. },
  549. {
  550. "key": "hipy_js_爱你短剧",
  551. "name": "爱你短剧(drpy_t3)",
  552. "type": 3,
  553. "api": "./drpy_libs/drpy2.min.js",
  554. "searchable": 1,
  555. "quickSearch": 1,
  556. "filterable": 1,
  557. "order_num": 0,
  558. "ext": "./drpy_js/爱你短剧.js"
  559. },
  560. {
  561. "key": "hipy_js_爱上你听书网[听]",
  562. "name": "爱上你听书网[听](drpy_t3)",
  563. "type": 3,
  564. "api": "./drpy_libs/drpy2.min.js",
  565. "searchable": 1,
  566. "quickSearch": 1,
  567. "filterable": 1,
  568. "order_num": 0,
  569. "ext": "./drpy_js/爱上你听书网[听].js"
  570. },
  571. {
  572. "key": "hipy_js_爱优影视[自动]",
  573. "name": "爱优影视[自动](drpy_t3)",
  574. "type": 3,
  575. "api": "./drpy_libs/drpy2.min.js",
  576. "searchable": 1,
  577. "quickSearch": 1,
  578. "filterable": 1,
  579. "order_num": 0,
  580. "ext": "./drpy_js/爱优影视[自动].js"
  581. },
  582. {
  583. "key": "hipy_js_八戒影视",
  584. "name": "八戒影视(drpy_t3)",
  585. "type": 3,
  586. "api": "./drpy_libs/drpy2.min.js",
  587. "searchable": 1,
  588. "quickSearch": 1,
  589. "filterable": 1,
  590. "order_num": 0,
  591. "ext": "./drpy_js/八戒影视.js"
  592. },
  593. {
  594. "key": "hipy_js_白嫖者联盟",
  595. "name": "白嫖者联盟(drpy_t3)",
  596. "type": 3,
  597. "api": "./drpy_libs/drpy2.min.js",
  598. "searchable": 1,
  599. "quickSearch": 1,
  600. "filterable": 1,
  601. "order_num": 0,
  602. "ext": "./drpy_js/白嫖者联盟.js"
  603. },
  604. {
  605. "key": "hipy_js_榜一短剧",
  606. "name": "榜一短剧(drpy_t3)",
  607. "type": 3,
  608. "api": "./drpy_libs/drpy2.min.js",
  609. "searchable": 1,
  610. "quickSearch": 1,
  611. "filterable": 1,
  612. "order_num": 0,
  613. "ext": "./drpy_js/榜一短剧.js"
  614. },
  615. {
  616. "key": "hipy_js_包子漫画[画]",
  617. "name": "包子漫画[画](drpy_t3)",
  618. "type": 3,
  619. "api": "./drpy_libs/drpy2.min.js",
  620. "searchable": 1,
  621. "quickSearch": 1,
  622. "filterable": 1,
  623. "order_num": 0,
  624. "ext": "./drpy_js/包子漫画[画].js"
  625. },
  626. {
  627. "key": "hipy_js_宝片视频",
  628. "name": "宝片视频(drpy_t3)",
  629. "type": 3,
  630. "api": "./drpy_libs/drpy2.min.js",
  631. "searchable": 1,
  632. "quickSearch": 1,
  633. "filterable": 1,
  634. "order_num": 0,
  635. "ext": "./drpy_js/宝片视频.js"
  636. },
  637. {
  638. "key": "hipy_js_暴风资源[资]",
  639. "name": "暴风资源[资](drpy_t3)",
  640. "type": 3,
  641. "api": "./drpy_libs/drpy2.min.js",
  642. "searchable": 1,
  643. "quickSearch": 1,
  644. "filterable": 1,
  645. "order_num": 0,
  646. "ext": "./drpy_js/暴风资源[资].js"
  647. },
  648. {
  649. "key": "hipy_js_北川影视",
  650. "name": "北川影视(drpy_t3)",
  651. "type": 3,
  652. "api": "./drpy_libs/drpy2.min.js",
  653. "searchable": 1,
  654. "quickSearch": 1,
  655. "filterable": 1,
  656. "order_num": 0,
  657. "ext": "./drpy_js/北川影视.js"
  658. },
  659. {
  660. "key": "hipy_js_贝乐虎[儿]",
  661. "name": "贝乐虎[儿](drpy_t3)",
  662. "type": 3,
  663. "api": "./drpy_libs/drpy2.min.js",
  664. "searchable": 1,
  665. "quickSearch": 1,
  666. "filterable": 1,
  667. "order_num": 0,
  668. "ext": "./drpy_js/贝乐虎[儿].js"
  669. },
  670. {
  671. "key": "hipy_js_被窝电影",
  672. "name": "被窝电影(drpy_t3)",
  673. "type": 3,
  674. "api": "./drpy_libs/drpy2.min.js",
  675. "searchable": 1,
  676. "quickSearch": 1,
  677. "filterable": 1,
  678. "order_num": 0,
  679. "ext": "./drpy_js/被窝电影.js"
  680. },
  681. {
  682. "key": "Local",
  683. "name": "本地",
  684. "type": 3,
  685. "api": "csp_Local",
  686. "order_num": 9999
  687. },
  688. {
  689. "key": "hipy_js_笔趣阁[书]",
  690. "name": "笔趣阁[书](drpy_t3)",
  691. "type": 3,
  692. "api": "./drpy_libs/drpy2.min.js",
  693. "searchable": 1,
  694. "quickSearch": 1,
  695. "filterable": 1,
  696. "order_num": 0,
  697. "ext": "./drpy_js/笔趣阁[书].js"
  698. },
  699. {
  700. "key": "hipy_js_笔趣阁13[书]",
  701. "name": "笔趣阁13[书](drpy_t3)",
  702. "type": 3,
  703. "api": "./drpy_libs/drpy2.min.js",
  704. "searchable": 1,
  705. "quickSearch": 1,
  706. "filterable": 1,
  707. "order_num": 0,
  708. "ext": "./drpy_js/笔趣阁13[书].js"
  709. },
  710. {
  711. "key": "Bdys_spider",
  712. "name": "哔滴┃磁力",
  713. "api": "csp_Bdys01",
  714. "type": 3,
  715. "filterable": 1,
  716. "searchable": 1,
  717. "quickSearch": 1,
  718. "ext": "https://www.yjys.me/$$$None$$$1",
  719. "order_num": 9999
  720. },
  721. {
  722. "key": "hipy_js_哔嘀影视[优]",
  723. "name": "哔嘀影视[优](drpy_t3)",
  724. "type": 3,
  725. "api": "./drpy_libs/drpy2.min.js",
  726. "searchable": 1,
  727. "quickSearch": 1,
  728. "filterable": 1,
  729. "order_num": 0,
  730. "ext": "./drpy_js/哔嘀影视[优].js"
  731. },
  732. {
  733. "key": "hipy_js_哔哩直播[官]",
  734. "name": "哔哩直播[官](drpy_t3)",
  735. "type": 3,
  736. "api": "./drpy_libs/drpy2.min.js",
  737. "searchable": 1,
  738. "quickSearch": 1,
  739. "filterable": 1,
  740. "order_num": 0,
  741. "ext": "./drpy_js/哔哩直播[官].js"
  742. },
  743. {
  744. "key": "hipy_js_播客[听]",
  745. "name": "播客[听](drpy_t3)",
  746. "type": 3,
  747. "api": "./drpy_libs/drpy2.min.js",
  748. "searchable": 1,
  749. "quickSearch": 1,
  750. "filterable": 1,
  751. "order_num": 0,
  752. "ext": "./drpy_js/播客[听].js"
  753. },
  754. {
  755. "key": "hipy_js_博看听书[听]",
  756. "name": "博看听书[听](drpy_t3)",
  757. "type": 3,
  758. "api": "./drpy_libs/drpy2.min.js",
  759. "searchable": 1,
  760. "quickSearch": 1,
  761. "filterable": 1,
  762. "order_num": 0,
  763. "ext": "./drpy_js/博看听书[听].js"
  764. },
  765. {
  766. "key": "hipy_js_采集之王[合]2",
  767. "name": "采王成人[密](drpy_t3)",
  768. "type": 3,
  769. "api": "./drpy_libs/drpy2.min.js",
  770. "searchable": 1,
  771. "quickSearch": 1,
  772. "filterable": 1,
  773. "order_num": 2,
  774. "ext": "./drpy_js/采集之王[合].js?type=url&params=../json/采集[密]静态.json"
  775. },
  776. {
  777. "key": "hipy_js_草莓秒播[密]",
  778. "name": "草莓秒播[密](drpy_t3)",
  779. "type": 3,
  780. "api": "./drpy_libs/drpy2.min.js",
  781. "searchable": 1,
  782. "quickSearch": 1,
  783. "filterable": 1,
  784. "order_num": 0,
  785. "ext": "./drpy_js/草莓秒播[密].js"
  786. },
  787. {
  788. "key": "hipy_js_策驰影院(自动)",
  789. "name": "策驰影院(自动)(drpy_t3)",
  790. "type": 3,
  791. "api": "./drpy_libs/drpy2.min.js",
  792. "searchable": 1,
  793. "quickSearch": 1,
  794. "filterable": 1,
  795. "order_num": 0,
  796. "ext": "./drpy_js/策驰影院(自动).js"
  797. },
  798. {
  799. "key": "hipy_js_茶语资源[资]",
  800. "name": "茶语资源[资](drpy_t3)",
  801. "type": 3,
  802. "api": "./drpy_libs/drpy2.min.js",
  803. "searchable": 1,
  804. "quickSearch": 1,
  805. "filterable": 1,
  806. "order_num": 0,
  807. "ext": "./drpy_js/茶语资源[资].js"
  808. },
  809. {
  810. "key": "hipy_js_厂长资源",
  811. "name": "厂长资源(drpy_t3)",
  812. "type": 3,
  813. "api": "./drpy_libs/drpy2.min.js",
  814. "searchable": 1,
  815. "quickSearch": 1,
  816. "filterable": 1,
  817. "order_num": 0,
  818. "ext": "./drpy_js/厂长资源.js"
  819. },
  820. {
  821. "key": "hipy_js_畅梦影视[优]",
  822. "name": "畅梦影视[优](drpy_t3)",
  823. "type": 3,
  824. "api": "./drpy_libs/drpy2.min.js",
  825. "searchable": 1,
  826. "quickSearch": 1,
  827. "filterable": 1,
  828. "order_num": 0,
  829. "ext": "./drpy_js/畅梦影视[优].js"
  830. },
  831. {
  832. "key": "hipy_js_橙汁影视",
  833. "name": "橙汁影视(drpy_t3)",
  834. "type": 3,
  835. "api": "./drpy_libs/drpy2.min.js",
  836. "searchable": 1,
  837. "quickSearch": 1,
  838. "filterable": 1,
  839. "order_num": 0,
  840. "ext": "./drpy_js/橙汁影视.js"
  841. },
  842. {
  843. "key": "hipy_js_臭蛋蛋",
  844. "name": "臭蛋蛋(drpy_t3)",
  845. "type": 3,
  846. "api": "./drpy_libs/drpy2.min.js",
  847. "searchable": 1,
  848. "quickSearch": 1,
  849. "filterable": 1,
  850. "order_num": 0,
  851. "ext": "./drpy_js/臭蛋蛋.js"
  852. },
  853. {
  854. "key": "hipy_js_磁力熊[磁]",
  855. "name": "磁力熊[磁](drpy_t3)",
  856. "type": 3,
  857. "api": "./drpy_libs/drpy2.min.js",
  858. "searchable": 1,
  859. "quickSearch": 1,
  860. "filterable": 1,
  861. "order_num": 0,
  862. "ext": "./drpy_js/磁力熊[磁].js"
  863. },
  864. {
  865. "key": "hipy_js_次元城动漫[漫]",
  866. "name": "次元城动漫[漫](drpy_t3)",
  867. "type": 3,
  868. "api": "./drpy_libs/drpy2.min.js",
  869. "searchable": 1,
  870. "quickSearch": 1,
  871. "filterable": 1,
  872. "order_num": 0,
  873. "ext": "./drpy_js/次元城动漫[漫].js"
  874. },
  875. {
  876. "key": "hipy_js_刺猬影视",
  877. "name": "刺猬影视(drpy_t3)",
  878. "type": 3,
  879. "api": "./drpy_libs/drpy2.min.js",
  880. "searchable": 1,
  881. "quickSearch": 1,
  882. "filterable": 1,
  883. "order_num": 0,
  884. "ext": "./drpy_js/刺猬影视.js"
  885. },
  886. {
  887. "key": "hipy_js_达达龟",
  888. "name": "达达龟(drpy_t3)",
  889. "type": 3,
  890. "api": "./drpy_libs/drpy2.min.js",
  891. "searchable": 1,
  892. "quickSearch": 1,
  893. "filterable": 1,
  894. "order_num": 0,
  895. "ext": "./drpy_js/达达龟.js"
  896. },
  897. {
  898. "key": "hipy_js_达达猪",
  899. "name": "达达猪(drpy_t3)",
  900. "type": 3,
  901. "api": "./drpy_libs/drpy2.min.js",
  902. "searchable": 1,
  903. "quickSearch": 1,
  904. "filterable": 1,
  905. "order_num": 0,
  906. "ext": "./drpy_js/达达猪.js"
  907. },
  908. {
  909. "key": "hipy_js_大米动漫[漫]",
  910. "name": "大米动漫[漫](drpy_t3)",
  911. "type": 3,
  912. "api": "./drpy_libs/drpy2.min.js",
  913. "searchable": 1,
  914. "quickSearch": 1,
  915. "filterable": 1,
  916. "order_num": 0,
  917. "ext": "./drpy_js/大米动漫[漫].js"
  918. },
  919. {
  920. "key": "hipy_js_大米星球",
  921. "name": "大米星球(drpy_t3)",
  922. "type": 3,
  923. "api": "./drpy_libs/drpy2.min.js",
  924. "searchable": 1,
  925. "quickSearch": 1,
  926. "filterable": 1,
  927. "order_num": 0,
  928. "ext": "./drpy_js/大米星球.js"
  929. },
  930. {
  931. "key": "hipy_js_大米星球[V2]",
  932. "name": "大米星球[V2](drpy_t3)",
  933. "type": 3,
  934. "api": "./drpy_libs/drpy2.min.js",
  935. "searchable": 1,
  936. "quickSearch": 1,
  937. "filterable": 1,
  938. "order_num": 0,
  939. "ext": "./drpy_js/大米星球[V2].js"
  940. },
  941. {
  942. "key": "DaPanSo",
  943. "name": "大盘搜|网盘搜索",
  944. "type": 3,
  945. "api": "csp_DaPanSo",
  946. "quickSearch": 1,
  947. "changeable": 1,
  948. "filterable": 1,
  949. "timeout": 60,
  950. "ext": "./json/tokenm.json$$$https://dapanso.com$$$proxy$$$1",
  951. "order_num": 9999
  952. },
  953. {
  954. "key": "hipy_js_大千视界",
  955. "name": "大千视界(drpy_t3)",
  956. "type": 3,
  957. "api": "./drpy_libs/drpy2.min.js",
  958. "searchable": 1,
  959. "quickSearch": 1,
  960. "filterable": 1,
  961. "order_num": 0,
  962. "ext": "./drpy_js/大千视界.js"
  963. },
  964. {
  965. "key": "hipy_js_大师兄影视[优]",
  966. "name": "大师兄影视[优](drpy_t3)",
  967. "type": 3,
  968. "api": "./drpy_libs/drpy2.min.js",
  969. "searchable": 1,
  970. "quickSearch": 1,
  971. "filterable": 1,
  972. "order_num": 0,
  973. "ext": "./drpy_js/大师兄影视[优].js"
  974. },
  975. {
  976. "key": "hipy_js_大中国",
  977. "name": "大中国(drpy_t3)",
  978. "type": 3,
  979. "api": "./drpy_libs/drpy2.min.js",
  980. "searchable": 1,
  981. "quickSearch": 1,
  982. "filterable": 1,
  983. "order_num": 0,
  984. "ext": "./drpy_js/大中国.js"
  985. },
  986. {
  987. "key": "hipy_js_蛋蛋剧",
  988. "name": "蛋蛋剧(drpy_t3)",
  989. "type": 3,
  990. "api": "./drpy_libs/drpy2.min.js",
  991. "searchable": 1,
  992. "quickSearch": 1,
  993. "filterable": 1,
  994. "order_num": 0,
  995. "ext": "./drpy_js/蛋蛋剧.js"
  996. },
  997. {
  998. "key": "hipy_js_蛋蛋赞",
  999. "name": "蛋蛋赞(drpy_t3)",
  1000. "type": 3,
  1001. "api": "./drpy_libs/drpy2.min.js",
  1002. "searchable": 1,
  1003. "quickSearch": 1,
  1004. "filterable": 1,
  1005. "order_num": 0,
  1006. "ext": "./drpy_js/蛋蛋赞.js"
  1007. },
  1008. {
  1009. "key": "hipy_js_地瓜视频[密]",
  1010. "name": "地瓜视频[密](drpy_t3)",
  1011. "type": 3,
  1012. "api": "./drpy_libs/drpy2.min.js",
  1013. "searchable": 1,
  1014. "quickSearch": 1,
  1015. "filterable": 1,
  1016. "order_num": 0,
  1017. "ext": "./drpy_js/地瓜视频[密].js"
  1018. },
  1019. {
  1020. "key": "hipy_js_低端",
  1021. "name": "低端(drpy_t3)",
  1022. "type": 3,
  1023. "api": "./drpy_libs/drpy2.min.js",
  1024. "searchable": 1,
  1025. "quickSearch": 1,
  1026. "filterable": 1,
  1027. "order_num": 0,
  1028. "ext": "./drpy_js/低端.js"
  1029. },
  1030. {
  1031. "key": "hipy_js_嘀哩嘀哩",
  1032. "name": "嘀哩嘀哩(drpy_t3)",
  1033. "type": 3,
  1034. "api": "./drpy_libs/drpy2.min.js",
  1035. "searchable": 1,
  1036. "quickSearch": 1,
  1037. "filterable": 1,
  1038. "order_num": 0,
  1039. "ext": "./drpy_js/嘀哩嘀哩.js"
  1040. },
  1041. {
  1042. "key": "hipy_js_第一韩漫[画]",
  1043. "name": "第一韩漫[画](drpy_t3)",
  1044. "type": 3,
  1045. "api": "./drpy_libs/drpy2.min.js",
  1046. "searchable": 1,
  1047. "quickSearch": 1,
  1048. "filterable": 1,
  1049. "order_num": 0,
  1050. "ext": "./drpy_js/第一韩漫[画].js"
  1051. },
  1052. {
  1053. "key": "MV_vod",
  1054. "name": "电视┃MTV",
  1055. "type": 1,
  1056. "api": "https://mv.wogg.link/mv/vod",
  1057. "searchable": 1,
  1058. "quickSearch": 0,
  1059. "changeable": 0,
  1060. "order_num": 9999
  1061. },
  1062. {
  1063. "key": "hipy_js_电影狗",
  1064. "name": "电影狗(drpy_t3)",
  1065. "type": 3,
  1066. "api": "./drpy_libs/drpy2.min.js",
  1067. "searchable": 1,
  1068. "quickSearch": 1,
  1069. "filterable": 1,
  1070. "order_num": 0,
  1071. "ext": "./drpy_js/电影狗.js"
  1072. },
  1073. {
  1074. "key": "hipy_js_电影天堂",
  1075. "name": "电影天堂(drpy_t3)",
  1076. "type": 3,
  1077. "api": "./drpy_libs/drpy2.min.js",
  1078. "searchable": 1,
  1079. "quickSearch": 1,
  1080. "filterable": 1,
  1081. "order_num": 0,
  1082. "ext": "./drpy_js/电影天堂.js"
  1083. },
  1084. {
  1085. "key": "hipy_js_电影先生",
  1086. "name": "电影先生(drpy_t3)",
  1087. "type": 3,
  1088. "api": "./drpy_libs/drpy2.min.js",
  1089. "searchable": 1,
  1090. "quickSearch": 1,
  1091. "filterable": 1,
  1092. "order_num": 0,
  1093. "ext": "./drpy_js/电影先生.js"
  1094. },
  1095. {
  1096. "key": "hipy_js_顶点小说[书]",
  1097. "name": "顶点小说[书](drpy_t3)",
  1098. "type": 3,
  1099. "api": "./drpy_libs/drpy2.min.js",
  1100. "searchable": 1,
  1101. "quickSearch": 1,
  1102. "filterable": 1,
  1103. "order_num": 0,
  1104. "ext": "./drpy_js/顶点小说[书].js"
  1105. },
  1106. {
  1107. "key": "hipy_js_顶点小说2[书]",
  1108. "name": "顶点小说2[书](drpy_t3)",
  1109. "type": 3,
  1110. "api": "./drpy_libs/drpy2.min.js",
  1111. "searchable": 1,
  1112. "quickSearch": 1,
  1113. "filterable": 1,
  1114. "order_num": 0,
  1115. "ext": "./drpy_js/顶点小说2[书].js"
  1116. },
  1117. {
  1118. "key": "hipy_js_动漫巴士[漫]",
  1119. "name": "动漫巴士[漫](drpy_t3)",
  1120. "type": 3,
  1121. "api": "./drpy_libs/drpy2.min.js",
  1122. "searchable": 1,
  1123. "quickSearch": 1,
  1124. "filterable": 1,
  1125. "order_num": 0,
  1126. "ext": "./drpy_js/动漫巴士[漫].js"
  1127. },
  1128. {
  1129. "key": "hipy_js_动漫网[漫]",
  1130. "name": "动漫网[漫](drpy_t3)",
  1131. "type": 3,
  1132. "api": "./drpy_libs/drpy2.min.js",
  1133. "searchable": 1,
  1134. "quickSearch": 1,
  1135. "filterable": 1,
  1136. "order_num": 0,
  1137. "ext": "./drpy_js/动漫网[漫].js"
  1138. },
  1139. {
  1140. "key": "hipy_js_斗鱼直播[官]",
  1141. "name": "斗鱼直播[官](drpy_t3)",
  1142. "type": 3,
  1143. "api": "./drpy_libs/drpy2.min.js",
  1144. "searchable": 1,
  1145. "quickSearch": 1,
  1146. "filterable": 1,
  1147. "order_num": 0,
  1148. "ext": "./drpy_js/斗鱼直播[官].js"
  1149. },
  1150. {
  1151. "key": "hipy_js_豆瓣[官]",
  1152. "name": "豆瓣[官](drpy_t3)",
  1153. "type": 3,
  1154. "api": "./drpy_libs/drpy2.min.js",
  1155. "searchable": 1,
  1156. "quickSearch": 1,
  1157. "filterable": 1,
  1158. "order_num": 0,
  1159. "ext": "./drpy_js/豆瓣[官].js"
  1160. },
  1161. {
  1162. "key": "hipy_js_豆角网",
  1163. "name": "豆角网(drpy_t3)",
  1164. "type": 3,
  1165. "api": "./drpy_libs/drpy2.min.js",
  1166. "searchable": 1,
  1167. "quickSearch": 1,
  1168. "filterable": 1,
  1169. "order_num": 0,
  1170. "ext": "./drpy_js/豆角网.js"
  1171. },
  1172. {
  1173. "key": "hipy_js_毒蛇电影[优]",
  1174. "name": "毒蛇电影[优](drpy_t3)",
  1175. "type": 3,
  1176. "api": "./drpy_libs/drpy2.min.js",
  1177. "searchable": 1,
  1178. "quickSearch": 1,
  1179. "filterable": 1,
  1180. "order_num": 0,
  1181. "ext": "./drpy_js/毒蛇电影[优].js"
  1182. },
  1183. {
  1184. "key": "hipy_js_短剧天堂",
  1185. "name": "短剧天堂(drpy_t3)",
  1186. "type": 3,
  1187. "api": "./drpy_libs/drpy2.min.js",
  1188. "searchable": 1,
  1189. "quickSearch": 1,
  1190. "filterable": 1,
  1191. "order_num": 0,
  1192. "ext": "./drpy_js/短剧天堂.js"
  1193. },
  1194. {
  1195. "key": "hipy_js_短剧在线",
  1196. "name": "短剧在线(drpy_t3)",
  1197. "type": 3,
  1198. "api": "./drpy_libs/drpy2.min.js",
  1199. "searchable": 1,
  1200. "quickSearch": 1,
  1201. "filterable": 1,
  1202. "order_num": 0,
  1203. "ext": "./drpy_js/短剧在线.js"
  1204. },
  1205. {
  1206. "key": "hipy_js_短剧TV网",
  1207. "name": "短剧TV网(drpy_t3)",
  1208. "type": 3,
  1209. "api": "./drpy_libs/drpy2.min.js",
  1210. "searchable": 1,
  1211. "quickSearch": 1,
  1212. "filterable": 1,
  1213. "order_num": 0,
  1214. "ext": "./drpy_js/短剧TV网.js"
  1215. },
  1216. {
  1217. "key": "hipy_js_多多追剧[优]",
  1218. "name": "多多追剧[优](drpy_t3)",
  1219. "type": 3,
  1220. "api": "./drpy_libs/drpy2.min.js",
  1221. "searchable": 1,
  1222. "quickSearch": 1,
  1223. "filterable": 1,
  1224. "order_num": 0,
  1225. "ext": "./drpy_js/多多追剧[优].js"
  1226. },
  1227. {
  1228. "key": "hipy_js_番号资源[密]",
  1229. "name": "番号资源[密](drpy_t3)",
  1230. "type": 3,
  1231. "api": "./drpy_libs/drpy2.min.js",
  1232. "searchable": 1,
  1233. "quickSearch": 1,
  1234. "filterable": 1,
  1235. "order_num": 0,
  1236. "ext": "./drpy_js/番号资源[密].js"
  1237. },
  1238. {
  1239. "key": "hipy_js_番茄小说[书]",
  1240. "name": "番茄小说[书](drpy_t3)",
  1241. "type": 3,
  1242. "api": "./drpy_libs/drpy2.min.js",
  1243. "searchable": 1,
  1244. "quickSearch": 1,
  1245. "filterable": 1,
  1246. "order_num": 0,
  1247. "ext": "./drpy_js/番茄小说[书].js"
  1248. },
  1249. {
  1250. "key": "hipy_js_饭团影视",
  1251. "name": "饭团影视(drpy_t3)",
  1252. "type": 3,
  1253. "api": "./drpy_libs/drpy2.min.js",
  1254. "searchable": 1,
  1255. "quickSearch": 1,
  1256. "filterable": 1,
  1257. "order_num": 0,
  1258. "ext": "./drpy_js/饭团影视.js"
  1259. },
  1260. {
  1261. "key": "hipy_js_飞刀资源[资]",
  1262. "name": "飞刀资源[资](drpy_t3)",
  1263. "type": 3,
  1264. "api": "./drpy_libs/drpy2.min.js",
  1265. "searchable": 1,
  1266. "quickSearch": 1,
  1267. "filterable": 1,
  1268. "order_num": 0,
  1269. "ext": "./drpy_js/飞刀资源[资].js"
  1270. },
  1271. {
  1272. "key": "hipy_js_飞狗影院[密]",
  1273. "name": "飞狗影院[密](drpy_t3)",
  1274. "type": 3,
  1275. "api": "./drpy_libs/drpy2.min.js",
  1276. "searchable": 1,
  1277. "quickSearch": 1,
  1278. "filterable": 1,
  1279. "order_num": 0,
  1280. "ext": "./drpy_js/飞狗影院[密].js"
  1281. },
  1282. {
  1283. "key": "hipy_js_飞翔鸟[书]",
  1284. "name": "飞翔鸟[书](drpy_t3)",
  1285. "type": 3,
  1286. "api": "./drpy_libs/drpy2.min.js",
  1287. "searchable": 1,
  1288. "quickSearch": 1,
  1289. "filterable": 1,
  1290. "order_num": 0,
  1291. "ext": "./drpy_js/飞翔鸟[书].js"
  1292. },
  1293. {
  1294. "key": "hipy_js_飞鱼影视",
  1295. "name": "飞鱼影视(drpy_t3)",
  1296. "type": 3,
  1297. "api": "./drpy_libs/drpy2.min.js",
  1298. "searchable": 1,
  1299. "quickSearch": 1,
  1300. "filterable": 1,
  1301. "order_num": 0,
  1302. "ext": "./drpy_js/飞鱼影视.js"
  1303. },
  1304. {
  1305. "key": "hipy_js_非凡资源[资]",
  1306. "name": "非凡资源[资](drpy_t3)",
  1307. "type": 3,
  1308. "api": "./drpy_libs/drpy2.min.js",
  1309. "searchable": 1,
  1310. "quickSearch": 1,
  1311. "filterable": 1,
  1312. "order_num": 0,
  1313. "ext": "./drpy_js/非凡资源[资].js"
  1314. },
  1315. {
  1316. "key": "hipy_js_分享短视频",
  1317. "name": "分享短视频(drpy_t3)",
  1318. "type": 3,
  1319. "api": "./drpy_libs/drpy2.min.js",
  1320. "searchable": 1,
  1321. "quickSearch": 1,
  1322. "filterable": 1,
  1323. "order_num": 0,
  1324. "ext": "./drpy_js/分享短视频.js"
  1325. },
  1326. {
  1327. "key": "hipy_js_干饭影视",
  1328. "name": "干饭影视(drpy_t3)",
  1329. "type": 3,
  1330. "api": "./drpy_libs/drpy2.min.js",
  1331. "searchable": 1,
  1332. "quickSearch": 1,
  1333. "filterable": 1,
  1334. "order_num": 0,
  1335. "ext": "./drpy_js/干饭影视.js"
  1336. },
  1337. {
  1338. "key": "hipy_js_狗狗盘[搜]",
  1339. "name": "狗狗盘[搜](drpy_t3)",
  1340. "type": 3,
  1341. "api": "./drpy_libs/drpy2.min.js",
  1342. "searchable": 1,
  1343. "quickSearch": 1,
  1344. "filterable": 1,
  1345. "order_num": 0,
  1346. "ext": "./drpy_js/狗狗盘[搜].js"
  1347. },
  1348. {
  1349. "key": "hipy_js_咕咕番[漫]",
  1350. "name": "咕咕番[漫](drpy_t3)",
  1351. "type": 3,
  1352. "api": "./drpy_libs/drpy2.min.js",
  1353. "searchable": 1,
  1354. "quickSearch": 1,
  1355. "filterable": 1,
  1356. "order_num": 0,
  1357. "ext": "./drpy_js/咕咕番[漫].js"
  1358. },
  1359. {
  1360. "key": "hipy_js_古风漫画[画]",
  1361. "name": "古风漫画[画](drpy_t3)",
  1362. "type": 3,
  1363. "api": "./drpy_libs/drpy2.min.js",
  1364. "searchable": 1,
  1365. "quickSearch": 1,
  1366. "filterable": 1,
  1367. "order_num": 0,
  1368. "ext": "./drpy_js/古风漫画[画].js"
  1369. },
  1370. {
  1371. "key": "hipy_js_冠建影视",
  1372. "name": "冠建影视(drpy_t3)",
  1373. "type": 3,
  1374. "api": "./drpy_libs/drpy2.min.js",
  1375. "searchable": 1,
  1376. "quickSearch": 1,
  1377. "filterable": 1,
  1378. "order_num": 0,
  1379. "ext": "./drpy_js/冠建影视.js"
  1380. },
  1381. {
  1382. "key": "hipy_js_广播迷FM[听]",
  1383. "name": "广播迷FM[听](drpy_t3)",
  1384. "type": 3,
  1385. "api": "./drpy_libs/drpy2.min.js",
  1386. "searchable": 1,
  1387. "quickSearch": 1,
  1388. "filterable": 1,
  1389. "order_num": 0,
  1390. "ext": "./drpy_js/广播迷FM[听].js"
  1391. },
  1392. {
  1393. "key": "hipy_js_哈皮影视[优]",
  1394. "name": "哈皮影视[优](drpy_t3)",
  1395. "type": 3,
  1396. "api": "./drpy_libs/drpy2.min.js",
  1397. "searchable": 1,
  1398. "quickSearch": 1,
  1399. "filterable": 1,
  1400. "order_num": 0,
  1401. "ext": "./drpy_js/哈皮影视[优].js"
  1402. },
  1403. {
  1404. "key": "hipy_js_海外剧汇",
  1405. "name": "海外剧汇(drpy_t3)",
  1406. "type": 3,
  1407. "api": "./drpy_libs/drpy2.min.js",
  1408. "searchable": 1,
  1409. "quickSearch": 1,
  1410. "filterable": 1,
  1411. "order_num": 0,
  1412. "ext": "./drpy_js/海外剧汇.js"
  1413. },
  1414. {
  1415. "key": "hipy_js_海洋听书[听]",
  1416. "name": "海洋听书[听](drpy_t3)",
  1417. "type": 3,
  1418. "api": "./drpy_libs/drpy2.min.js",
  1419. "searchable": 1,
  1420. "quickSearch": 1,
  1421. "filterable": 1,
  1422. "order_num": 0,
  1423. "ext": "./drpy_js/海洋听书[听].js"
  1424. },
  1425. {
  1426. "key": "hipy_js_好趣网[播]",
  1427. "name": "好趣网[播](drpy_t3)",
  1428. "type": 3,
  1429. "api": "./drpy_libs/drpy2.min.js",
  1430. "searchable": 1,
  1431. "quickSearch": 1,
  1432. "filterable": 1,
  1433. "order_num": 0,
  1434. "ext": "./drpy_js/好趣网[播].js"
  1435. },
  1436. {
  1437. "key": "hipy_js_河狸影视[V2]",
  1438. "name": "河狸影视[V2](drpy_t3)",
  1439. "type": 3,
  1440. "api": "./drpy_libs/drpy2.min.js",
  1441. "searchable": 1,
  1442. "quickSearch": 1,
  1443. "filterable": 1,
  1444. "order_num": 0,
  1445. "ext": "./drpy_js/河狸影视[V2].js"
  1446. },
  1447. {
  1448. "key": "hipy_js_黑狐影院",
  1449. "name": "黑狐影院(drpy_t3)",
  1450. "type": 3,
  1451. "api": "./drpy_libs/drpy2.min.js",
  1452. "searchable": 1,
  1453. "quickSearch": 1,
  1454. "filterable": 1,
  1455. "order_num": 0,
  1456. "ext": "./drpy_js/黑狐影院.js"
  1457. },
  1458. {
  1459. "key": "hipy_js_黑料不打烊-z",
  1460. "name": "黑料不打烊-z(drpy_t3)",
  1461. "type": 3,
  1462. "api": "./drpy_libs/drpy2.min.js",
  1463. "searchable": 1,
  1464. "quickSearch": 1,
  1465. "filterable": 1,
  1466. "order_num": 0,
  1467. "ext": "./drpy_js/黑料不打烊-z.js"
  1468. },
  1469. {
  1470. "key": "hipy_js_黑料不打烊[密]",
  1471. "name": "黑料不打烊[密](drpy_t3)",
  1472. "type": 3,
  1473. "api": "./drpy_libs/drpy2.min.js",
  1474. "searchable": 1,
  1475. "quickSearch": 1,
  1476. "filterable": 1,
  1477. "order_num": 0,
  1478. "ext": "./drpy_js/黑料不打烊[密].js"
  1479. },
  1480. {
  1481. "key": "hipy_js_黑木耳资源[资]",
  1482. "name": "黑木耳资源[资](drpy_t3)",
  1483. "type": 3,
  1484. "api": "./drpy_libs/drpy2.min.js",
  1485. "searchable": 1,
  1486. "quickSearch": 1,
  1487. "filterable": 1,
  1488. "order_num": 0,
  1489. "ext": "./drpy_js/黑木耳资源[资].js"
  1490. },
  1491. {
  1492. "key": "hipy_js_恒大影视[密]",
  1493. "name": "恒大影视[密](drpy_t3)",
  1494. "type": 3,
  1495. "api": "./drpy_libs/drpy2.min.js",
  1496. "searchable": 1,
  1497. "quickSearch": 1,
  1498. "filterable": 1,
  1499. "order_num": 0,
  1500. "ext": "./drpy_js/恒大影视[密].js"
  1501. },
  1502. {
  1503. "key": "hipy_js_红果短剧网[自动]",
  1504. "name": "红果短剧网[自动](drpy_t3)",
  1505. "type": 3,
  1506. "api": "./drpy_libs/drpy2.min.js",
  1507. "searchable": 1,
  1508. "quickSearch": 1,
  1509. "filterable": 1,
  1510. "order_num": 0,
  1511. "ext": "./drpy_js/红果短剧网[自动].js"
  1512. },
  1513. {
  1514. "key": "hipy_js_蝴蝶影视",
  1515. "name": "蝴蝶影视(drpy_t3)",
  1516. "type": 3,
  1517. "api": "./drpy_libs/drpy2.min.js",
  1518. "searchable": 1,
  1519. "quickSearch": 1,
  1520. "filterable": 1,
  1521. "order_num": 0,
  1522. "ext": "./drpy_js/蝴蝶影视.js"
  1523. },
  1524. {
  1525. "key": "hipy_js_蝴蝶影视[自动]",
  1526. "name": "蝴蝶影视[自动](drpy_t3)",
  1527. "type": 3,
  1528. "api": "./drpy_libs/drpy2.min.js",
  1529. "searchable": 1,
  1530. "quickSearch": 1,
  1531. "filterable": 1,
  1532. "order_num": 0,
  1533. "ext": "./drpy_js/蝴蝶影视[自动].js"
  1534. },
  1535. {
  1536. "key": "hipy_js_虎牙直播[官]",
  1537. "name": "虎牙直播[官](drpy_t3)",
  1538. "type": 3,
  1539. "api": "./drpy_libs/drpy2.min.js",
  1540. "searchable": 1,
  1541. "quickSearch": 1,
  1542. "filterable": 1,
  1543. "order_num": 0,
  1544. "ext": "./drpy_js/虎牙直播[官].js"
  1545. },
  1546. {
  1547. "key": "hipy_js_花子动漫[漫]",
  1548. "name": "花子动漫[漫](drpy_t3)",
  1549. "type": 3,
  1550. "api": "./drpy_libs/drpy2.min.js",
  1551. "searchable": 1,
  1552. "quickSearch": 1,
  1553. "filterable": 1,
  1554. "order_num": 0,
  1555. "ext": "./drpy_js/花子动漫[漫].js"
  1556. },
  1557. {
  1558. "key": "混合盘",
  1559. "name": "混合盘|网盘搜索",
  1560. "type": 3,
  1561. "api": "csp_HunHePan",
  1562. "timeout": 60,
  1563. "ext": "./json/tokenm.json",
  1564. "style": {
  1565. "type": "list",
  1566. "ratio": 1.1
  1567. },
  1568. "order_num": 9999
  1569. },
  1570. {
  1571. "key": "hipy_js_火狐影视",
  1572. "name": "火狐影视(drpy_t3)",
  1573. "type": 3,
  1574. "api": "./drpy_libs/drpy2.min.js",
  1575. "searchable": 1,
  1576. "quickSearch": 1,
  1577. "filterable": 1,
  1578. "order_num": 0,
  1579. "ext": "./drpy_js/火狐影视.js"
  1580. },
  1581. {
  1582. "key": "hipy_js_即看影视",
  1583. "name": "即看影视(drpy_t3)",
  1584. "type": 3,
  1585. "api": "./drpy_libs/drpy2.min.js",
  1586. "searchable": 1,
  1587. "quickSearch": 1,
  1588. "filterable": 1,
  1589. "order_num": 0,
  1590. "ext": "./drpy_js/即看影视.js"
  1591. },
  1592. {
  1593. "key": "hipy_js_极点影视",
  1594. "name": "极点影视(drpy_t3)",
  1595. "type": 3,
  1596. "api": "./drpy_libs/drpy2.min.js",
  1597. "searchable": 1,
  1598. "quickSearch": 1,
  1599. "filterable": 1,
  1600. "order_num": 0,
  1601. "ext": "./drpy_js/极点影视.js"
  1602. },
  1603. {
  1604. "key": "hipy_js_极客资源[资]",
  1605. "name": "极客资源[资](drpy_t3)",
  1606. "type": 3,
  1607. "api": "./drpy_libs/drpy2.min.js",
  1608. "searchable": 1,
  1609. "quickSearch": 1,
  1610. "filterable": 1,
  1611. "order_num": 0,
  1612. "ext": "./drpy_js/极客资源[资].js"
  1613. },
  1614. {
  1615. "key": "hipy_js_极速资源[资]",
  1616. "name": "极速资源[资](drpy_t3)",
  1617. "type": 3,
  1618. "api": "./drpy_libs/drpy2.min.js",
  1619. "searchable": 1,
  1620. "quickSearch": 1,
  1621. "filterable": 1,
  1622. "order_num": 0,
  1623. "ext": "./drpy_js/极速资源[资].js"
  1624. },
  1625. {
  1626. "key": "hipy_js_家庭影视",
  1627. "name": "家庭影视(drpy_t3)",
  1628. "type": 3,
  1629. "api": "./drpy_libs/drpy2.min.js",
  1630. "searchable": 1,
  1631. "quickSearch": 1,
  1632. "filterable": 1,
  1633. "order_num": 0,
  1634. "ext": "./drpy_js/家庭影视.js"
  1635. },
  1636. {
  1637. "key": "hipy_js_荐片[优]",
  1638. "name": "荐片[优](drpy_t3)",
  1639. "type": 3,
  1640. "api": "./drpy_libs/drpy2.min.js",
  1641. "searchable": 1,
  1642. "quickSearch": 1,
  1643. "filterable": 1,
  1644. "order_num": 0,
  1645. "ext": "./drpy_js/荐片[优].js"
  1646. },
  1647. {
  1648. "key": "hipy_js_饺子影院",
  1649. "name": "饺子影院(drpy_t3)",
  1650. "type": 3,
  1651. "api": "./drpy_libs/drpy2.min.js",
  1652. "searchable": 1,
  1653. "quickSearch": 1,
  1654. "filterable": 1,
  1655. "order_num": 0,
  1656. "ext": "./drpy_js/饺子影院.js"
  1657. },
  1658. {
  1659. "key": "hipy_js_金金虫",
  1660. "name": "金金虫(drpy_t3)",
  1661. "type": 3,
  1662. "api": "./drpy_libs/drpy2.min.js",
  1663. "searchable": 1,
  1664. "quickSearch": 1,
  1665. "filterable": 1,
  1666. "order_num": 0,
  1667. "ext": "./drpy_js/金金虫.js"
  1668. },
  1669. {
  1670. "key": "hipy_js_金牌影院",
  1671. "name": "金牌影院(drpy_t3)",
  1672. "type": 3,
  1673. "api": "./drpy_libs/drpy2.min.js",
  1674. "searchable": 1,
  1675. "quickSearch": 1,
  1676. "filterable": 1,
  1677. "order_num": 0,
  1678. "ext": "./drpy_js/金牌影院.js"
  1679. },
  1680. {
  1681. "key": "hipy_js_金鹰资源[资]",
  1682. "name": "金鹰资源[资](drpy_t3)",
  1683. "type": 3,
  1684. "api": "./drpy_libs/drpy2.min.js",
  1685. "searchable": 1,
  1686. "quickSearch": 1,
  1687. "filterable": 1,
  1688. "order_num": 0,
  1689. "ext": "./drpy_js/金鹰资源[资].js"
  1690. },
  1691. {
  1692. "key": "hipy_js_九牛电影",
  1693. "name": "九牛电影(drpy_t3)",
  1694. "type": 3,
  1695. "api": "./drpy_libs/drpy2.min.js",
  1696. "searchable": 1,
  1697. "quickSearch": 1,
  1698. "filterable": 1,
  1699. "order_num": 0,
  1700. "ext": "./drpy_js/九牛电影.js"
  1701. },
  1702. {
  1703. "key": "hipy_js_九妖仓库[密]",
  1704. "name": "九妖仓库[密](drpy_t3)",
  1705. "type": 3,
  1706. "api": "./drpy_libs/drpy2.min.js",
  1707. "searchable": 1,
  1708. "quickSearch": 1,
  1709. "filterable": 1,
  1710. "order_num": 0,
  1711. "ext": "./drpy_js/九妖仓库[密].js"
  1712. },
  1713. {
  1714. "key": "hipy_js_橘子柚[盘]",
  1715. "name": "橘子柚[盘](drpy_t3)",
  1716. "type": 3,
  1717. "api": "./drpy_libs/drpy2.min.js",
  1718. "searchable": 1,
  1719. "quickSearch": 1,
  1720. "filterable": 1,
  1721. "order_num": 0,
  1722. "ext": "./drpy_js/橘子柚[盘].js"
  1723. },
  1724. {
  1725. "key": "hipy_js_剧巴巴",
  1726. "name": "剧巴巴(drpy_t3)",
  1727. "type": 3,
  1728. "api": "./drpy_libs/drpy2.min.js",
  1729. "searchable": 1,
  1730. "quickSearch": 1,
  1731. "filterable": 1,
  1732. "order_num": 0,
  1733. "ext": "./drpy_js/剧巴巴.js"
  1734. },
  1735. {
  1736. "key": "hipy_js_剧哥哥",
  1737. "name": "剧哥哥(drpy_t3)",
  1738. "type": 3,
  1739. "api": "./drpy_libs/drpy2.min.js",
  1740. "searchable": 1,
  1741. "quickSearch": 1,
  1742. "filterable": 1,
  1743. "order_num": 0,
  1744. "ext": "./drpy_js/剧哥哥.js"
  1745. },
  1746. {
  1747. "key": "hipy_js_剧集TV",
  1748. "name": "剧集TV(drpy_t3)",
  1749. "type": 3,
  1750. "api": "./drpy_libs/drpy2.min.js",
  1751. "searchable": 1,
  1752. "quickSearch": 1,
  1753. "filterable": 1,
  1754. "order_num": 0,
  1755. "ext": "./drpy_js/剧集TV.js"
  1756. },
  1757. {
  1758. "key": "hipy_js_剧迷",
  1759. "name": "剧迷(drpy_t3)",
  1760. "type": 3,
  1761. "api": "./drpy_libs/drpy2.min.js",
  1762. "searchable": 1,
  1763. "quickSearch": 1,
  1764. "filterable": 1,
  1765. "order_num": 0,
  1766. "ext": "./drpy_js/剧迷.js"
  1767. },
  1768. {
  1769. "key": "hipy_js_剧圈圈",
  1770. "name": "剧圈圈(drpy_t3)",
  1771. "type": 3,
  1772. "api": "./drpy_libs/drpy2.min.js",
  1773. "searchable": 1,
  1774. "quickSearch": 1,
  1775. "filterable": 1,
  1776. "order_num": 0,
  1777. "ext": "./drpy_js/剧圈圈.js"
  1778. },
  1779. {
  1780. "key": "hipy_js_剧圈圈[自动]",
  1781. "name": "剧圈圈[自动](drpy_t3)",
  1782. "type": 3,
  1783. "api": "./drpy_libs/drpy2.min.js",
  1784. "searchable": 1,
  1785. "quickSearch": 1,
  1786. "filterable": 1,
  1787. "order_num": 0,
  1788. "ext": "./drpy_js/剧圈圈[自动].js"
  1789. },
  1790. {
  1791. "key": "hipy_js_咖啡影视",
  1792. "name": "咖啡影视(drpy_t3)",
  1793. "type": 3,
  1794. "api": "./drpy_libs/drpy2.min.js",
  1795. "searchable": 1,
  1796. "quickSearch": 1,
  1797. "filterable": 1,
  1798. "order_num": 0,
  1799. "ext": "./drpy_js/咖啡影视.js"
  1800. },
  1801. {
  1802. "key": "hipy_js_看57",
  1803. "name": "看57(drpy_t3)",
  1804. "type": 3,
  1805. "api": "./drpy_libs/drpy2.min.js",
  1806. "searchable": 1,
  1807. "quickSearch": 1,
  1808. "filterable": 1,
  1809. "order_num": 0,
  1810. "ext": "./drpy_js/看57.js"
  1811. },
  1812. {
  1813. "key": "hipy_js_看看影视",
  1814. "name": "看看影视(drpy_t3)",
  1815. "type": 3,
  1816. "api": "./drpy_libs/drpy2.min.js",
  1817. "searchable": 1,
  1818. "quickSearch": 1,
  1819. "filterable": 1,
  1820. "order_num": 0,
  1821. "ext": "./drpy_js/看看影视.js"
  1822. },
  1823. {
  1824. "key": "hipy_js_看客视频",
  1825. "name": "看客视频(drpy_t3)",
  1826. "type": 3,
  1827. "api": "./drpy_libs/drpy2.min.js",
  1828. "searchable": 1,
  1829. "quickSearch": 1,
  1830. "filterable": 1,
  1831. "order_num": 0,
  1832. "ext": "./drpy_js/看客视频.js"
  1833. },
  1834. {
  1835. "key": "hipy_js_看客影院",
  1836. "name": "看客影院(drpy_t3)",
  1837. "type": 3,
  1838. "api": "./drpy_libs/drpy2.min.js",
  1839. "searchable": 1,
  1840. "quickSearch": 1,
  1841. "filterable": 1,
  1842. "order_num": 0,
  1843. "ext": "./drpy_js/看客影院.js"
  1844. },
  1845. {
  1846. "key": "hipy_js_看了么",
  1847. "name": "看了么(drpy_t3)",
  1848. "type": 3,
  1849. "api": "./drpy_libs/drpy2.min.js",
  1850. "searchable": 1,
  1851. "quickSearch": 1,
  1852. "filterable": 1,
  1853. "order_num": 0,
  1854. "ext": "./drpy_js/看了么.js"
  1855. },
  1856. {
  1857. "key": "hipy_js_看戏网",
  1858. "name": "看戏网(drpy_t3)",
  1859. "type": 3,
  1860. "api": "./drpy_libs/drpy2.min.js",
  1861. "searchable": 1,
  1862. "quickSearch": 1,
  1863. "filterable": 1,
  1864. "order_num": 0,
  1865. "ext": "./drpy_js/看戏网.js"
  1866. },
  1867. {
  1868. "key": "hipy_js_看呀看",
  1869. "name": "看呀看(drpy_t3)",
  1870. "type": 3,
  1871. "api": "./drpy_libs/drpy2.min.js",
  1872. "searchable": 1,
  1873. "quickSearch": 1,
  1874. "filterable": 1,
  1875. "order_num": 0,
  1876. "ext": "./drpy_js/看呀看.js"
  1877. },
  1878. {
  1879. "key": "hipy_js_可达影视",
  1880. "name": "可达影视(drpy_t3)",
  1881. "type": 3,
  1882. "api": "./drpy_libs/drpy2.min.js",
  1883. "searchable": 1,
  1884. "quickSearch": 1,
  1885. "filterable": 1,
  1886. "order_num": 0,
  1887. "ext": "./drpy_js/可达影视.js"
  1888. },
  1889. {
  1890. "key": "hipy_js_可可影视[优]",
  1891. "name": "可可影视[优](drpy_t3)",
  1892. "type": 3,
  1893. "api": "./drpy_libs/drpy2.min.js",
  1894. "searchable": 1,
  1895. "quickSearch": 1,
  1896. "filterable": 1,
  1897. "order_num": 0,
  1898. "ext": "./drpy_js/可可影视[优].js"
  1899. },
  1900. {
  1901. "key": "酷狗",
  1902. "name": "酷狗",
  1903. "type": 3,
  1904. "api": "csp_Kugou",
  1905. "searchable": 1,
  1906. "changeable": 0,
  1907. "order_num": 9999
  1908. },
  1909. {
  1910. "key": "hipy_js_酷狗[听]",
  1911. "name": "酷狗[听](drpy_t3)",
  1912. "type": 3,
  1913. "api": "./drpy_libs/drpy2.min.js",
  1914. "searchable": 1,
  1915. "quickSearch": 1,
  1916. "filterable": 1,
  1917. "order_num": 0,
  1918. "ext": "./drpy_js/酷狗[听].js"
  1919. },
  1920. {
  1921. "key": "hipy_js_酷客影视",
  1922. "name": "酷客影视(drpy_t3)",
  1923. "type": 3,
  1924. "api": "./drpy_libs/drpy2.min.js",
  1925. "searchable": 1,
  1926. "quickSearch": 1,
  1927. "filterable": 1,
  1928. "order_num": 0,
  1929. "ext": "./drpy_js/酷客影视.js"
  1930. },
  1931. {
  1932. "key": "hipy_js_酷我听书[听]",
  1933. "name": "酷我听书[听](drpy_t3)",
  1934. "type": 3,
  1935. "api": "./drpy_libs/drpy2.min.js",
  1936. "searchable": 1,
  1937. "quickSearch": 1,
  1938. "filterable": 1,
  1939. "order_num": 0,
  1940. "ext": "./drpy_js/酷我听书[听].js"
  1941. },
  1942. {
  1943. "key": "hipy_js_酷云影视",
  1944. "name": "酷云影视(drpy_t3)",
  1945. "type": 3,
  1946. "api": "./drpy_libs/drpy2.min.js",
  1947. "searchable": 1,
  1948. "quickSearch": 1,
  1949. "filterable": 1,
  1950. "order_num": 0,
  1951. "ext": "./drpy_js/酷云影视.js"
  1952. },
  1953. {
  1954. "key": "QuarkPanso",
  1955. "name": "夸克盘搜|夸克搜索",
  1956. "type": 3,
  1957. "api": "csp_QuarkPanso",
  1958. "quickSearch": 1,
  1959. "changeable": 1,
  1960. "filterable": 1,
  1961. "timeout": 60,
  1962. "ext": "./json/tokenm.json",
  1963. "style": {
  1964. "type": "list",
  1965. "ratio": 1.1
  1966. },
  1967. "order_num": 9999
  1968. },
  1969. {
  1970. "key": "QuarkShare",
  1971. "name": "夸克云盘分享",
  1972. "type": 3,
  1973. "api": "csp_QuarkShare",
  1974. "searchable": 0,
  1975. "quickSearch": 0,
  1976. "changeable": 0,
  1977. "filterable": 0,
  1978. "timeout": 60,
  1979. "ext": "./json/tokenm.json$$$./json/quarkshare.txt",
  1980. "style": {
  1981. "type": "list",
  1982. "ratio": 1.1
  1983. },
  1984. "order_num": 9999
  1985. },
  1986. {
  1987. "key": "hipy_js_快看影视",
  1988. "name": "快看影视(drpy_t3)",
  1989. "type": 3,
  1990. "api": "./drpy_libs/drpy2.min.js",
  1991. "searchable": 1,
  1992. "quickSearch": 1,
  1993. "filterable": 1,
  1994. "order_num": 0,
  1995. "ext": "./drpy_js/快看影视.js"
  1996. },
  1997. {
  1998. "key": "hipy_js_蜡笔[盘]",
  1999. "name": "蜡笔[盘](drpy_t3)",
  2000. "type": 3,
  2001. "api": "./drpy_libs/drpy2.min.js",
  2002. "searchable": 1,
  2003. "quickSearch": 1,
  2004. "filterable": 1,
  2005. "order_num": 0,
  2006. "ext": "./drpy_js/蜡笔[盘].js"
  2007. },
  2008. {
  2009. "key": "hipy_js_来看点播",
  2010. "name": "来看点播(drpy_t3)",
  2011. "type": 3,
  2012. "api": "./drpy_libs/drpy2.min.js",
  2013. "searchable": 1,
  2014. "quickSearch": 1,
  2015. "filterable": 1,
  2016. "order_num": 0,
  2017. "ext": "./drpy_js/来看点播.js"
  2018. },
  2019. {
  2020. "key": "hipy_js_来看点播[自动]",
  2021. "name": "来看点播[自动](drpy_t3)",
  2022. "type": 3,
  2023. "api": "./drpy_libs/drpy2.min.js",
  2024. "searchable": 1,
  2025. "quickSearch": 1,
  2026. "filterable": 1,
  2027. "order_num": 0,
  2028. "ext": "./drpy_js/来看点播[自动].js"
  2029. },
  2030. {
  2031. "key": "hipy_js_蓝光影视",
  2032. "name": "蓝光影视(drpy_t3)",
  2033. "type": 3,
  2034. "api": "./drpy_libs/drpy2.min.js",
  2035. "searchable": 1,
  2036. "quickSearch": 1,
  2037. "filterable": 1,
  2038. "order_num": 0,
  2039. "ext": "./drpy_js/蓝光影视.js"
  2040. },
  2041. {
  2042. "key": "hipy_js_老白故事[听]",
  2043. "name": "老白故事[听](drpy_t3)",
  2044. "type": 3,
  2045. "api": "./drpy_libs/drpy2.min.js",
  2046. "searchable": 1,
  2047. "quickSearch": 1,
  2048. "filterable": 1,
  2049. "order_num": 0,
  2050. "ext": "./drpy_js/老白故事[听].js"
  2051. },
  2052. {
  2053. "key": "hipy_js_老司视频[密]",
  2054. "name": "老司视频[密](drpy_t3)",
  2055. "type": 3,
  2056. "api": "./drpy_libs/drpy2.min.js",
  2057. "searchable": 1,
  2058. "quickSearch": 1,
  2059. "filterable": 1,
  2060. "order_num": 0,
  2061. "ext": "./drpy_js/老司视频[密].js"
  2062. },
  2063. {
  2064. "key": "hipy_js_乐草TV[密]",
  2065. "name": "乐草TV[密](drpy_t3)",
  2066. "type": 3,
  2067. "api": "./drpy_libs/drpy2.min.js",
  2068. "searchable": 1,
  2069. "quickSearch": 1,
  2070. "filterable": 1,
  2071. "order_num": 0,
  2072. "ext": "./drpy_js/乐草TV[密].js"
  2073. },
  2074. {
  2075. "key": "hipy_js_两个BT",
  2076. "name": "两个BT(drpy_t3)",
  2077. "type": 3,
  2078. "api": "./drpy_libs/drpy2.min.js",
  2079. "searchable": 1,
  2080. "quickSearch": 1,
  2081. "filterable": 1,
  2082. "order_num": 0,
  2083. "ext": "./drpy_js/两个BT.js"
  2084. },
  2085. {
  2086. "key": "hipy_js_量子影视[资]",
  2087. "name": "量子影视[资](drpy_t3)",
  2088. "type": 3,
  2089. "api": "./drpy_libs/drpy2.min.js",
  2090. "searchable": 1,
  2091. "quickSearch": 1,
  2092. "filterable": 1,
  2093. "order_num": 0,
  2094. "ext": "./drpy_js/量子影视[资].js"
  2095. },
  2096. {
  2097. "key": "hipy_js_量子资源[资]",
  2098. "name": "量子资源[资](drpy_t3)",
  2099. "type": 3,
  2100. "api": "./drpy_libs/drpy2.min.js",
  2101. "searchable": 1,
  2102. "quickSearch": 1,
  2103. "filterable": 1,
  2104. "order_num": 0,
  2105. "ext": "./drpy_js/量子资源[资].js"
  2106. },
  2107. {
  2108. "key": "hipy_js_六月听书[听]",
  2109. "name": "六月听书[听](drpy_t3)",
  2110. "type": 3,
  2111. "api": "./drpy_libs/drpy2.min.js",
  2112. "searchable": 1,
  2113. "quickSearch": 1,
  2114. "filterable": 1,
  2115. "order_num": 0,
  2116. "ext": "./drpy_js/六月听书[听].js"
  2117. },
  2118. {
  2119. "key": "hipy_js_路漫漫[漫]",
  2120. "name": "路漫漫[漫](drpy_t3)",
  2121. "type": 3,
  2122. "api": "./drpy_libs/drpy2.min.js",
  2123. "searchable": 1,
  2124. "quickSearch": 1,
  2125. "filterable": 1,
  2126. "order_num": 0,
  2127. "ext": "./drpy_js/路漫漫[漫].js"
  2128. },
  2129. {
  2130. "key": "hipy_js_路视频[密]",
  2131. "name": "路视频[密](drpy_t3)",
  2132. "type": 3,
  2133. "api": "./drpy_libs/drpy2.min.js",
  2134. "searchable": 1,
  2135. "quickSearch": 1,
  2136. "filterable": 1,
  2137. "order_num": 0,
  2138. "ext": "./drpy_js/路视频[密].js"
  2139. },
  2140. {
  2141. "key": "hipy_js_驴番[漫]",
  2142. "name": "驴番[漫](drpy_t3)",
  2143. "type": 3,
  2144. "api": "./drpy_libs/drpy2.min.js",
  2145. "searchable": 1,
  2146. "quickSearch": 1,
  2147. "filterable": 1,
  2148. "order_num": 0,
  2149. "ext": "./drpy_js/驴番[漫].js"
  2150. },
  2151. {
  2152. "key": "hipy_js_绿色仓库[密]",
  2153. "name": "绿色仓库[密](drpy_t3)",
  2154. "type": 3,
  2155. "api": "./drpy_libs/drpy2.min.js",
  2156. "searchable": 1,
  2157. "quickSearch": 1,
  2158. "filterable": 1,
  2159. "order_num": 0,
  2160. "ext": "./drpy_js/绿色仓库[密].js"
  2161. },
  2162. {
  2163. "key": "hipy_js_麻雀视频[优]",
  2164. "name": "麻雀视频[优](drpy_t3)",
  2165. "type": 3,
  2166. "api": "./drpy_libs/drpy2.min.js",
  2167. "searchable": 1,
  2168. "quickSearch": 1,
  2169. "filterable": 1,
  2170. "order_num": 0,
  2171. "ext": "./drpy_js/麻雀视频[优].js"
  2172. },
  2173. {
  2174. "key": "hipy_js_蚂蚁影视",
  2175. "name": "蚂蚁影视(drpy_t3)",
  2176. "type": 3,
  2177. "api": "./drpy_libs/drpy2.min.js",
  2178. "searchable": 1,
  2179. "quickSearch": 1,
  2180. "filterable": 1,
  2181. "order_num": 0,
  2182. "ext": "./drpy_js/蚂蚁影视.js"
  2183. },
  2184. {
  2185. "key": "hipy_js_漫画走廊[画密飞]",
  2186. "name": "漫画走廊[画密飞](drpy_t3)",
  2187. "type": 3,
  2188. "api": "./drpy_libs/drpy2.min.js",
  2189. "searchable": 1,
  2190. "quickSearch": 1,
  2191. "filterable": 1,
  2192. "order_num": 0,
  2193. "ext": "./drpy_js/漫画走廊[画密飞].js"
  2194. },
  2195. {
  2196. "key": "hipy_js_漫小肆[画]",
  2197. "name": "漫小肆[画](drpy_t3)",
  2198. "type": 3,
  2199. "api": "./drpy_libs/drpy2.min.js",
  2200. "searchable": 1,
  2201. "quickSearch": 1,
  2202. "filterable": 1,
  2203. "order_num": 0,
  2204. "ext": "./drpy_js/漫小肆[画].js"
  2205. },
  2206. {
  2207. "key": "hipy_js_猫视界",
  2208. "name": "猫视界(drpy_t3)",
  2209. "type": 3,
  2210. "api": "./drpy_libs/drpy2.min.js",
  2211. "searchable": 1,
  2212. "quickSearch": 1,
  2213. "filterable": 1,
  2214. "order_num": 0,
  2215. "ext": "./drpy_js/猫视界.js"
  2216. },
  2217. {
  2218. "key": "hipy_js_美剧星球",
  2219. "name": "美剧星球(drpy_t3)",
  2220. "type": 3,
  2221. "api": "./drpy_libs/drpy2.min.js",
  2222. "searchable": 1,
  2223. "quickSearch": 1,
  2224. "filterable": 1,
  2225. "order_num": 0,
  2226. "ext": "./drpy_js/美剧星球.js"
  2227. },
  2228. {
  2229. "key": "hipy_js_美益达",
  2230. "name": "美益达(drpy_t3)",
  2231. "type": 3,
  2232. "api": "./drpy_libs/drpy2.min.js",
  2233. "searchable": 1,
  2234. "quickSearch": 1,
  2235. "filterable": 1,
  2236. "order_num": 0,
  2237. "ext": "./drpy_js/美益达.js"
  2238. },
  2239. {
  2240. "key": "hipy_js_萌番[漫]",
  2241. "name": "萌番[漫](drpy_t3)",
  2242. "type": 3,
  2243. "api": "./drpy_libs/drpy2.min.js",
  2244. "searchable": 1,
  2245. "quickSearch": 1,
  2246. "filterable": 1,
  2247. "order_num": 0,
  2248. "ext": "./drpy_js/萌番[漫].js"
  2249. },
  2250. {
  2251. "key": "hipy_js_米爱影视",
  2252. "name": "米爱影视(drpy_t3)",
  2253. "type": 3,
  2254. "api": "./drpy_libs/drpy2.min.js",
  2255. "searchable": 1,
  2256. "quickSearch": 1,
  2257. "filterable": 1,
  2258. "order_num": 0,
  2259. "ext": "./drpy_js/米爱影视.js"
  2260. },
  2261. {
  2262. "key": "秒搜",
  2263. "name": "秒搜|网盘搜索",
  2264. "type": 3,
  2265. "api": "csp_MiaoSou",
  2266. "timeout": 60,
  2267. "ext": "./json/tokenm.json",
  2268. "style": {
  2269. "type": "list",
  2270. "ratio": 1.1
  2271. },
  2272. "order_num": 9999
  2273. },
  2274. {
  2275. "key": "hipy_js_魔都资源[资]",
  2276. "name": "魔都资源[资](drpy_t3)",
  2277. "type": 3,
  2278. "api": "./drpy_libs/drpy2.min.js",
  2279. "searchable": 1,
  2280. "quickSearch": 1,
  2281. "filterable": 1,
  2282. "order_num": 0,
  2283. "ext": "./drpy_js/魔都资源[资].js"
  2284. },
  2285. {
  2286. "key": "hipy_js_魔方影视",
  2287. "name": "魔方影视(drpy_t3)",
  2288. "type": 3,
  2289. "api": "./drpy_libs/drpy2.min.js",
  2290. "searchable": 1,
  2291. "quickSearch": 1,
  2292. "filterable": 1,
  2293. "order_num": 0,
  2294. "ext": "./drpy_js/魔方影视.js"
  2295. },
  2296. {
  2297. "key": "hipy_js_那兔视频",
  2298. "name": "那兔视频(drpy_t3)",
  2299. "type": 3,
  2300. "api": "./drpy_libs/drpy2.min.js",
  2301. "searchable": 1,
  2302. "quickSearch": 1,
  2303. "filterable": 1,
  2304. "order_num": 0,
  2305. "ext": "./drpy_js/那兔视频.js"
  2306. },
  2307. {
  2308. "key": "hipy_js_奶狗影视[慢]",
  2309. "name": "奶狗影视[慢](drpy_t3)",
  2310. "type": 3,
  2311. "api": "./drpy_libs/drpy2.min.js",
  2312. "searchable": 1,
  2313. "quickSearch": 1,
  2314. "filterable": 1,
  2315. "order_num": 0,
  2316. "ext": "./drpy_js/奶狗影视[慢].js"
  2317. },
  2318. {
  2319. "key": "hipy_js_奈飞影视[自动]",
  2320. "name": "奈飞影视[自动](drpy_t3)",
  2321. "type": 3,
  2322. "api": "./drpy_libs/drpy2.min.js",
  2323. "searchable": 1,
  2324. "quickSearch": 1,
  2325. "filterable": 1,
  2326. "order_num": 0,
  2327. "ext": "./drpy_js/奈飞影视[自动].js"
  2328. },
  2329. {
  2330. "key": "hipy_js_奈飞中文[自动]",
  2331. "name": "奈飞中文[自动](drpy_t3)",
  2332. "type": 3,
  2333. "api": "./drpy_libs/drpy2.min.js",
  2334. "searchable": 1,
  2335. "quickSearch": 1,
  2336. "filterable": 1,
  2337. "order_num": 0,
  2338. "ext": "./drpy_js/奈飞中文[自动].js"
  2339. },
  2340. {
  2341. "key": "hipy_js_耐看",
  2342. "name": "耐看(drpy_t3)",
  2343. "type": 3,
  2344. "api": "./drpy_libs/drpy2.min.js",
  2345. "searchable": 1,
  2346. "quickSearch": 1,
  2347. "filterable": 1,
  2348. "order_num": 0,
  2349. "ext": "./drpy_js/耐看.js"
  2350. },
  2351. {
  2352. "key": "hipy_js_耐看点播",
  2353. "name": "耐看点播(drpy_t3)",
  2354. "type": 3,
  2355. "api": "./drpy_libs/drpy2.min.js",
  2356. "searchable": 1,
  2357. "quickSearch": 1,
  2358. "filterable": 1,
  2359. "order_num": 0,
  2360. "ext": "./drpy_js/耐看点播.js"
  2361. },
  2362. {
  2363. "key": "hipy_js_南瓜影视[优]",
  2364. "name": "南瓜影视[优](drpy_t3)",
  2365. "type": 3,
  2366. "api": "./drpy_libs/drpy2.min.js",
  2367. "searchable": 1,
  2368. "quickSearch": 1,
  2369. "filterable": 1,
  2370. "order_num": 0,
  2371. "ext": "./drpy_js/南瓜影视[优].js"
  2372. },
  2373. {
  2374. "key": "hipy_js_你好帅影院",
  2375. "name": "你好帅影院(drpy_t3)",
  2376. "type": 3,
  2377. "api": "./drpy_libs/drpy2.min.js",
  2378. "searchable": 1,
  2379. "quickSearch": 1,
  2380. "filterable": 1,
  2381. "order_num": 0,
  2382. "ext": "./drpy_js/你好帅影院.js"
  2383. },
  2384. {
  2385. "key": "hipy_js_柠檬影视[V2]",
  2386. "name": "柠檬影视[V2](drpy_t3)",
  2387. "type": 3,
  2388. "api": "./drpy_libs/drpy2.min.js",
  2389. "searchable": 1,
  2390. "quickSearch": 1,
  2391. "filterable": 1,
  2392. "order_num": 0,
  2393. "ext": "./drpy_js/柠檬影视[V2].js"
  2394. },
  2395. {
  2396. "key": "hipy_js_农民影视[优]",
  2397. "name": "农民影视[优](drpy_t3)",
  2398. "type": 3,
  2399. "api": "./drpy_libs/drpy2.min.js",
  2400. "searchable": 1,
  2401. "quickSearch": 1,
  2402. "filterable": 1,
  2403. "order_num": 0,
  2404. "ext": "./drpy_js/农民影视[优].js"
  2405. },
  2406. {
  2407. "key": "hipy_js_暖光影视",
  2408. "name": "暖光影视(drpy_t3)",
  2409. "type": 3,
  2410. "api": "./drpy_libs/drpy2.min.js",
  2411. "searchable": 1,
  2412. "quickSearch": 1,
  2413. "filterable": 1,
  2414. "order_num": 0,
  2415. "ext": "./drpy_js/暖光影视.js"
  2416. },
  2417. {
  2418. "key": "hipy_js_牌牌影院",
  2419. "name": "牌牌影院(drpy_t3)",
  2420. "type": 3,
  2421. "api": "./drpy_libs/drpy2.min.js",
  2422. "searchable": 1,
  2423. "quickSearch": 1,
  2424. "filterable": 1,
  2425. "order_num": 0,
  2426. "ext": "./drpy_js/牌牌影院.js"
  2427. },
  2428. {
  2429. "key": "盘友圈",
  2430. "name": "盘友圈|网盘搜索",
  2431. "type": 3,
  2432. "api": "csp_Panyq",
  2433. "timeout": 60,
  2434. "ext": "./json/tokenm.json$$$site$$$proxy",
  2435. "order_num": 9999
  2436. },
  2437. {
  2438. "key": "hipy_js_胖虎影视",
  2439. "name": "胖虎影视(drpy_t3)",
  2440. "type": 3,
  2441. "api": "./drpy_libs/drpy2.min.js",
  2442. "searchable": 1,
  2443. "quickSearch": 1,
  2444. "filterable": 1,
  2445. "order_num": 0,
  2446. "ext": "./drpy_js/胖虎影视.js"
  2447. },
  2448. {
  2449. "key": "hipy_js_泡泡影院",
  2450. "name": "泡泡影院(drpy_t3)",
  2451. "type": 3,
  2452. "api": "./drpy_libs/drpy2.min.js",
  2453. "searchable": 1,
  2454. "quickSearch": 1,
  2455. "filterable": 1,
  2456. "order_num": 0,
  2457. "ext": "./drpy_js/泡泡影院.js"
  2458. },
  2459. {
  2460. "key": "PikaSo",
  2461. "name": "皮卡搜|网盘搜索",
  2462. "type": 3,
  2463. "api": "csp_PikaSo",
  2464. "quickSearch": 1,
  2465. "changeable": 1,
  2466. "filterable": 1,
  2467. "timeout": 60,
  2468. "ext": "./json/tokenm.json$$$https://www.pikaso.top/$$$None",
  2469. "style": {
  2470. "type": "list",
  2471. "ratio": 1.1
  2472. },
  2473. "order_num": 9999
  2474. },
  2475. {
  2476. "key": "Ppxzy",
  2477. "name": "皮皮虾|网盘",
  2478. "type": 3,
  2479. "api": "csp_Ppxzy",
  2480. "quickSearch": 1,
  2481. "changeable": 1,
  2482. "filterable": 1,
  2483. "timeout": 60,
  2484. "ext": "./json/tokenm.json$$$https://ppxzy.ink$$$proxy$$$1",
  2485. "order_num": 9999
  2486. },
  2487. {
  2488. "key": "hipy_js_皮皮影视",
  2489. "name": "皮皮影视(drpy_t3)",
  2490. "type": 3,
  2491. "api": "./drpy_libs/drpy2.min.js",
  2492. "searchable": 1,
  2493. "quickSearch": 1,
  2494. "filterable": 1,
  2495. "order_num": 0,
  2496. "ext": "./drpy_js/皮皮影视.js"
  2497. },
  2498. {
  2499. "key": "hipy_js_飘花18",
  2500. "name": "飘花18(drpy_t3)",
  2501. "type": 3,
  2502. "api": "./drpy_libs/drpy2.min.js",
  2503. "searchable": 1,
  2504. "quickSearch": 1,
  2505. "filterable": 1,
  2506. "order_num": 0,
  2507. "ext": "./drpy_js/飘花18.js"
  2508. },
  2509. {
  2510. "key": "hipy_js_飘花影院",
  2511. "name": "飘花影院(drpy_t3)",
  2512. "type": 3,
  2513. "api": "./drpy_libs/drpy2.min.js",
  2514. "searchable": 1,
  2515. "quickSearch": 1,
  2516. "filterable": 1,
  2517. "order_num": 0,
  2518. "ext": "./drpy_js/飘花影院.js"
  2519. },
  2520. {
  2521. "key": "hipy_js_朴樱影视",
  2522. "name": "朴樱影视(drpy_t3)",
  2523. "type": 3,
  2524. "api": "./drpy_libs/drpy2.min.js",
  2525. "searchable": 1,
  2526. "quickSearch": 1,
  2527. "filterable": 1,
  2528. "order_num": 0,
  2529. "ext": "./drpy_js/朴樱影视.js"
  2530. },
  2531. {
  2532. "key": "hipy_js_七年影视",
  2533. "name": "七年影视(drpy_t3)",
  2534. "type": 3,
  2535. "api": "./drpy_libs/drpy2.min.js",
  2536. "searchable": 1,
  2537. "quickSearch": 1,
  2538. "filterable": 1,
  2539. "order_num": 0,
  2540. "ext": "./drpy_js/七年影视.js"
  2541. },
  2542. {
  2543. "key": "hipy_js_七色番[漫]",
  2544. "name": "七色番[漫](drpy_t3)",
  2545. "type": 3,
  2546. "api": "./drpy_libs/drpy2.min.js",
  2547. "searchable": 1,
  2548. "quickSearch": 1,
  2549. "filterable": 1,
  2550. "order_num": 0,
  2551. "ext": "./drpy_js/七色番[漫].js"
  2552. },
  2553. {
  2554. "key": "hipy_js_七新电影网",
  2555. "name": "七新电影网(drpy_t3)",
  2556. "type": 3,
  2557. "api": "./drpy_libs/drpy2.min.js",
  2558. "searchable": 1,
  2559. "quickSearch": 1,
  2560. "filterable": 1,
  2561. "order_num": 0,
  2562. "ext": "./drpy_js/七新电影网.js"
  2563. },
  2564. {
  2565. "key": "hipy_js_奇米动漫[漫]",
  2566. "name": "奇米动漫[漫](drpy_t3)",
  2567. "type": 3,
  2568. "api": "./drpy_libs/drpy2.min.js",
  2569. "searchable": 1,
  2570. "quickSearch": 1,
  2571. "filterable": 1,
  2572. "order_num": 0,
  2573. "ext": "./drpy_js/奇米动漫[漫].js"
  2574. },
  2575. {
  2576. "key": "hipy_js_千百视频[密]",
  2577. "name": "千百视频[密](drpy_t3)",
  2578. "type": 3,
  2579. "api": "./drpy_libs/drpy2.min.js",
  2580. "searchable": 1,
  2581. "quickSearch": 1,
  2582. "filterable": 1,
  2583. "order_num": 0,
  2584. "ext": "./drpy_js/千百视频[密].js"
  2585. },
  2586. {
  2587. "key": "Qianfan",
  2588. "name": "千帆|网盘搜索",
  2589. "type": 3,
  2590. "api": "csp_Qianfan",
  2591. "quickSearch": 1,
  2592. "changeable": 1,
  2593. "filterable": 1,
  2594. "timeout": 60,
  2595. "ext": "./json/tokenm.json$$$https://pan.qianfan.app$$$None$$$./json/qianfan.txt$$$1",
  2596. "order_num": 9999
  2597. },
  2598. {
  2599. "key": "hipy_js_千神影视",
  2600. "name": "千神影视(drpy_t3)",
  2601. "type": 3,
  2602. "api": "./drpy_libs/drpy2.min.js",
  2603. "searchable": 1,
  2604. "quickSearch": 1,
  2605. "filterable": 1,
  2606. "order_num": 0,
  2607. "ext": "./drpy_js/千神影视.js"
  2608. },
  2609. {
  2610. "key": "hipy_js_清风DJ[听]",
  2611. "name": "清风DJ[听](drpy_t3)",
  2612. "type": 3,
  2613. "api": "./drpy_libs/drpy2.min.js",
  2614. "searchable": 1,
  2615. "quickSearch": 1,
  2616. "filterable": 1,
  2617. "order_num": 0,
  2618. "ext": "./drpy_js/清风DJ[听].js"
  2619. },
  2620. {
  2621. "key": "Funletu",
  2622. "name": "趣盘搜|夸克搜索",
  2623. "type": 3,
  2624. "api": "csp_Funletu",
  2625. "quickSearch": 1,
  2626. "changeable": 1,
  2627. "filterable": 1,
  2628. "timeout": 60,
  2629. "ext": "./json/tokenm.json",
  2630. "style": {
  2631. "type": "list",
  2632. "ratio": 1.1
  2633. },
  2634. "order_num": 9999
  2635. },
  2636. {
  2637. "key": "hipy_js_热播之家",
  2638. "name": "热播之家(drpy_t3)",
  2639. "type": 3,
  2640. "api": "./drpy_libs/drpy2.min.js",
  2641. "searchable": 1,
  2642. "quickSearch": 1,
  2643. "filterable": 1,
  2644. "order_num": 0,
  2645. "ext": "./drpy_js/热播之家.js"
  2646. },
  2647. {
  2648. "key": "hipy_js_热片网",
  2649. "name": "热片网(drpy_t3)",
  2650. "type": 3,
  2651. "api": "./drpy_libs/drpy2.min.js",
  2652. "searchable": 1,
  2653. "quickSearch": 1,
  2654. "filterable": 1,
  2655. "order_num": 0,
  2656. "ext": "./drpy_js/热片网.js"
  2657. },
  2658. {
  2659. "key": "hipy_js_人人影视",
  2660. "name": "人人影视(drpy_t3)",
  2661. "type": 3,
  2662. "api": "./drpy_libs/drpy2.min.js",
  2663. "searchable": 1,
  2664. "quickSearch": 1,
  2665. "filterable": 1,
  2666. "order_num": 0,
  2667. "ext": "./drpy_js/人人影视.js"
  2668. },
  2669. {
  2670. "key": "hipy_js_如意影视",
  2671. "name": "如意影视(drpy_t3)",
  2672. "type": 3,
  2673. "api": "./drpy_libs/drpy2.min.js",
  2674. "searchable": 1,
  2675. "quickSearch": 1,
  2676. "filterable": 1,
  2677. "order_num": 0,
  2678. "ext": "./drpy_js/如意影视.js"
  2679. },
  2680. {
  2681. "key": "hipy_js_三集电影[自动]",
  2682. "name": "三集电影[自动](drpy_t3)",
  2683. "type": 3,
  2684. "api": "./drpy_libs/drpy2.min.js",
  2685. "searchable": 1,
  2686. "quickSearch": 1,
  2687. "filterable": 1,
  2688. "order_num": 0,
  2689. "ext": "./drpy_js/三集电影[自动].js"
  2690. },
  2691. {
  2692. "key": "hipy_js_色库[密]",
  2693. "name": "色库[密](drpy_t3)",
  2694. "type": 3,
  2695. "api": "./drpy_libs/drpy2.min.js",
  2696. "searchable": 1,
  2697. "quickSearch": 1,
  2698. "filterable": 1,
  2699. "order_num": 0,
  2700. "ext": "./drpy_js/色库[密].js"
  2701. },
  2702. {
  2703. "key": "hipy_js_闪雷电",
  2704. "name": "闪雷电(drpy_t3)",
  2705. "type": 3,
  2706. "api": "./drpy_libs/drpy2.min.js",
  2707. "searchable": 1,
  2708. "quickSearch": 1,
  2709. "filterable": 1,
  2710. "order_num": 0,
  2711. "ext": "./drpy_js/闪雷电.js"
  2712. },
  2713. {
  2714. "key": "hipy_js_烧火影视[优]",
  2715. "name": "烧火影视[优](drpy_t3)",
  2716. "type": 3,
  2717. "api": "./drpy_libs/drpy2.min.js",
  2718. "searchable": 1,
  2719. "quickSearch": 1,
  2720. "filterable": 1,
  2721. "order_num": 0,
  2722. "ext": "./drpy_js/烧火影视[优].js"
  2723. },
  2724. {
  2725. "key": "hipy_js_神马电影[搜]",
  2726. "name": "神马电影[搜](drpy_t3)",
  2727. "type": 3,
  2728. "api": "./drpy_libs/drpy2.min.js",
  2729. "searchable": 1,
  2730. "quickSearch": 1,
  2731. "filterable": 1,
  2732. "order_num": 0,
  2733. "ext": "./drpy_js/神马电影[搜].js"
  2734. },
  2735. {
  2736. "key": "hipy_js_神马影院[自动]",
  2737. "name": "神马影院[自动](drpy_t3)",
  2738. "type": 3,
  2739. "api": "./drpy_libs/drpy2.min.js",
  2740. "searchable": 1,
  2741. "quickSearch": 1,
  2742. "filterable": 1,
  2743. "order_num": 0,
  2744. "ext": "./drpy_js/神马影院[自动].js"
  2745. },
  2746. {
  2747. "key": "hipy_js_神仙影视",
  2748. "name": "神仙影视(drpy_t3)",
  2749. "type": 3,
  2750. "api": "./drpy_libs/drpy2.min.js",
  2751. "searchable": 1,
  2752. "quickSearch": 1,
  2753. "filterable": 1,
  2754. "order_num": 0,
  2755. "ext": "./drpy_js/神仙影视.js"
  2756. },
  2757. {
  2758. "key": "hipy_js_时光影院",
  2759. "name": "时光影院(drpy_t3)",
  2760. "type": 3,
  2761. "api": "./drpy_libs/drpy2.min.js",
  2762. "searchable": 1,
  2763. "quickSearch": 1,
  2764. "filterable": 1,
  2765. "order_num": 0,
  2766. "ext": "./drpy_js/时光影院.js"
  2767. },
  2768. {
  2769. "key": "hipy_js_世纪DJ音乐网[听]",
  2770. "name": "世纪DJ音乐网[听](drpy_t3)",
  2771. "type": 3,
  2772. "api": "./drpy_libs/drpy2.min.js",
  2773. "searchable": 1,
  2774. "quickSearch": 1,
  2775. "filterable": 1,
  2776. "order_num": 0,
  2777. "ext": "./drpy_js/世纪DJ音乐网[听].js"
  2778. },
  2779. {
  2780. "key": "hipy_js_首发网",
  2781. "name": "首发网(drpy_t3)",
  2782. "type": 3,
  2783. "api": "./drpy_libs/drpy2.min.js",
  2784. "searchable": 1,
  2785. "quickSearch": 1,
  2786. "filterable": 1,
  2787. "order_num": 0,
  2788. "ext": "./drpy_js/首发网.js"
  2789. },
  2790. {
  2791. "key": "hipy_js_刷剧网",
  2792. "name": "刷剧网(drpy_t3)",
  2793. "type": 3,
  2794. "api": "./drpy_libs/drpy2.min.js",
  2795. "searchable": 1,
  2796. "quickSearch": 1,
  2797. "filterable": 1,
  2798. "order_num": 0,
  2799. "ext": "./drpy_js/刷剧网.js"
  2800. },
  2801. {
  2802. "key": "hipy_js_思古影视[V2]",
  2803. "name": "思古影视[V2](drpy_t3)",
  2804. "type": 3,
  2805. "api": "./drpy_libs/drpy2.min.js",
  2806. "searchable": 1,
  2807. "quickSearch": 1,
  2808. "filterable": 1,
  2809. "order_num": 0,
  2810. "ext": "./drpy_js/思古影视[V2].js"
  2811. },
  2812. {
  2813. "key": "hipy_js_素白白[优]",
  2814. "name": "素白白[优](drpy_t3)",
  2815. "type": 3,
  2816. "api": "./drpy_libs/drpy2.min.js",
  2817. "searchable": 1,
  2818. "quickSearch": 1,
  2819. "filterable": 1,
  2820. "order_num": 0,
  2821. "ext": "./drpy_js/素白白[优].js"
  2822. },
  2823. {
  2824. "key": "hipy_js_速播小屋",
  2825. "name": "速播小屋(drpy_t3)",
  2826. "type": 3,
  2827. "api": "./drpy_libs/drpy2.min.js",
  2828. "searchable": 1,
  2829. "quickSearch": 1,
  2830. "filterable": 1,
  2831. "order_num": 0,
  2832. "ext": "./drpy_js/速播小屋.js"
  2833. },
  2834. {
  2835. "key": "hipy_js_速讯影院",
  2836. "name": "速讯影院(drpy_t3)",
  2837. "type": 3,
  2838. "api": "./drpy_libs/drpy2.min.js",
  2839. "searchable": 1,
  2840. "quickSearch": 1,
  2841. "filterable": 1,
  2842. "order_num": 0,
  2843. "ext": "./drpy_js/速讯影院.js"
  2844. },
  2845. {
  2846. "key": "hipy_js_索尼资源[资]",
  2847. "name": "索尼资源[资](drpy_t3)",
  2848. "type": 3,
  2849. "api": "./drpy_libs/drpy2.min.js",
  2850. "searchable": 1,
  2851. "quickSearch": 1,
  2852. "filterable": 1,
  2853. "order_num": 0,
  2854. "ext": "./drpy_js/索尼资源[资].js"
  2855. },
  2856. {
  2857. "key": "hipy_js_桃子影视[优]",
  2858. "name": "桃子影视[优](drpy_t3)",
  2859. "type": 3,
  2860. "api": "./drpy_libs/drpy2.min.js",
  2861. "searchable": 1,
  2862. "quickSearch": 1,
  2863. "filterable": 1,
  2864. "order_num": 0,
  2865. "ext": "./drpy_js/桃子影视[优].js"
  2866. },
  2867. {
  2868. "key": "hipy_js_天龙影院",
  2869. "name": "天龙影院(drpy_t3)",
  2870. "type": 3,
  2871. "api": "./drpy_libs/drpy2.min.js",
  2872. "searchable": 1,
  2873. "quickSearch": 1,
  2874. "filterable": 1,
  2875. "order_num": 0,
  2876. "ext": "./drpy_js/天龙影院.js"
  2877. },
  2878. {
  2879. "key": "hipy_js_天启",
  2880. "name": "天启(drpy_t3)",
  2881. "type": 3,
  2882. "api": "./drpy_libs/drpy2.min.js",
  2883. "searchable": 1,
  2884. "quickSearch": 1,
  2885. "filterable": 1,
  2886. "order_num": 0,
  2887. "ext": "./drpy_js/天启.js"
  2888. },
  2889. {
  2890. "key": "hipy_js_天天影视",
  2891. "name": "天天影视(drpy_t3)",
  2892. "type": 3,
  2893. "api": "./drpy_libs/drpy2.min.js",
  2894. "searchable": 1,
  2895. "quickSearch": 1,
  2896. "filterable": 1,
  2897. "order_num": 0,
  2898. "ext": "./drpy_js/天天影视.js"
  2899. },
  2900. {
  2901. "key": "hipy_js_童趣[儿]",
  2902. "name": "童趣[儿](drpy_t3)",
  2903. "type": 3,
  2904. "api": "./drpy_libs/drpy2.min.js",
  2905. "searchable": 1,
  2906. "quickSearch": 1,
  2907. "filterable": 1,
  2908. "order_num": 0,
  2909. "ext": "./drpy_js/童趣[儿].js"
  2910. },
  2911. {
  2912. "key": "hipy_js_兔小贝[儿]",
  2913. "name": "兔小贝[儿](drpy_t3)",
  2914. "type": 3,
  2915. "api": "./drpy_libs/drpy2.min.js",
  2916. "searchable": 1,
  2917. "quickSearch": 1,
  2918. "filterable": 1,
  2919. "order_num": 0,
  2920. "ext": "./drpy_js/兔小贝[儿].js"
  2921. },
  2922. {
  2923. "key": "push_agent",
  2924. "name": "推送",
  2925. "type": 3,
  2926. "api": "csp_Push",
  2927. "changeable": 0,
  2928. "timeout": 30,
  2929. "ext": "./json/tokenm.json",
  2930. "order_num": 9999
  2931. },
  2932. {
  2933. "key": "yydsys",
  2934. "name": "玩你老哥|网盘",
  2935. "type": 3,
  2936. "api": "csp_Wobg",
  2937. "quickSearch": 1,
  2938. "changeable": 1,
  2939. "filterable": 1,
  2940. "timeout": 60,
  2941. "ext": "./json/tokenm.json$$$https://tv.yydsys.top/$$$proxy$$$1$$$./json/wogg.json",
  2942. "order_num": 9999
  2943. },
  2944. {
  2945. "key": "Wo4k",
  2946. "name": "玩偶4K|磁力",
  2947. "type": 3,
  2948. "api": "csp_Wo4k",
  2949. "quickSearch": 1,
  2950. "changeable": 1,
  2951. "filterable": 1,
  2952. "timeout": 60,
  2953. "ext": "./json/tokenm.json$$$https://www.wo4k.net/$$$proxy$$$1$$$./json/wogg.json",
  2954. "order_num": 9999
  2955. },
  2956. {
  2957. "key": "Wobg",
  2958. "name": "玩偶表哥|网盘",
  2959. "type": 3,
  2960. "api": "csp_Wobg",
  2961. "quickSearch": 1,
  2962. "changeable": 1,
  2963. "filterable": 1,
  2964. "timeout": 60,
  2965. "ext": "./json/tokenm.json$$$https://wobge.run.goorm.io$$$proxy$$$1$$$./json/wogg.json",
  2966. "order_num": 9999
  2967. },
  2968. {
  2969. "key": "hipy_js_玩偶哥哥[盘]",
  2970. "name": "玩偶哥哥[盘](drpy_t3)",
  2971. "type": 3,
  2972. "api": "./drpy_libs/drpy2.min.js",
  2973. "searchable": 1,
  2974. "quickSearch": 1,
  2975. "filterable": 1,
  2976. "order_num": 0,
  2977. "ext": "./drpy_js/玩偶哥哥[盘].js"
  2978. },
  2979. {
  2980. "key": "Wogg",
  2981. "name": "玩偶哥哥|网盘",
  2982. "type": 3,
  2983. "api": "csp_Wogg",
  2984. "quickSearch": 1,
  2985. "changeable": 1,
  2986. "filterable": 1,
  2987. "timeout": 60,
  2988. "ext": "./json/tokenm.json$$$https://wogg.link/$$$proxy$$$1$$$./json/wogg.json",
  2989. "order_num": 9999
  2990. },
  2991. {
  2992. "key": "hipy_js_网飞.TV",
  2993. "name": "网飞.TV(drpy_t3)",
  2994. "type": 3,
  2995. "api": "./drpy_libs/drpy2.min.js",
  2996. "searchable": 1,
  2997. "quickSearch": 1,
  2998. "filterable": 1,
  2999. "order_num": 0,
  3000. "ext": "./drpy_js/网飞.TV.js"
  3001. },
  3002. {
  3003. "key": "hipy_js_网飞啦[自动]",
  3004. "name": "网飞啦[自动](drpy_t3)",
  3005. "type": 3,
  3006. "api": "./drpy_libs/drpy2.min.js",
  3007. "searchable": 1,
  3008. "quickSearch": 1,
  3009. "filterable": 1,
  3010. "order_num": 0,
  3011. "ext": "./drpy_js/网飞啦[自动].js"
  3012. },
  3013. {
  3014. "key": "hipy_js_网飞猫[优]",
  3015. "name": "网飞猫[优](drpy_t3)",
  3016. "type": 3,
  3017. "api": "./drpy_libs/drpy2.min.js",
  3018. "searchable": 1,
  3019. "quickSearch": 1,
  3020. "filterable": 1,
  3021. "order_num": 0,
  3022. "ext": "./drpy_js/网飞猫[优].js"
  3023. },
  3024. {
  3025. "key": "网盘配置",
  3026. "name": "网盘及彈幕配置",
  3027. "type": 3,
  3028. "api": "csp_Config",
  3029. "searchable": 0,
  3030. "changeable": 0,
  3031. "ext": "./json/tokenm.json",
  3032. "order_num": 9999
  3033. },
  3034. {
  3035. "key": "hipy_js_往往影视[慢]",
  3036. "name": "往往影视[慢](drpy_t3)",
  3037. "type": 3,
  3038. "api": "./drpy_libs/drpy2.min.js",
  3039. "searchable": 1,
  3040. "quickSearch": 1,
  3041. "filterable": 1,
  3042. "order_num": 0,
  3043. "ext": "./drpy_js/往往影视[慢].js"
  3044. },
  3045. {
  3046. "key": "hipy_js_旺旺影视",
  3047. "name": "旺旺影视(drpy_t3)",
  3048. "type": 3,
  3049. "api": "./drpy_libs/drpy2.min.js",
  3050. "searchable": 1,
  3051. "quickSearch": 1,
  3052. "filterable": 1,
  3053. "order_num": 0,
  3054. "ext": "./drpy_js/旺旺影视.js"
  3055. },
  3056. {
  3057. "key": "hipy_js_维奇动漫[漫]",
  3058. "name": "维奇动漫[漫](drpy_t3)",
  3059. "type": 3,
  3060. "api": "./drpy_libs/drpy2.min.js",
  3061. "searchable": 1,
  3062. "quickSearch": 1,
  3063. "filterable": 1,
  3064. "order_num": 0,
  3065. "ext": "./drpy_js/维奇动漫[漫].js"
  3066. },
  3067. {
  3068. "key": "hipy_js_文才[资]",
  3069. "name": "文才[资](drpy_t3)",
  3070. "type": 3,
  3071. "api": "./drpy_libs/drpy2.min.js",
  3072. "searchable": 1,
  3073. "quickSearch": 1,
  3074. "filterable": 1,
  3075. "order_num": 0,
  3076. "ext": "./drpy_js/文才[资].js"
  3077. },
  3078. {
  3079. "key": "hipy_js_文才2[资]",
  3080. "name": "文才2[资](drpy_t3)",
  3081. "type": 3,
  3082. "api": "./drpy_libs/drpy2.min.js",
  3083. "searchable": 1,
  3084. "quickSearch": 1,
  3085. "filterable": 1,
  3086. "order_num": 0,
  3087. "ext": "./drpy_js/文才2[资].js"
  3088. },
  3089. {
  3090. "key": "hipy_js_我爱跟剧",
  3091. "name": "我爱跟剧(drpy_t3)",
  3092. "type": 3,
  3093. "api": "./drpy_libs/drpy2.min.js",
  3094. "searchable": 1,
  3095. "quickSearch": 1,
  3096. "filterable": 1,
  3097. "order_num": 0,
  3098. "ext": "./drpy_js/我爱跟剧.js"
  3099. },
  3100. {
  3101. "key": "hipy_js_我播",
  3102. "name": "我播(drpy_t3)",
  3103. "type": 3,
  3104. "api": "./drpy_libs/drpy2.min.js",
  3105. "searchable": 1,
  3106. "quickSearch": 1,
  3107. "filterable": 1,
  3108. "order_num": 0,
  3109. "ext": "./drpy_js/我播.js"
  3110. },
  3111. {
  3112. "key": "PushShare",
  3113. "name": "我的资源分享",
  3114. "type": 3,
  3115. "api": "csp_PushShare",
  3116. "searchable": 1,
  3117. "quickSearch": 1,
  3118. "changeable": 1,
  3119. "filterable": 0,
  3120. "timeout": 60,
  3121. "ext": "./json/tokenm.json$$$./json/pushshare.txt$$$db$$$1",
  3122. "style": {
  3123. "type": "list",
  3124. "ratio": 1.1
  3125. },
  3126. "order_num": 9999
  3127. },
  3128. {
  3129. "key": "hipy_js_我看书斋[书]",
  3130. "name": "我看书斋[书](drpy_t3)",
  3131. "type": 3,
  3132. "api": "./drpy_libs/drpy2.min.js",
  3133. "searchable": 1,
  3134. "quickSearch": 1,
  3135. "filterable": 1,
  3136. "order_num": 0,
  3137. "ext": "./drpy_js/我看书斋[书].js"
  3138. },
  3139. {
  3140. "key": "hipy_js_卧龙资源[资]",
  3141. "name": "卧龙资源[资](drpy_t3)",
  3142. "type": 3,
  3143. "api": "./drpy_libs/drpy2.min.js",
  3144. "searchable": 1,
  3145. "quickSearch": 1,
  3146. "filterable": 1,
  3147. "order_num": 0,
  3148. "ext": "./drpy_js/卧龙资源[资].js"
  3149. },
  3150. {
  3151. "key": "hipy_js_无忧影视",
  3152. "name": "无忧影视(drpy_t3)",
  3153. "type": 3,
  3154. "api": "./drpy_libs/drpy2.min.js",
  3155. "searchable": 1,
  3156. "quickSearch": 1,
  3157. "filterable": 1,
  3158. "order_num": 0,
  3159. "ext": "./drpy_js/无忧影视.js"
  3160. },
  3161. {
  3162. "key": "hipy_js_夕云影视",
  3163. "name": "夕云影视(drpy_t3)",
  3164. "type": 3,
  3165. "api": "./drpy_libs/drpy2.min.js",
  3166. "searchable": 1,
  3167. "quickSearch": 1,
  3168. "filterable": 1,
  3169. "order_num": 0,
  3170. "ext": "./drpy_js/夕云影视.js"
  3171. },
  3172. {
  3173. "key": "hipy_js_西瓜影院",
  3174. "name": "西瓜影院(drpy_t3)",
  3175. "type": 3,
  3176. "api": "./drpy_libs/drpy2.min.js",
  3177. "searchable": 1,
  3178. "quickSearch": 1,
  3179. "filterable": 1,
  3180. "order_num": 0,
  3181. "ext": "./drpy_js/西瓜影院.js"
  3182. },
  3183. {
  3184. "key": "hipy_js_西屋影视",
  3185. "name": "西屋影视(drpy_t3)",
  3186. "type": 3,
  3187. "api": "./drpy_libs/drpy2.min.js",
  3188. "searchable": 1,
  3189. "quickSearch": 1,
  3190. "filterable": 1,
  3191. "order_num": 0,
  3192. "ext": "./drpy_js/西屋影视.js"
  3193. },
  3194. {
  3195. "key": "hipy_js_蜥蜴影视[优]",
  3196. "name": "蜥蜴影视[优](drpy_t3)",
  3197. "type": 3,
  3198. "api": "./drpy_libs/drpy2.min.js",
  3199. "searchable": 1,
  3200. "quickSearch": 1,
  3201. "filterable": 1,
  3202. "order_num": 0,
  3203. "ext": "./drpy_js/蜥蜴影视[优].js"
  3204. },
  3205. {
  3206. "key": "hipy_js_喜马拉雅[听]",
  3207. "name": "喜马拉雅[听](drpy_t3)",
  3208. "type": 3,
  3209. "api": "./drpy_libs/drpy2.min.js",
  3210. "searchable": 1,
  3211. "quickSearch": 1,
  3212. "filterable": 1,
  3213. "order_num": 0,
  3214. "ext": "./drpy_js/喜马拉雅[听].js"
  3215. },
  3216. {
  3217. "key": "hipy_js_虾酱追剧",
  3218. "name": "虾酱追剧(drpy_t3)",
  3219. "type": 3,
  3220. "api": "./drpy_libs/drpy2.min.js",
  3221. "searchable": 1,
  3222. "quickSearch": 1,
  3223. "filterable": 1,
  3224. "order_num": 0,
  3225. "ext": "./drpy_js/虾酱追剧.js"
  3226. },
  3227. {
  3228. "key": "hipy_js_侠客影视",
  3229. "name": "侠客影视(drpy_t3)",
  3230. "type": 3,
  3231. "api": "./drpy_libs/drpy2.min.js",
  3232. "searchable": 1,
  3233. "quickSearch": 1,
  3234. "filterable": 1,
  3235. "order_num": 0,
  3236. "ext": "./drpy_js/侠客影视.js"
  3237. },
  3238. {
  3239. "key": "hipy_js_相声随身听[听]",
  3240. "name": "相声随身听[听](drpy_t3)",
  3241. "type": 3,
  3242. "api": "./drpy_libs/drpy2.min.js",
  3243. "searchable": 1,
  3244. "quickSearch": 1,
  3245. "filterable": 1,
  3246. "order_num": 0,
  3247. "ext": "./drpy_js/相声随身听[听].js"
  3248. },
  3249. {
  3250. "key": "hipy_js_想看影院",
  3251. "name": "想看影院(drpy_t3)",
  3252. "type": 3,
  3253. "api": "./drpy_libs/drpy2.min.js",
  3254. "searchable": 1,
  3255. "quickSearch": 1,
  3256. "filterable": 1,
  3257. "order_num": 0,
  3258. "ext": "./drpy_js/想看影院.js"
  3259. },
  3260. {
  3261. "key": "hipy_js_小白菜电影",
  3262. "name": "小白菜电影(drpy_t3)",
  3263. "type": 3,
  3264. "api": "./drpy_libs/drpy2.min.js",
  3265. "searchable": 1,
  3266. "quickSearch": 1,
  3267. "filterable": 1,
  3268. "order_num": 0,
  3269. "ext": "./drpy_js/小白菜电影.js"
  3270. },
  3271. {
  3272. "key": "hipy_js_小宝影院",
  3273. "name": "小宝影院(drpy_t3)",
  3274. "type": 3,
  3275. "api": "./drpy_libs/drpy2.min.js",
  3276. "searchable": 1,
  3277. "quickSearch": 1,
  3278. "filterable": 1,
  3279. "order_num": 0,
  3280. "ext": "./drpy_js/小宝影院.js"
  3281. },
  3282. {
  3283. "key": "hipy_js_小马影视[V2]",
  3284. "name": "小马影视[V2](drpy_t3)",
  3285. "type": 3,
  3286. "api": "./drpy_libs/drpy2.min.js",
  3287. "searchable": 1,
  3288. "quickSearch": 1,
  3289. "filterable": 1,
  3290. "order_num": 0,
  3291. "ext": "./drpy_js/小马影视[V2].js"
  3292. },
  3293. {
  3294. "key": "hipy_js_小女18[密]",
  3295. "name": "小女18[密](drpy_t3)",
  3296. "type": 3,
  3297. "api": "./drpy_libs/drpy2.min.js",
  3298. "searchable": 1,
  3299. "quickSearch": 1,
  3300. "filterable": 1,
  3301. "order_num": 0,
  3302. "ext": "./drpy_js/小女18[密].js"
  3303. },
  3304. {
  3305. "key": "hipy_js_小鱼影视",
  3306. "name": "小鱼影视(drpy_t3)",
  3307. "type": 3,
  3308. "api": "./drpy_libs/drpy2.min.js",
  3309. "searchable": 1,
  3310. "quickSearch": 1,
  3311. "filterable": 1,
  3312. "order_num": 0,
  3313. "ext": "./drpy_js/小鱼影视.js"
  3314. },
  3315. {
  3316. "key": "YunSo",
  3317. "name": "小云搜索|网盘搜索",
  3318. "type": 3,
  3319. "api": "csp_YunSo",
  3320. "quickSearch": 1,
  3321. "changeable": 1,
  3322. "filterable": 1,
  3323. "timeout": 60,
  3324. "ext": "./json/tokenm.json$$$https://www.yunso.net$$$None$$$1",
  3325. "style": {
  3326. "type": "list",
  3327. "ratio": 1.1
  3328. },
  3329. "order_num": 9999
  3330. },
  3331. {
  3332. "key": "hipy_js_小站盘[搜]",
  3333. "name": "小站盘[搜](drpy_t3)",
  3334. "type": 3,
  3335. "api": "./drpy_libs/drpy2.min.js",
  3336. "searchable": 1,
  3337. "quickSearch": 1,
  3338. "filterable": 1,
  3339. "order_num": 0,
  3340. "ext": "./drpy_js/小站盘[搜].js"
  3341. },
  3342. {
  3343. "key": "校长影视",
  3344. "name": "校长影视|网盘",
  3345. "type": 3,
  3346. "api": "csp_XiaoZhang",
  3347. "quickSearch": 1,
  3348. "changeable": 1,
  3349. "filterable": 1,
  3350. "timeout": 60,
  3351. "ext": "./json/tokenm.json$$$https://xzyshd.com$$$proxy$$$1",
  3352. "order_num": 9999
  3353. },
  3354. {
  3355. "key": "hipy_js_新茶杯狐",
  3356. "name": "新茶杯狐(drpy_t3)",
  3357. "type": 3,
  3358. "api": "./drpy_libs/drpy2.min.js",
  3359. "searchable": 1,
  3360. "quickSearch": 1,
  3361. "filterable": 1,
  3362. "order_num": 0,
  3363. "ext": "./drpy_js/新茶杯狐.js"
  3364. },
  3365. {
  3366. "key": "hipy_js_新视觉",
  3367. "name": "新视觉(drpy_t3)",
  3368. "type": 3,
  3369. "api": "./drpy_libs/drpy2.min.js",
  3370. "searchable": 1,
  3371. "quickSearch": 1,
  3372. "filterable": 1,
  3373. "order_num": 0,
  3374. "ext": "./drpy_js/新视觉.js"
  3375. },
  3376. {
  3377. "key": "Xinshijue",
  3378. "name": "新视觉|网盘",
  3379. "type": 3,
  3380. "api": "csp_Xinshijue",
  3381. "quickSearch": 1,
  3382. "changeable": 1,
  3383. "filterable": 1,
  3384. "timeout": 60,
  3385. "ext": "./json/tokenm.json$$$https://www.80yy3.com/$$$proxy$$$1$$$./json/wogg.json",
  3386. "order_num": 9999
  3387. },
  3388. {
  3389. "key": "hipy_js_星辰[优]",
  3390. "name": "星辰[优](drpy_t3)",
  3391. "type": 3,
  3392. "api": "./drpy_libs/drpy2.min.js",
  3393. "searchable": 1,
  3394. "quickSearch": 1,
  3395. "filterable": 1,
  3396. "order_num": 0,
  3397. "ext": "./drpy_js/星辰[优].js"
  3398. },
  3399. {
  3400. "key": "hipy_js_星辰影视",
  3401. "name": "星辰影视(drpy_t3)",
  3402. "type": 3,
  3403. "api": "./drpy_libs/drpy2.min.js",
  3404. "searchable": 1,
  3405. "quickSearch": 1,
  3406. "filterable": 1,
  3407. "order_num": 0,
  3408. "ext": "./drpy_js/星辰影视.js"
  3409. },
  3410. {
  3411. "key": "hipy_js_星辰CT",
  3412. "name": "星辰CT(drpy_t3)",
  3413. "type": 3,
  3414. "api": "./drpy_libs/drpy2.min.js",
  3415. "searchable": 1,
  3416. "quickSearch": 1,
  3417. "filterable": 1,
  3418. "order_num": 0,
  3419. "ext": "./drpy_js/星辰CT.js"
  3420. },
  3421. {
  3422. "key": "hipy_js_星空影院",
  3423. "name": "星空影院(drpy_t3)",
  3424. "type": 3,
  3425. "api": "./drpy_libs/drpy2.min.js",
  3426. "searchable": 1,
  3427. "quickSearch": 1,
  3428. "filterable": 1,
  3429. "order_num": 0,
  3430. "ext": "./drpy_js/星空影院.js"
  3431. },
  3432. {
  3433. "key": "hipy_js_星芽短剧[优]",
  3434. "name": "星芽短剧[优](drpy_t3)",
  3435. "type": 3,
  3436. "api": "./drpy_libs/drpy2.min.js",
  3437. "searchable": 1,
  3438. "quickSearch": 1,
  3439. "filterable": 1,
  3440. "order_num": 0,
  3441. "ext": "./drpy_js/星芽短剧[优].js"
  3442. },
  3443. {
  3444. "key": "hipy_js_星云影视",
  3445. "name": "星云影视(drpy_t3)",
  3446. "type": 3,
  3447. "api": "./drpy_libs/drpy2.min.js",
  3448. "searchable": 1,
  3449. "quickSearch": 1,
  3450. "filterable": 1,
  3451. "order_num": 0,
  3452. "ext": "./drpy_js/星云影视.js"
  3453. },
  3454. {
  3455. "key": "hipy_js_兄弟影视[优]",
  3456. "name": "兄弟影视[优](drpy_t3)",
  3457. "type": 3,
  3458. "api": "./drpy_libs/drpy2.min.js",
  3459. "searchable": 1,
  3460. "quickSearch": 1,
  3461. "filterable": 1,
  3462. "order_num": 0,
  3463. "ext": "./drpy_js/兄弟影视[优].js"
  3464. },
  3465. {
  3466. "key": "hipy_js_旋风视频",
  3467. "name": "旋风视频(drpy_t3)",
  3468. "type": 3,
  3469. "api": "./drpy_libs/drpy2.min.js",
  3470. "searchable": 1,
  3471. "quickSearch": 1,
  3472. "filterable": 1,
  3473. "order_num": 0,
  3474. "ext": "./drpy_js/旋风视频.js"
  3475. },
  3476. {
  3477. "key": "ThunderShare",
  3478. "name": "迅雷云盘分享",
  3479. "type": 3,
  3480. "api": "csp_ThunderShare",
  3481. "searchable": 0,
  3482. "quickSearch": 0,
  3483. "changeable": 0,
  3484. "filterable": 0,
  3485. "timeout": 60,
  3486. "ext": "./json/tokenm.json$$$./json/thundershare.txt",
  3487. "style": {
  3488. "type": "list",
  3489. "ratio": 1.1
  3490. },
  3491. "order_num": 9999
  3492. },
  3493. {
  3494. "key": "hipy_js_丫丫电子书[书]",
  3495. "name": "丫丫电子书[书](drpy_t3)",
  3496. "type": 3,
  3497. "api": "./drpy_libs/drpy2.min.js",
  3498. "searchable": 1,
  3499. "quickSearch": 1,
  3500. "filterable": 1,
  3501. "order_num": 0,
  3502. "ext": "./drpy_js/丫丫电子书[书].js"
  3503. },
  3504. {
  3505. "key": "hipy_js_鸭飞影视[V2]",
  3506. "name": "鸭飞影视[V2](drpy_t3)",
  3507. "type": 3,
  3508. "api": "./drpy_libs/drpy2.min.js",
  3509. "searchable": 1,
  3510. "quickSearch": 1,
  3511. "filterable": 1,
  3512. "order_num": 0,
  3513. "ext": "./drpy_js/鸭飞影视[V2].js"
  3514. },
  3515. {
  3516. "key": "hipy_js_鸭奈飞影视",
  3517. "name": "鸭奈飞影视(drpy_t3)",
  3518. "type": 3,
  3519. "api": "./drpy_libs/drpy2.min.js",
  3520. "searchable": 1,
  3521. "quickSearch": 1,
  3522. "filterable": 1,
  3523. "order_num": 0,
  3524. "ext": "./drpy_js/鸭奈飞影视.js"
  3525. },
  3526. {
  3527. "key": "hipy_js_一点视频[密]",
  3528. "name": "一点视频[密](drpy_t3)",
  3529. "type": 3,
  3530. "api": "./drpy_libs/drpy2.min.js",
  3531. "searchable": 1,
  3532. "quickSearch": 1,
  3533. "filterable": 1,
  3534. "order_num": 0,
  3535. "ext": "./drpy_js/一点视频[密].js"
  3536. },
  3537. {
  3538. "key": "hipy_js_一号影院[搜]",
  3539. "name": "一号影院[搜](drpy_t3)",
  3540. "type": 3,
  3541. "api": "./drpy_libs/drpy2.min.js",
  3542. "searchable": 1,
  3543. "quickSearch": 1,
  3544. "filterable": 1,
  3545. "order_num": 0,
  3546. "ext": "./drpy_js/一号影院[搜].js"
  3547. },
  3548. {
  3549. "key": "hipy_js_一家视频网",
  3550. "name": "一家视频网(drpy_t3)",
  3551. "type": 3,
  3552. "api": "./drpy_libs/drpy2.min.js",
  3553. "searchable": 1,
  3554. "quickSearch": 1,
  3555. "filterable": 1,
  3556. "order_num": 0,
  3557. "ext": "./drpy_js/一家视频网.js"
  3558. },
  3559. {
  3560. "key": "hipy_js_一起看",
  3561. "name": "一起看(drpy_t3)",
  3562. "type": 3,
  3563. "api": "./drpy_libs/drpy2.min.js",
  3564. "searchable": 1,
  3565. "quickSearch": 1,
  3566. "filterable": 1,
  3567. "order_num": 0,
  3568. "ext": "./drpy_js/一起看.js"
  3569. },
  3570. {
  3571. "key": "hipy_js_一起看[优]",
  3572. "name": "一起看[优](drpy_t3)",
  3573. "type": 3,
  3574. "api": "./drpy_libs/drpy2.min.js",
  3575. "searchable": 1,
  3576. "quickSearch": 1,
  3577. "filterable": 1,
  3578. "order_num": 0,
  3579. "ext": "./drpy_js/一起看[优].js"
  3580. },
  3581. {
  3582. "key": "hipy_js_一曲肝肠断",
  3583. "name": "一曲肝肠断(drpy_t3)",
  3584. "type": 3,
  3585. "api": "./drpy_libs/drpy2.min.js",
  3586. "searchable": 1,
  3587. "quickSearch": 1,
  3588. "filterable": 1,
  3589. "order_num": 0,
  3590. "ext": "./drpy_js/一曲肝肠断.js"
  3591. },
  3592. {
  3593. "key": "hipy_js_一支穿云箭",
  3594. "name": "一支穿云箭(drpy_t3)",
  3595. "type": 3,
  3596. "api": "./drpy_libs/drpy2.min.js",
  3597. "searchable": 1,
  3598. "quickSearch": 1,
  3599. "filterable": 1,
  3600. "order_num": 0,
  3601. "ext": "./drpy_js/一支穿云箭.js"
  3602. },
  3603. {
  3604. "key": "hipy_js_怡萱动漫[漫]",
  3605. "name": "怡萱动漫[漫](drpy_t3)",
  3606. "type": 3,
  3607. "api": "./drpy_libs/drpy2.min.js",
  3608. "searchable": 1,
  3609. "quickSearch": 1,
  3610. "filterable": 1,
  3611. "order_num": 0,
  3612. "ext": "./drpy_js/怡萱动漫[漫].js"
  3613. },
  3614. {
  3615. "key": "hipy_js_易点看影院[自动]",
  3616. "name": "易点看影院[自动](drpy_t3)",
  3617. "type": 3,
  3618. "api": "./drpy_libs/drpy2.min.js",
  3619. "searchable": 1,
  3620. "quickSearch": 1,
  3621. "filterable": 1,
  3622. "order_num": 0,
  3623. "ext": "./drpy_js/易点看影院[自动].js"
  3624. },
  3625. {
  3626. "key": "hipy_js_易看影视",
  3627. "name": "易看影视(drpy_t3)",
  3628. "type": 3,
  3629. "api": "./drpy_libs/drpy2.min.js",
  3630. "searchable": 1,
  3631. "quickSearch": 1,
  3632. "filterable": 1,
  3633. "order_num": 0,
  3634. "ext": "./drpy_js/易看影视.js"
  3635. },
  3636. {
  3637. "key": "hipy_js_易搜[搜]",
  3638. "name": "易搜[搜](drpy_t3)",
  3639. "type": 3,
  3640. "api": "./drpy_libs/drpy2.min.js",
  3641. "searchable": 1,
  3642. "quickSearch": 1,
  3643. "filterable": 1,
  3644. "order_num": 0,
  3645. "ext": "./drpy_js/易搜[搜].js"
  3646. },
  3647. {
  3648. "key": "Yinyuetai",
  3649. "name": "音悦台",
  3650. "type": 3,
  3651. "api": "csp_Yinyuetai",
  3652. "searchable": 1,
  3653. "changeable": 0,
  3654. "order_num": 9999
  3655. },
  3656. {
  3657. "key": "hipy_js_银河影视[V2]",
  3658. "name": "银河影视[V2](drpy_t3)",
  3659. "type": 3,
  3660. "api": "./drpy_libs/drpy2.min.js",
  3661. "searchable": 1,
  3662. "quickSearch": 1,
  3663. "filterable": 1,
  3664. "order_num": 0,
  3665. "ext": "./drpy_js/银河影视[V2].js"
  3666. },
  3667. {
  3668. "key": "hipy_js_樱花动漫[漫]",
  3669. "name": "樱花动漫[漫](drpy_t3)",
  3670. "type": 3,
  3671. "api": "./drpy_libs/drpy2.min.js",
  3672. "searchable": 1,
  3673. "quickSearch": 1,
  3674. "filterable": 1,
  3675. "order_num": 0,
  3676. "ext": "./drpy_js/樱花动漫[漫].js"
  3677. },
  3678. {
  3679. "key": "應用商店",
  3680. "name": "應用商店",
  3681. "type": 3,
  3682. "api": "csp_Market",
  3683. "searchable": 0,
  3684. "changeable": 0,
  3685. "ext": "https://fm.t4tv.hz.cz/json/market.json",
  3686. "order_num": 9999
  3687. },
  3688. {
  3689. "key": "Hdhive",
  3690. "name": "影巢|网盘",
  3691. "type": 3,
  3692. "api": "csp_Hdhive",
  3693. "quickSearch": 1,
  3694. "changeable": 1,
  3695. "filterable": 1,
  3696. "timeout": 60,
  3697. "ext": "./json/tokenm.json$$$proxy$$$1",
  3698. "order_num": 9999
  3699. },
  3700. {
  3701. "key": "hipy_js_影剧星球",
  3702. "name": "影剧星球(drpy_t3)",
  3703. "type": 3,
  3704. "api": "./drpy_libs/drpy2.min.js",
  3705. "searchable": 1,
  3706. "quickSearch": 1,
  3707. "filterable": 1,
  3708. "order_num": 0,
  3709. "ext": "./drpy_js/影剧星球.js"
  3710. },
  3711. {
  3712. "key": "hipy_js_影剧星球[自动]",
  3713. "name": "影剧星球[自动](drpy_t3)",
  3714. "type": 3,
  3715. "api": "./drpy_libs/drpy2.min.js",
  3716. "searchable": 1,
  3717. "quickSearch": 1,
  3718. "filterable": 1,
  3719. "order_num": 0,
  3720. "ext": "./drpy_js/影剧星球[自动].js"
  3721. },
  3722. {
  3723. "key": "hipy_js_影视大全",
  3724. "name": "影视大全(drpy_t3)",
  3725. "type": 3,
  3726. "api": "./drpy_libs/drpy2.min.js",
  3727. "searchable": 1,
  3728. "quickSearch": 1,
  3729. "filterable": 1,
  3730. "order_num": 0,
  3731. "ext": "./drpy_js/影视大全.js"
  3732. },
  3733. {
  3734. "key": "hipy_js_影视工厂",
  3735. "name": "影视工厂(drpy_t3)",
  3736. "type": 3,
  3737. "api": "./drpy_libs/drpy2.min.js",
  3738. "searchable": 1,
  3739. "quickSearch": 1,
  3740. "filterable": 1,
  3741. "order_num": 0,
  3742. "ext": "./drpy_js/影视工厂.js"
  3743. },
  3744. {
  3745. "key": "hipy_js_影视工场",
  3746. "name": "影视工场(drpy_t3)",
  3747. "type": 3,
  3748. "api": "./drpy_libs/drpy2.min.js",
  3749. "searchable": 1,
  3750. "quickSearch": 1,
  3751. "filterable": 1,
  3752. "order_num": 0,
  3753. "ext": "./drpy_js/影视工场.js"
  3754. },
  3755. {
  3756. "key": "hipy_js_影视看吧",
  3757. "name": "影视看吧(drpy_t3)",
  3758. "type": 3,
  3759. "api": "./drpy_libs/drpy2.min.js",
  3760. "searchable": 1,
  3761. "quickSearch": 1,
  3762. "filterable": 1,
  3763. "order_num": 0,
  3764. "ext": "./drpy_js/影视看吧.js"
  3765. },
  3766. {
  3767. "key": "hipy_js_影视控",
  3768. "name": "影视控(drpy_t3)",
  3769. "type": 3,
  3770. "api": "./drpy_libs/drpy2.min.js",
  3771. "searchable": 1,
  3772. "quickSearch": 1,
  3773. "filterable": 1,
  3774. "order_num": 0,
  3775. "ext": "./drpy_js/影视控.js"
  3776. },
  3777. {
  3778. "key": "hipy_js_影搜[搜]",
  3779. "name": "影搜[搜](drpy_t3)",
  3780. "type": 3,
  3781. "api": "./drpy_libs/drpy2.min.js",
  3782. "searchable": 1,
  3783. "quickSearch": 1,
  3784. "filterable": 1,
  3785. "order_num": 0,
  3786. "ext": "./drpy_js/影搜[搜].js"
  3787. },
  3788. {
  3789. "key": "YingSo",
  3790. "name": "影搜|网盘搜索",
  3791. "type": 3,
  3792. "api": "csp_YingSo",
  3793. "timeout": 60,
  3794. "ext": "./json/tokenm.json",
  3795. "order_num": 9999
  3796. },
  3797. {
  3798. "key": "hipy_js_影渣渣影视",
  3799. "name": "影渣渣影视(drpy_t3)",
  3800. "type": 3,
  3801. "api": "./drpy_libs/drpy2.min.js",
  3802. "searchable": 1,
  3803. "quickSearch": 1,
  3804. "filterable": 1,
  3805. "order_num": 0,
  3806. "ext": "./drpy_js/影渣渣影视.js"
  3807. },
  3808. {
  3809. "key": "hipy_js_映播TV",
  3810. "name": "映播TV(drpy_t3)",
  3811. "type": 3,
  3812. "api": "./drpy_libs/drpy2.min.js",
  3813. "searchable": 1,
  3814. "quickSearch": 1,
  3815. "filterable": 1,
  3816. "order_num": 0,
  3817. "ext": "./drpy_js/映播TV.js"
  3818. },
  3819. {
  3820. "key": "hipy_js_悠悠影视",
  3821. "name": "悠悠影视(drpy_t3)",
  3822. "type": 3,
  3823. "api": "./drpy_libs/drpy2.min.js",
  3824. "searchable": 1,
  3825. "quickSearch": 1,
  3826. "filterable": 1,
  3827. "order_num": 0,
  3828. "ext": "./drpy_js/悠悠影视.js"
  3829. },
  3830. {
  3831. "key": "hipy_js_游子视频",
  3832. "name": "游子视频(drpy_t3)",
  3833. "type": 3,
  3834. "api": "./drpy_libs/drpy2.min.js",
  3835. "searchable": 1,
  3836. "quickSearch": 1,
  3837. "filterable": 1,
  3838. "order_num": 0,
  3839. "ext": "./drpy_js/游子视频.js"
  3840. },
  3841. {
  3842. "key": "hipy_js_有声绘本网[听]",
  3843. "name": "有声绘本网[听](drpy_t3)",
  3844. "type": 3,
  3845. "api": "./drpy_libs/drpy2.min.js",
  3846. "searchable": 1,
  3847. "quickSearch": 1,
  3848. "filterable": 1,
  3849. "order_num": 0,
  3850. "ext": "./drpy_js/有声绘本网[听].js"
  3851. },
  3852. {
  3853. "key": "hipy_js_有声听书网[听]",
  3854. "name": "有声听书网[听](drpy_t3)",
  3855. "type": 3,
  3856. "api": "./drpy_libs/drpy2.min.js",
  3857. "searchable": 1,
  3858. "quickSearch": 1,
  3859. "filterable": 1,
  3860. "order_num": 0,
  3861. "ext": "./drpy_js/有声听书网[听].js"
  3862. },
  3863. {
  3864. "key": "hipy_js_有声小说吧[听]",
  3865. "name": "有声小说吧[听](drpy_t3)",
  3866. "type": 3,
  3867. "api": "./drpy_libs/drpy2.min.js",
  3868. "searchable": 1,
  3869. "quickSearch": 1,
  3870. "filterable": 1,
  3871. "order_num": 0,
  3872. "ext": "./drpy_js/有声小说吧[听].js"
  3873. },
  3874. {
  3875. "key": "hipy_js_宇航影视",
  3876. "name": "宇航影视(drpy_t3)",
  3877. "type": 3,
  3878. "api": "./drpy_libs/drpy2.min.js",
  3879. "searchable": 1,
  3880. "quickSearch": 1,
  3881. "filterable": 1,
  3882. "order_num": 0,
  3883. "ext": "./drpy_js/宇航影视.js"
  3884. },
  3885. {
  3886. "key": "hipy_js_云电影网",
  3887. "name": "云电影网(drpy_t3)",
  3888. "type": 3,
  3889. "api": "./drpy_libs/drpy2.min.js",
  3890. "searchable": 1,
  3891. "quickSearch": 1,
  3892. "filterable": 1,
  3893. "order_num": 0,
  3894. "ext": "./drpy_js/云电影网.js"
  3895. },
  3896. {
  3897. "key": "YunPan",
  3898. "name": "云盘资源|网盘",
  3899. "type": 3,
  3900. "api": "csp_YunPan",
  3901. "timeout": 60,
  3902. "ext": "./json/tokenm.json$$$None$$$proxy$$$1",
  3903. "order_num": 9999
  3904. },
  3905. {
  3906. "key": "hipy_js_云盘资源网[盘]",
  3907. "name": "云盘资源网[盘](drpy_t3)",
  3908. "type": 3,
  3909. "api": "./drpy_libs/drpy2.min.js",
  3910. "searchable": 1,
  3911. "quickSearch": 1,
  3912. "filterable": 1,
  3913. "order_num": 0,
  3914. "ext": "./drpy_js/云盘资源网[盘].js"
  3915. },
  3916. {
  3917. "key": "YunPanOne",
  3918. "name": "云盘One|网盘搜索",
  3919. "type": 3,
  3920. "api": "csp_YunPanOne",
  3921. "quickSearch": 1,
  3922. "changeable": 1,
  3923. "filterable": 1,
  3924. "timeout": 60,
  3925. "ext": "./json/tokenm.json$$$None$$$proxy$$$1",
  3926. "order_num": 9999
  3927. },
  3928. {
  3929. "key": "hipy_js_在线之家",
  3930. "name": "在线之家(drpy_t3)",
  3931. "type": 3,
  3932. "api": "./drpy_libs/drpy2.min.js",
  3933. "searchable": 1,
  3934. "quickSearch": 1,
  3935. "filterable": 1,
  3936. "order_num": 0,
  3937. "ext": "./drpy_js/在线之家.js"
  3938. },
  3939. {
  3940. "key": "hipy_js_掌心世界",
  3941. "name": "掌心世界(drpy_t3)",
  3942. "type": 3,
  3943. "api": "./drpy_libs/drpy2.min.js",
  3944. "searchable": 1,
  3945. "quickSearch": 1,
  3946. "filterable": 1,
  3947. "order_num": 0,
  3948. "ext": "./drpy_js/掌心世界.js"
  3949. },
  3950. {
  3951. "key": "hipy_js_直播转点播[合]",
  3952. "name": "直播转点播[合](drpy_t3)",
  3953. "type": 3,
  3954. "api": "./drpy_libs/drpy2.min.js",
  3955. "searchable": 1,
  3956. "quickSearch": 1,
  3957. "filterable": 1,
  3958. "order_num": 0,
  3959. "ext": "./drpy_js/直播转点播[合].js?type=url&params=../json/live2cms.json"
  3960. },
  3961. {
  3962. "key": "hipy_js_至臻[盘]",
  3963. "name": "至臻[盘](drpy_t3)",
  3964. "type": 3,
  3965. "api": "./drpy_libs/drpy2.min.js",
  3966. "searchable": 1,
  3967. "quickSearch": 1,
  3968. "filterable": 1,
  3969. "order_num": 0,
  3970. "ext": "./drpy_js/至臻[盘].js"
  3971. },
  3972. {
  3973. "key": "hipy_js_中华听书网[听]",
  3974. "name": "中华听书网[听](drpy_t3)",
  3975. "type": 3,
  3976. "api": "./drpy_libs/drpy2.min.js",
  3977. "searchable": 1,
  3978. "quickSearch": 1,
  3979. "filterable": 1,
  3980. "order_num": 0,
  3981. "ext": "./drpy_js/中华听书网[听].js"
  3982. },
  3983. {
  3984. "key": "hipy_js_种子音乐[听]",
  3985. "name": "种子音乐[听](drpy_t3)",
  3986. "type": 3,
  3987. "api": "./drpy_libs/drpy2.min.js",
  3988. "searchable": 1,
  3989. "quickSearch": 1,
  3990. "filterable": 1,
  3991. "order_num": 0,
  3992. "ext": "./drpy_js/种子音乐[听].js"
  3993. },
  3994. {
  3995. "key": "hipy_js_追剧兔",
  3996. "name": "追剧兔(drpy_t3)",
  3997. "type": 3,
  3998. "api": "./drpy_libs/drpy2.min.js",
  3999. "searchable": 1,
  4000. "quickSearch": 1,
  4001. "filterable": 1,
  4002. "order_num": 0,
  4003. "ext": "./drpy_js/追剧兔.js"
  4004. },
  4005. {
  4006. "key": "hipy_js_追影TV",
  4007. "name": "追影TV(drpy_t3)",
  4008. "type": 3,
  4009. "api": "./drpy_libs/drpy2.min.js",
  4010. "searchable": 1,
  4011. "quickSearch": 1,
  4012. "filterable": 1,
  4013. "order_num": 0,
  4014. "ext": "./drpy_js/追影TV.js"
  4015. },
  4016. {
  4017. "key": "hipy_js_孜然影视",
  4018. "name": "孜然影视(drpy_t3)",
  4019. "type": 3,
  4020. "api": "./drpy_libs/drpy2.min.js",
  4021. "searchable": 1,
  4022. "quickSearch": 1,
  4023. "filterable": 1,
  4024. "order_num": 0,
  4025. "ext": "./drpy_js/孜然影视.js"
  4026. },
  4027. {
  4028. "key": "hipy_js_子子影视",
  4029. "name": "子子影视(drpy_t3)",
  4030. "type": 3,
  4031. "api": "./drpy_libs/drpy2.min.js",
  4032. "searchable": 1,
  4033. "quickSearch": 1,
  4034. "filterable": 1,
  4035. "order_num": 0,
  4036. "ext": "./drpy_js/子子影视.js"
  4037. },
  4038. {
  4039. "key": "hipy_js_最新4K",
  4040. "name": "最新4K(drpy_t3)",
  4041. "type": 3,
  4042. "api": "./drpy_libs/drpy2.min.js",
  4043. "searchable": 1,
  4044. "quickSearch": 1,
  4045. "filterable": 1,
  4046. "order_num": 0,
  4047. "ext": "./drpy_js/最新4K.js"
  4048. },
  4049. {
  4050. "key": "hipy_js_ASMR[听]",
  4051. "name": "ASMR[听](drpy_t3)",
  4052. "type": 3,
  4053. "api": "./drpy_libs/drpy2.min.js",
  4054. "searchable": 1,
  4055. "quickSearch": 1,
  4056. "filterable": 1,
  4057. "order_num": 0,
  4058. "ext": "./drpy_js/ASMR[听].js"
  4059. },
  4060. {
  4061. "key": "hipy_js_auete",
  4062. "name": "auete(drpy_t3)",
  4063. "type": 3,
  4064. "api": "./drpy_libs/drpy2.min.js",
  4065. "searchable": 1,
  4066. "quickSearch": 1,
  4067. "filterable": 1,
  4068. "order_num": 0,
  4069. "ext": "./drpy_js/auete.js"
  4070. },
  4071. {
  4072. "key": "hipy_js_B站影视",
  4073. "name": "B站影视(drpy_t3)",
  4074. "type": 3,
  4075. "api": "./drpy_libs/drpy2.min.js",
  4076. "searchable": 1,
  4077. "quickSearch": 1,
  4078. "filterable": 1,
  4079. "order_num": 0,
  4080. "ext": "./drpy_js/B站影视.js"
  4081. },
  4082. {
  4083. "key": "hipy_js_bilfun(自动)",
  4084. "name": "bilfun(自动)(drpy_t3)",
  4085. "type": 3,
  4086. "api": "./drpy_libs/drpy2.min.js",
  4087. "searchable": 1,
  4088. "quickSearch": 1,
  4089. "filterable": 1,
  4090. "order_num": 0,
  4091. "ext": "./drpy_js/bilfun(自动).js"
  4092. },
  4093. {
  4094. "key": "hipy_js_cally66",
  4095. "name": "cally66(drpy_t3)",
  4096. "type": 3,
  4097. "api": "./drpy_libs/drpy2.min.js",
  4098. "searchable": 1,
  4099. "quickSearch": 1,
  4100. "filterable": 1,
  4101. "order_num": 0,
  4102. "ext": "./drpy_js/cally66.js"
  4103. },
  4104. {
  4105. "key": "hipy_js_eFuns",
  4106. "name": "eFuns(drpy_t3)",
  4107. "type": 3,
  4108. "api": "./drpy_libs/drpy2.min.js",
  4109. "searchable": 1,
  4110. "quickSearch": 1,
  4111. "filterable": 1,
  4112. "order_num": 0,
  4113. "ext": "./drpy_js/eFuns.js"
  4114. },
  4115. {
  4116. "key": "hipy_js_freeok",
  4117. "name": "freeok(drpy_t3)",
  4118. "type": 3,
  4119. "api": "./drpy_libs/drpy2.min.js",
  4120. "searchable": 1,
  4121. "quickSearch": 1,
  4122. "filterable": 1,
  4123. "order_num": 0,
  4124. "ext": "./drpy_js/freeok.js"
  4125. },
  4126. {
  4127. "key": "hipy_js_FreeOKLOL",
  4128. "name": "FreeOKLOL(drpy_t3)",
  4129. "type": 3,
  4130. "api": "./drpy_libs/drpy2.min.js",
  4131. "searchable": 1,
  4132. "quickSearch": 1,
  4133. "filterable": 1,
  4134. "order_num": 0,
  4135. "ext": "./drpy_js/FreeOKLOL.js"
  4136. },
  4137. {
  4138. "key": "hipy_js_GO影视",
  4139. "name": "GO影视(drpy_t3)",
  4140. "type": 3,
  4141. "api": "./drpy_libs/drpy2.min.js",
  4142. "searchable": 1,
  4143. "quickSearch": 1,
  4144. "filterable": 1,
  4145. "order_num": 0,
  4146. "ext": "./drpy_js/GO影视.js"
  4147. },
  4148. {
  4149. "key": "hipy_js_HDmoli",
  4150. "name": "HDmoli(drpy_t3)",
  4151. "type": 3,
  4152. "api": "./drpy_libs/drpy2.min.js",
  4153. "searchable": 1,
  4154. "quickSearch": 1,
  4155. "filterable": 1,
  4156. "order_num": 0,
  4157. "ext": "./drpy_js/HDmoli.js"
  4158. },
  4159. {
  4160. "key": "Moli",
  4161. "name": "HDmoli|网盘",
  4162. "type": 3,
  4163. "api": "csp_Moli",
  4164. "quickSearch": 1,
  4165. "changeable": 1,
  4166. "filterable": 1,
  4167. "timeout": 60,
  4168. "ext": "./json/tokenm.json$$$https://www.hdmoli.pro/$$$proxy$$$1$$$./json/moli.json",
  4169. "order_num": 9999
  4170. },
  4171. {
  4172. "key": "hipy_js_i275听书[听]",
  4173. "name": "i275听书[听](drpy_t3)",
  4174. "type": 3,
  4175. "api": "./drpy_libs/drpy2.min.js",
  4176. "searchable": 1,
  4177. "quickSearch": 1,
  4178. "filterable": 1,
  4179. "order_num": 0,
  4180. "ext": "./drpy_js/i275听书[听].js"
  4181. },
  4182. {
  4183. "key": "hipy_js_iFun",
  4184. "name": "iFun(drpy_t3)",
  4185. "type": 3,
  4186. "api": "./drpy_libs/drpy2.min.js",
  4187. "searchable": 1,
  4188. "quickSearch": 1,
  4189. "filterable": 1,
  4190. "order_num": 0,
  4191. "ext": "./drpy_js/iFun.js"
  4192. },
  4193. {
  4194. "key": "hipy_js_iku喵[资]",
  4195. "name": "iku喵[资](drpy_t3)",
  4196. "type": 3,
  4197. "api": "./drpy_libs/drpy2.min.js",
  4198. "searchable": 1,
  4199. "quickSearch": 1,
  4200. "filterable": 1,
  4201. "order_num": 0,
  4202. "ext": "./drpy_js/iku喵[资].js"
  4203. },
  4204. {
  4205. "key": "Iktv",
  4206. "name": "KTV",
  4207. "type": 3,
  4208. "api": "csp_Iktv",
  4209. "searchable": 1,
  4210. "changeable": 0,
  4211. "order_num": 9999
  4212. },
  4213. {
  4214. "key": "hipy_js_KTV歌厅[听]",
  4215. "name": "KTV歌厅[听](drpy_t3)",
  4216. "type": 3,
  4217. "api": "./drpy_libs/drpy2.min.js",
  4218. "searchable": 1,
  4219. "quickSearch": 1,
  4220. "filterable": 1,
  4221. "order_num": 0,
  4222. "ext": "./drpy_js/KTV歌厅[听].js"
  4223. },
  4224. {
  4225. "key": "hipy_js_LIBHD",
  4226. "name": "LIBHD(drpy_t3)",
  4227. "type": 3,
  4228. "api": "./drpy_libs/drpy2.min.js",
  4229. "searchable": 1,
  4230. "quickSearch": 1,
  4231. "filterable": 1,
  4232. "order_num": 0,
  4233. "ext": "./drpy_js/LIBHD.js"
  4234. },
  4235. {
  4236. "key": "hipy_js_LIBVIO[优]",
  4237. "name": "LIBVIO[优](drpy_t3)",
  4238. "type": 3,
  4239. "api": "./drpy_libs/drpy2.min.js",
  4240. "searchable": 1,
  4241. "quickSearch": 1,
  4242. "filterable": 1,
  4243. "order_num": 0,
  4244. "ext": "./drpy_js/LIBVIO[优].js"
  4245. },
  4246. {
  4247. "key": "hipy_js_MuteFun[漫]",
  4248. "name": "MuteFun[漫](drpy_t3)",
  4249. "type": 3,
  4250. "api": "./drpy_libs/drpy2.min.js",
  4251. "searchable": 1,
  4252. "quickSearch": 1,
  4253. "filterable": 1,
  4254. "order_num": 0,
  4255. "ext": "./drpy_js/MuteFun[漫].js"
  4256. },
  4257. {
  4258. "key": "hipy_js_NT动漫[漫]",
  4259. "name": "NT动漫[漫](drpy_t3)",
  4260. "type": 3,
  4261. "api": "./drpy_libs/drpy2.min.js",
  4262. "searchable": 1,
  4263. "quickSearch": 1,
  4264. "filterable": 1,
  4265. "order_num": 0,
  4266. "ext": "./drpy_js/NT动漫[漫].js"
  4267. },
  4268. {
  4269. "key": "hipy_js_ok资源[资]",
  4270. "name": "ok资源[资](drpy_t3)",
  4271. "type": 3,
  4272. "api": "./drpy_libs/drpy2.min.js",
  4273. "searchable": 1,
  4274. "quickSearch": 1,
  4275. "filterable": 1,
  4276. "order_num": 0,
  4277. "ext": "./drpy_js/ok资源[资].js"
  4278. },
  4279. {
  4280. "key": "hipy_js_OmoFun[漫]",
  4281. "name": "OmoFun[漫](drpy_t3)",
  4282. "type": 3,
  4283. "api": "./drpy_libs/drpy2.min.js",
  4284. "searchable": 1,
  4285. "quickSearch": 1,
  4286. "filterable": 1,
  4287. "order_num": 0,
  4288. "ext": "./drpy_js/OmoFun[漫].js"
  4289. },
  4290. {
  4291. "key": "PanSearch",
  4292. "name": "PanSearch|网盘搜索",
  4293. "type": 3,
  4294. "api": "csp_PanSearch",
  4295. "quickSearch": 1,
  4296. "changeable": 1,
  4297. "filterable": 1,
  4298. "timeout": 60,
  4299. "ext": "./json/tokenm.json",
  4300. "order_num": 9999
  4301. },
  4302. {
  4303. "key": "PikPakShare",
  4304. "name": "PikPak分享",
  4305. "type": 3,
  4306. "api": "csp_PikPakShare",
  4307. "searchable": 1,
  4308. "quickSearch": 1,
  4309. "changeable": 1,
  4310. "filterable": 0,
  4311. "timeout": 60,
  4312. "ext": "./json/tokenm.json$$$./json/pikpakclass.json$$$./json/pikpakclass.json.txt.gz",
  4313. "style": {
  4314. "type": "list",
  4315. "ratio": 1.1
  4316. },
  4317. "order_num": 9999
  4318. },
  4319. {
  4320. "key": "hipy_js_Pornhub[密]",
  4321. "name": "Pornhub[密](drpy_t3)",
  4322. "type": 3,
  4323. "api": "./drpy_libs/drpy2.min.js",
  4324. "searchable": 1,
  4325. "quickSearch": 1,
  4326. "filterable": 1,
  4327. "order_num": 0,
  4328. "ext": "./drpy_js/Pornhub[密].js"
  4329. },
  4330. {
  4331. "key": "hipy_js_PTT[优]",
  4332. "name": "PTT[优](drpy_t3)",
  4333. "type": 3,
  4334. "api": "./drpy_libs/drpy2.min.js",
  4335. "searchable": 1,
  4336. "quickSearch": 1,
  4337. "filterable": 1,
  4338. "order_num": 0,
  4339. "ext": "./drpy_js/PTT[优].js"
  4340. },
  4341. {
  4342. "key": "hipy_js_PTT追剧大师",
  4343. "name": "PTT追剧大师(drpy_t3)",
  4344. "type": 3,
  4345. "api": "./drpy_libs/drpy2.min.js",
  4346. "searchable": 1,
  4347. "quickSearch": 1,
  4348. "filterable": 1,
  4349. "order_num": 0,
  4350. "ext": "./drpy_js/PTT追剧大师.js"
  4351. },
  4352. {
  4353. "key": "hipy_js_R18撸[密]",
  4354. "name": "R18撸[密](drpy_t3)",
  4355. "type": 3,
  4356. "api": "./drpy_libs/drpy2.min.js",
  4357. "searchable": 1,
  4358. "quickSearch": 1,
  4359. "filterable": 1,
  4360. "order_num": 0,
  4361. "ext": "./drpy_js/R18撸[密].js"
  4362. },
  4363. {
  4364. "key": "SambaShare",
  4365. "name": "Samba分享",
  4366. "type": 3,
  4367. "api": "csp_SambaShare",
  4368. "searchable": 0,
  4369. "quickSearch": 0,
  4370. "changeable": 0,
  4371. "filterable": 0,
  4372. "timeout": 60,
  4373. "ext": "./json/tokenm.json$$$./json/sambashare.txt",
  4374. "order_num": 9999
  4375. },
  4376. {
  4377. "key": "hipy_js_script直播[飞]",
  4378. "name": "script直播[飞](drpy_t3)",
  4379. "type": 3,
  4380. "api": "./drpy_libs/drpy2.min.js",
  4381. "searchable": 1,
  4382. "quickSearch": 1,
  4383. "filterable": 1,
  4384. "order_num": 0,
  4385. "ext": "./drpy_js/script直播[飞].js"
  4386. },
  4387. {
  4388. "key": "hipy_js_ST4K[V2]",
  4389. "name": "ST4K[V2](drpy_t3)",
  4390. "type": 3,
  4391. "api": "./drpy_libs/drpy2.min.js",
  4392. "searchable": 1,
  4393. "quickSearch": 1,
  4394. "filterable": 1,
  4395. "order_num": 0,
  4396. "ext": "./drpy_js/ST4K[V2].js"
  4397. },
  4398. {
  4399. "key": "hipy_js_TVB云播",
  4400. "name": "TVB云播(drpy_t3)",
  4401. "type": 3,
  4402. "api": "./drpy_libs/drpy2.min.js",
  4403. "searchable": 1,
  4404. "quickSearch": 1,
  4405. "filterable": 1,
  4406. "order_num": 0,
  4407. "ext": "./drpy_js/TVB云播.js"
  4408. },
  4409. {
  4410. "key": "hipy_js_UAA[密]",
  4411. "name": "UAA[密](drpy_t3)",
  4412. "type": 3,
  4413. "api": "./drpy_libs/drpy2.min.js",
  4414. "searchable": 1,
  4415. "quickSearch": 1,
  4416. "filterable": 1,
  4417. "order_num": 0,
  4418. "ext": "./drpy_js/UAA[密].js"
  4419. },
  4420. {
  4421. "key": "hipy_js_UAA[听]",
  4422. "name": "UAA[听](drpy_t3)",
  4423. "type": 3,
  4424. "api": "./drpy_libs/drpy2.min.js",
  4425. "searchable": 1,
  4426. "quickSearch": 1,
  4427. "filterable": 1,
  4428. "order_num": 0,
  4429. "ext": "./drpy_js/UAA[听].js"
  4430. },
  4431. {
  4432. "key": "hipy_js_voflix",
  4433. "name": "voflix(drpy_t3)",
  4434. "type": 3,
  4435. "api": "./drpy_libs/drpy2.min.js",
  4436. "searchable": 1,
  4437. "quickSearch": 1,
  4438. "filterable": 1,
  4439. "order_num": 0,
  4440. "ext": "./drpy_js/voflix.js"
  4441. }
  4442. ],
  4443. "parses": [
  4444. {
  4445. "name": "777",
  4446. "url": "https://jx.777jiexi.com/player/?url=",
  4447. "type": 0,
  4448. "ext": {
  4449. "flag": [
  4450. "qiyi",
  4451. "imgo",
  4452. "爱奇艺",
  4453. "奇艺",
  4454. "qq",
  4455. "qq 预告及花絮",
  4456. "腾讯",
  4457. "youku",
  4458. "优酷",
  4459. "pptv",
  4460. "PPTV",
  4461. "letv",
  4462. "乐视",
  4463. "leshi",
  4464. "mgtv",
  4465. "芒果",
  4466. "sohu",
  4467. "xigua",
  4468. "fun",
  4469. "风行"
  4470. ]
  4471. },
  4472. "header": {
  4473. "User-Agent": "Mozilla/5.0"
  4474. }
  4475. },
  4476. {
  4477. "name": "8090g",
  4478. "url": "https://www.8090g.cn/jiexi/?url=",
  4479. "type": 0,
  4480. "ext": {
  4481. "flag": [
  4482. "qiyi",
  4483. "imgo",
  4484. "爱奇艺",
  4485. "奇艺",
  4486. "qq",
  4487. "qq 预告及花絮",
  4488. "腾讯",
  4489. "youku",
  4490. "优酷",
  4491. "pptv",
  4492. "PPTV",
  4493. "letv",
  4494. "乐视",
  4495. "leshi",
  4496. "mgtv",
  4497. "芒果",
  4498. "sohu",
  4499. "xigua",
  4500. "fun",
  4501. "风行"
  4502. ]
  4503. },
  4504. "header": {
  4505. "User-Agent": "Mozilla/5.0"
  4506. }
  4507. },
  4508. {
  4509. "name": "ik9",
  4510. "url": "https://yparse.ik9.cc/index.php?url=",
  4511. "type": 0,
  4512. "ext": {
  4513. "flag": [
  4514. "qiyi",
  4515. "imgo",
  4516. "爱奇艺",
  4517. "奇艺",
  4518. "qq",
  4519. "qq 预告及花絮",
  4520. "腾讯",
  4521. "youku",
  4522. "优酷",
  4523. "pptv",
  4524. "PPTV",
  4525. "letv",
  4526. "乐视",
  4527. "leshi",
  4528. "mgtv",
  4529. "芒果",
  4530. "sohu",
  4531. "xigua",
  4532. "fun",
  4533. "风行"
  4534. ]
  4535. },
  4536. "header": {
  4537. "User-Agent": "Mozilla/5.0"
  4538. }
  4539. },
  4540. {
  4541. "name": "杰森",
  4542. "url": "https://jx.jsonplayer.com/player/?url=",
  4543. "type": 0,
  4544. "ext": {
  4545. "flag": [
  4546. "qiyi",
  4547. "imgo",
  4548. "爱奇艺",
  4549. "奇艺",
  4550. "qq",
  4551. "qq 预告及花絮",
  4552. "腾讯",
  4553. "youku",
  4554. "优酷",
  4555. "pptv",
  4556. "PPTV",
  4557. "letv",
  4558. "乐视",
  4559. "leshi",
  4560. "mgtv",
  4561. "芒果",
  4562. "sohu",
  4563. "xigua",
  4564. "fun",
  4565. "风行"
  4566. ]
  4567. },
  4568. "header": {
  4569. "User-Agent": "Mozilla/5.0"
  4570. }
  4571. },
  4572. {
  4573. "name": "阳途",
  4574. "url": "https://jx.yangtu.top/?url=",
  4575. "type": 0,
  4576. "ext": {
  4577. "flag": [
  4578. "qiyi",
  4579. "imgo",
  4580. "爱奇艺",
  4581. "奇艺",
  4582. "qq",
  4583. "qq 预告及花絮",
  4584. "腾讯",
  4585. "youku",
  4586. "优酷",
  4587. "pptv",
  4588. "PPTV",
  4589. "letv",
  4590. "乐视",
  4591. "leshi",
  4592. "mgtv",
  4593. "芒果",
  4594. "sohu",
  4595. "xigua",
  4596. "fun",
  4597. "风行"
  4598. ]
  4599. },
  4600. "header": {
  4601. "User-Agent": "Mozilla/5.0"
  4602. }
  4603. },
  4604. {
  4605. "name": "冰豆",
  4606. "url": "https://bd.jx.cn/?url=",
  4607. "type": 0,
  4608. "ext": {
  4609. "flag": [
  4610. "qiyi",
  4611. "imgo",
  4612. "爱奇艺",
  4613. "奇艺",
  4614. "qq",
  4615. "qq 预告及花絮",
  4616. "腾讯",
  4617. "youku",
  4618. "优酷",
  4619. "pptv",
  4620. "PPTV",
  4621. "letv",
  4622. "乐视",
  4623. "leshi",
  4624. "mgtv",
  4625. "芒果",
  4626. "sohu",
  4627. "xigua",
  4628. "fun",
  4629. "风行"
  4630. ]
  4631. },
  4632. "header": {
  4633. "User-Agent": "Mozilla/5.0"
  4634. }
  4635. },
  4636. {
  4637. "name": "m3u8TV",
  4638. "url": "https://jx.m3u8.tv/jiexi/?url=",
  4639. "type": 0,
  4640. "ext": {
  4641. "flag": [
  4642. "qiyi",
  4643. "imgo",
  4644. "爱奇艺",
  4645. "奇艺",
  4646. "qq",
  4647. "qq 预告及花絮",
  4648. "腾讯",
  4649. "youku",
  4650. "优酷",
  4651. "pptv",
  4652. "PPTV",
  4653. "letv",
  4654. "乐视",
  4655. "leshi",
  4656. "mgtv",
  4657. "芒果",
  4658. "sohu",
  4659. "xigua",
  4660. "fun",
  4661. "风行"
  4662. ]
  4663. },
  4664. "header": {
  4665. "User-Agent": "Mozilla/5.0"
  4666. }
  4667. },
  4668. {
  4669. "name": "听乐",
  4670. "url": "https://jx.dj6u.com/?url=",
  4671. "type": 0,
  4672. "ext": {
  4673. "flag": [
  4674. "qiyi",
  4675. "imgo",
  4676. "爱奇艺",
  4677. "奇艺",
  4678. "qq",
  4679. "qq 预告及花絮",
  4680. "腾讯",
  4681. "youku",
  4682. "优酷",
  4683. "pptv",
  4684. "PPTV",
  4685. "letv",
  4686. "乐视",
  4687. "leshi",
  4688. "mgtv",
  4689. "芒果",
  4690. "sohu",
  4691. "xigua",
  4692. "fun",
  4693. "风行"
  4694. ]
  4695. },
  4696. "header": {
  4697. "User-Agent": "Mozilla/5.0"
  4698. }
  4699. },
  4700. {
  4701. "name": "虾米",
  4702. "url": "https://jx.xmflv.com/?url=",
  4703. "type": 0,
  4704. "ext": {
  4705. "flag": [
  4706. "qiyi",
  4707. "imgo",
  4708. "爱奇艺",
  4709. "奇艺",
  4710. "qq",
  4711. "qq 预告及花絮",
  4712. "腾讯",
  4713. "youku",
  4714. "优酷",
  4715. "pptv",
  4716. "PPTV",
  4717. "letv",
  4718. "乐视",
  4719. "leshi",
  4720. "mgtv",
  4721. "芒果",
  4722. "sohu",
  4723. "xigua",
  4724. "fun",
  4725. "风行"
  4726. ]
  4727. },
  4728. "header": {
  4729. "User-Agent": "Mozilla/5.0"
  4730. }
  4731. },
  4732. {
  4733. "name": "虾米2",
  4734. "url": "https://jx.xmflv.cc/?url=",
  4735. "type": 0,
  4736. "ext": {
  4737. "flag": [
  4738. "qiyi",
  4739. "imgo",
  4740. "爱奇艺",
  4741. "奇艺",
  4742. "qq",
  4743. "qq 预告及花絮",
  4744. "腾讯",
  4745. "youku",
  4746. "优酷",
  4747. "pptv",
  4748. "PPTV",
  4749. "letv",
  4750. "乐视",
  4751. "leshi",
  4752. "mgtv",
  4753. "芒果",
  4754. "sohu",
  4755. "xigua",
  4756. "fun",
  4757. "风行"
  4758. ]
  4759. },
  4760. "header": {
  4761. "User-Agent": "Mozilla/5.0"
  4762. }
  4763. },
  4764. {
  4765. "name": "云析",
  4766. "url": "https://jx.yparse.com/index.php?url=",
  4767. "type": 0,
  4768. "ext": {
  4769. "flag": [
  4770. "qiyi",
  4771. "imgo",
  4772. "爱奇艺",
  4773. "奇艺",
  4774. "qq",
  4775. "qq 预告及花絮",
  4776. "腾讯",
  4777. "youku",
  4778. "优酷",
  4779. "pptv",
  4780. "PPTV",
  4781. "letv",
  4782. "乐视",
  4783. "leshi",
  4784. "mgtv",
  4785. "芒果",
  4786. "sohu",
  4787. "xigua",
  4788. "fun",
  4789. "风行"
  4790. ]
  4791. },
  4792. "header": {
  4793. "User-Agent": "Mozilla/5.0"
  4794. }
  4795. },
  4796. {
  4797. "name": "红狐",
  4798. "url": "https://player.mrgaocloud.com/player/?url=",
  4799. "type": 0,
  4800. "ext": {
  4801. "flag": [
  4802. "qiyi",
  4803. "imgo",
  4804. "爱奇艺",
  4805. "奇艺",
  4806. "qq",
  4807. "qq 预告及花絮",
  4808. "腾讯",
  4809. "youku",
  4810. "优酷",
  4811. "pptv",
  4812. "PPTV",
  4813. "letv",
  4814. "乐视",
  4815. "leshi",
  4816. "mgtv",
  4817. "芒果",
  4818. "sohu",
  4819. "xigua",
  4820. "fun",
  4821. "风行"
  4822. ]
  4823. },
  4824. "header": {
  4825. "User-Agent": "Mozilla/5.0"
  4826. }
  4827. }
  4828. ],
  4829. "flags": [
  4830. "imgo",
  4831. "youku",
  4832. "qq",
  4833. "qq 预告及花絮",
  4834. "iqiyi",
  4835. "qiyi",
  4836. "fun",
  4837. "letv",
  4838. "leshi",
  4839. "sohu",
  4840. "tudou",
  4841. "xigua",
  4842. "cntv",
  4843. "1905",
  4844. "pptv",
  4845. "mgtv",
  4846. "wasu",
  4847. "bilibili",
  4848. "renrenmi"
  4849. ],
  4850. "lives": [
  4851. {
  4852. "group": "redirect",
  4853. "channels": [
  4854. {
  4855. "name": "稳定github直播",
  4856. "urls": [
  4857. "proxy://do=live&type=txt&ext=https://ghproxy.net/https://raw.githubusercontent.com/ssili126/tv/main/itvlist.txt"
  4858. ]
  4859. },
  4860. {
  4861. "name": "华数2",
  4862. "urls": [
  4863. "proxy://do=live&type=txt&ext=file:///storage/emulated/0/Download/code/drpy_dzlive/lives/华数2.m3u"
  4864. ]
  4865. },
  4866. {
  4867. "name": "杭州华数",
  4868. "urls": [
  4869. "proxy://do=live&type=txt&ext=file:///storage/emulated/0/Download/code/drpy_dzlive/lives/杭州华数.m3u"
  4870. ]
  4871. },
  4872. {
  4873. "name": "云星日记直播",
  4874. "urls": [
  4875. "proxy://do=live&type=txt&ext=http://itvbox.cc/云星日记/Ipv4.txt"
  4876. ]
  4877. },
  4878. {
  4879. "name": "本地嗅探器直播",
  4880. "urls": [
  4881. "proxy://do=live&type=txt&ext=http://127.0.0.1:5708/ysp"
  4882. ]
  4883. }
  4884. ]
  4885. }
  4886. ]
  4887. }