index.json 134 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229
  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_豆瓣[官]",
  9. "name": "🧑‍⚖豆瓣[官]",
  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/豆瓣[官].js"
  17. },
  18. {
  19. "key": "hipy_js_采集之王[合]0",
  20. "name": "🎁采王道长[合]",
  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?type=url&params=../json/采集静态.json$1"
  28. },
  29. {
  30. "key": "hipy_js_直播转点播[合]",
  31. "name": "🎁直播转点播[合]",
  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?type=url&params=../json/live2cms.json"
  39. },
  40. {
  41. "key": "hipy_js_360影视[官]",
  42. "name": "🧑‍⚖360影视[官]",
  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/360影视[官].js"
  50. },
  51. {
  52. "key": "hipy_js_优酷[官]",
  53. "name": "🧑‍⚖优酷[官]",
  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": "🧑‍⚖哔哩影视[官]",
  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": "🧑‍⚖奇珍异兽[官]",
  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_我的哔哩[官]",
  86. "name": "🧑‍⚖我的哔哩[官]",
  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"
  94. },
  95. {
  96. "key": "hipy_js_百忙无果[官]",
  97. "name": "🧑‍⚖百忙无果[官]",
  98. "type": 3,
  99. "api": "./drpy_libs/drpy2.min.js",
  100. "searchable": 1,
  101. "quickSearch": 1,
  102. "filterable": 1,
  103. "order_num": 0,
  104. "ext": "./drpy_js/百忙无果[官].js"
  105. },
  106. {
  107. "key": "hipy_js_腾云驾雾[官]",
  108. "name": "🧑‍⚖腾云驾雾[官]",
  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"
  116. },
  117. {
  118. "key": "hipy_js_菜狗[官]",
  119. "name": "🧑‍⚖菜狗[官]",
  120. "type": 3,
  121. "api": "./drpy_libs/drpy2.min.js",
  122. "searchable": 1,
  123. "quickSearch": 1,
  124. "filterable": 1,
  125. "order_num": 0,
  126. "ext": "./drpy_js/菜狗[官].js"
  127. },
  128. {
  129. "key": "hipy_js_我的哔哩传参[官]",
  130. "name": "🧑‍⚖我的哔哩传参[官]",
  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?type=url&params=../json/小学教育.json"
  138. },
  139. {
  140. "key": "hipy_js_虎牙直播[官]",
  141. "name": "🧑‍⚖虎牙直播[官]",
  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_哔哩直播[官]",
  152. "name": "🧑‍⚖哔哩直播[官]",
  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/哔哩直播[官].js"
  160. },
  161. {
  162. "key": "hipy_js_斗鱼直播[官]",
  163. "name": "🧑‍⚖斗鱼直播[官]",
  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/斗鱼直播[官].js"
  171. },
  172. {
  173. "key": "hipy_js_腾讯[官]",
  174. "name": "🧑‍⚖腾讯[官]",
  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/腾讯[官].js"
  182. },
  183. {
  184. "key": "hipy_js_LIBVIO[优]",
  185. "name": "🏆LIBVIO[优]",
  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/LIBVIO[优].js"
  193. },
  194. {
  195. "key": "hipy_js_农民影视[优]",
  196. "name": "🏆农民影视[优]",
  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/农民影视[优].js"
  204. },
  205. {
  206. "key": "hipy_js_南瓜影视[优]",
  207. "name": "🏆南瓜影视[优]",
  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/南瓜影视[优].js"
  215. },
  216. {
  217. "key": "hipy_js_可可影视[优]",
  218. "name": "🏆可可影视[优]",
  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/可可影视[优].js"
  226. },
  227. {
  228. "key": "hipy_js_烧火影视[优]",
  229. "name": "🏆烧火影视[优]",
  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/烧火影视[优].js"
  237. },
  238. {
  239. "key": "hipy_js_素白白[优]",
  240. "name": "🏆素白白[优]",
  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/素白白[优].js"
  248. },
  249. {
  250. "key": "hipy_js_网飞猫[优]",
  251. "name": "🏆网飞猫[优]",
  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/网飞猫[优].js"
  259. },
  260. {
  261. "key": "hipy_js_荐片[优]",
  262. "name": "🏆荐片[优]",
  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/荐片[优].js"
  270. },
  271. {
  272. "key": "hipy_js_爱看农民2[优]",
  273. "name": "🏆爱看农民2[优]",
  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/爱看农民2[优].js"
  281. },
  282. {
  283. "key": "hipy_js_爱看农民[优]",
  284. "name": "🏆爱看农民[优]",
  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/爱看农民[优].js"
  292. },
  293. {
  294. "key": "hipy_js_哈皮影视[优]",
  295. "name": "🏆哈皮影视[优]",
  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/哈皮影视[优].js"
  303. },
  304. {
  305. "key": "hipy_js_多多追剧[优]",
  306. "name": "🏆多多追剧[优]",
  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/多多追剧[优].js"
  314. },
  315. {
  316. "key": "hipy_js_星辰[优]",
  317. "name": "🏆星辰[优]",
  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/星辰[优].js"
  325. },
  326. {
  327. "key": "hipy_js_桃子影视[优]",
  328. "name": "🏆桃子影视[优]",
  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/桃子影视[优].js"
  336. },
  337. {
  338. "key": "hipy_js_哔嘀影视[优]",
  339. "name": "🏆哔嘀影视[优]",
  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/哔嘀影视[优].js"
  347. },
  348. {
  349. "key": "hipy_js_星芽短剧[优]",
  350. "name": "📲星芽短剧[优]",
  351. "type": 3,
  352. "api": "./drpy_libs/drpy2.min.js",
  353. "searchable": 1,
  354. "quickSearch": 1,
  355. "filterable": 1,
  356. "order_num": 0,
  357. "ext": "./drpy_js/星芽短剧[优].js"
  358. },
  359. {
  360. "key": "hipy_js_畅梦影视[优]",
  361. "name": "🏆畅梦影视[优]",
  362. "type": 3,
  363. "api": "./drpy_libs/drpy2.min.js",
  364. "searchable": 1,
  365. "quickSearch": 1,
  366. "filterable": 1,
  367. "order_num": 0,
  368. "ext": "./drpy_js/畅梦影视[优].js"
  369. },
  370. {
  371. "key": "hipy_js_蜥蜴影视[优]",
  372. "name": "🏆蜥蜴影视[优]",
  373. "type": 3,
  374. "api": "./drpy_libs/drpy2.min.js",
  375. "searchable": 1,
  376. "quickSearch": 1,
  377. "filterable": 1,
  378. "order_num": 0,
  379. "ext": "./drpy_js/蜥蜴影视[优].js"
  380. },
  381. {
  382. "key": "hipy_js_一起看[优]",
  383. "name": "🏆一起看[优]",
  384. "type": 3,
  385. "api": "./drpy_libs/drpy2.min.js",
  386. "searchable": 1,
  387. "quickSearch": 1,
  388. "filterable": 1,
  389. "order_num": 0,
  390. "ext": "./drpy_js/一起看[优].js"
  391. },
  392. {
  393. "key": "hipy_js_大师兄影视[优]",
  394. "name": "🏆大师兄影视[优]",
  395. "type": 3,
  396. "api": "./drpy_libs/drpy2.min.js",
  397. "searchable": 1,
  398. "quickSearch": 1,
  399. "filterable": 1,
  400. "order_num": 0,
  401. "ext": "./drpy_js/大师兄影视[优].js"
  402. },
  403. {
  404. "key": "hipy_js_麻雀视频[优]",
  405. "name": "🏆麻雀视频[优]",
  406. "type": 3,
  407. "api": "./drpy_libs/drpy2.min.js",
  408. "searchable": 1,
  409. "quickSearch": 1,
  410. "filterable": 1,
  411. "order_num": 0,
  412. "ext": "./drpy_js/麻雀视频[优].js"
  413. },
  414. {
  415. "key": "hipy_js_毒蛇电影[优]",
  416. "name": "🏆毒蛇电影[优]",
  417. "type": 3,
  418. "api": "./drpy_libs/drpy2.min.js",
  419. "searchable": 1,
  420. "quickSearch": 1,
  421. "filterable": 1,
  422. "order_num": 0,
  423. "ext": "./drpy_js/毒蛇电影[优].js"
  424. },
  425. {
  426. "key": "hipy_js_4K-A[优]",
  427. "name": "🏆4K-A[优]",
  428. "type": 3,
  429. "api": "./drpy_libs/drpy2.min.js",
  430. "searchable": 1,
  431. "quickSearch": 1,
  432. "filterable": 1,
  433. "order_num": 0,
  434. "ext": "./drpy_js/4K-A[优].js"
  435. },
  436. {
  437. "key": "hipy_js_PTT[优]",
  438. "name": "🏆PTT[优]",
  439. "type": 3,
  440. "api": "./drpy_libs/drpy2.min.js",
  441. "searchable": 1,
  442. "quickSearch": 1,
  443. "filterable": 1,
  444. "order_num": 0,
  445. "ext": "./drpy_js/PTT[优].js"
  446. },
  447. {
  448. "key": "hipy_js_兄弟影视[优]",
  449. "name": "🏆兄弟影视[优]",
  450. "type": 3,
  451. "api": "./drpy_libs/drpy2.min.js",
  452. "searchable": 1,
  453. "quickSearch": 1,
  454. "filterable": 1,
  455. "order_num": 0,
  456. "ext": "./drpy_js/兄弟影视[优].js"
  457. },
  458. {
  459. "key": "hipy_js_素白(能搜索)[优]",
  460. "name": "🏆素白(能搜索)[优]",
  461. "type": 3,
  462. "api": "./drpy_libs/drpy2.min.js",
  463. "searchable": 1,
  464. "quickSearch": 1,
  465. "filterable": 1,
  466. "order_num": 0,
  467. "ext": "./drpy_js/素白(能搜索)[优].js"
  468. },
  469. {
  470. "key": "hipy_js_桃子[优]",
  471. "name": "🏆桃子[优]",
  472. "type": 3,
  473. "api": "./drpy_libs/drpy2.min.js",
  474. "searchable": 1,
  475. "quickSearch": 1,
  476. "filterable": 1,
  477. "order_num": 0,
  478. "ext": "./drpy_js/桃子[优].js"
  479. },
  480. {
  481. "key": "hipy_js_好趣网[播]",
  482. "name": "▶️好趣网[播]",
  483. "type": 3,
  484. "api": "./drpy_libs/drpy2.min.js",
  485. "searchable": 1,
  486. "quickSearch": 1,
  487. "filterable": 1,
  488. "order_num": 0,
  489. "ext": "./drpy_js/好趣网[播].js"
  490. },
  491. {
  492. "key": "hipy_js_[资]采集集合",
  493. "name": "♻️[资]采集集合",
  494. "type": 3,
  495. "api": "./drpy_libs/drpy2.min.js",
  496. "searchable": 1,
  497. "quickSearch": 1,
  498. "filterable": 1,
  499. "order_num": 0,
  500. "ext": "./drpy_js/[资]采集集合.js"
  501. },
  502. {
  503. "key": "hipy_js_暴风资源[资]",
  504. "name": "♻️暴风资源[资]",
  505. "type": 3,
  506. "api": "./drpy_libs/drpy2.min.js",
  507. "searchable": 1,
  508. "quickSearch": 1,
  509. "filterable": 1,
  510. "order_num": 0,
  511. "ext": "./drpy_js/暴风资源[资].js"
  512. },
  513. {
  514. "key": "hipy_js_茶语资源[资]",
  515. "name": "♻️茶语资源[资]",
  516. "type": 3,
  517. "api": "./drpy_libs/drpy2.min.js",
  518. "searchable": 1,
  519. "quickSearch": 1,
  520. "filterable": 1,
  521. "order_num": 0,
  522. "ext": "./drpy_js/茶语资源[资].js"
  523. },
  524. {
  525. "key": "hipy_js_飞刀资源[资]",
  526. "name": "♻️飞刀资源[资]",
  527. "type": 3,
  528. "api": "./drpy_libs/drpy2.min.js",
  529. "searchable": 1,
  530. "quickSearch": 1,
  531. "filterable": 1,
  532. "order_num": 0,
  533. "ext": "./drpy_js/飞刀资源[资].js"
  534. },
  535. {
  536. "key": "hipy_js_非凡资源[资]",
  537. "name": "♻️非凡资源[资]",
  538. "type": 3,
  539. "api": "./drpy_libs/drpy2.min.js",
  540. "searchable": 1,
  541. "quickSearch": 1,
  542. "filterable": 1,
  543. "order_num": 0,
  544. "ext": "./drpy_js/非凡资源[资].js"
  545. },
  546. {
  547. "key": "hipy_js_黑木耳资源[资]",
  548. "name": "♻️黑木耳资源[资]",
  549. "type": 3,
  550. "api": "./drpy_libs/drpy2.min.js",
  551. "searchable": 1,
  552. "quickSearch": 1,
  553. "filterable": 1,
  554. "order_num": 0,
  555. "ext": "./drpy_js/黑木耳资源[资].js"
  556. },
  557. {
  558. "key": "hipy_js_极客资源[资]",
  559. "name": "♻️极客资源[资]",
  560. "type": 3,
  561. "api": "./drpy_libs/drpy2.min.js",
  562. "searchable": 1,
  563. "quickSearch": 1,
  564. "filterable": 1,
  565. "order_num": 0,
  566. "ext": "./drpy_js/极客资源[资].js"
  567. },
  568. {
  569. "key": "hipy_js_极速资源[资]",
  570. "name": "♻️极速资源[资]",
  571. "type": 3,
  572. "api": "./drpy_libs/drpy2.min.js",
  573. "searchable": 1,
  574. "quickSearch": 1,
  575. "filterable": 1,
  576. "order_num": 0,
  577. "ext": "./drpy_js/极速资源[资].js"
  578. },
  579. {
  580. "key": "hipy_js_金鹰资源[资]",
  581. "name": "♻️金鹰资源[资]",
  582. "type": 3,
  583. "api": "./drpy_libs/drpy2.min.js",
  584. "searchable": 1,
  585. "quickSearch": 1,
  586. "filterable": 1,
  587. "order_num": 0,
  588. "ext": "./drpy_js/金鹰资源[资].js"
  589. },
  590. {
  591. "key": "hipy_js_量子影视[资]",
  592. "name": "♻️量子影视[资]",
  593. "type": 3,
  594. "api": "./drpy_libs/drpy2.min.js",
  595. "searchable": 1,
  596. "quickSearch": 1,
  597. "filterable": 1,
  598. "order_num": 0,
  599. "ext": "./drpy_js/量子影视[资].js"
  600. },
  601. {
  602. "key": "hipy_js_量子资源[资]",
  603. "name": "♻️量子资源[资]",
  604. "type": 3,
  605. "api": "./drpy_libs/drpy2.min.js",
  606. "searchable": 1,
  607. "quickSearch": 1,
  608. "filterable": 1,
  609. "order_num": 0,
  610. "ext": "./drpy_js/量子资源[资].js"
  611. },
  612. {
  613. "key": "hipy_js_魔都资源[资]",
  614. "name": "♻️魔都资源[资]",
  615. "type": 3,
  616. "api": "./drpy_libs/drpy2.min.js",
  617. "searchable": 1,
  618. "quickSearch": 1,
  619. "filterable": 1,
  620. "order_num": 0,
  621. "ext": "./drpy_js/魔都资源[资].js"
  622. },
  623. {
  624. "key": "hipy_js_索尼资源[资]",
  625. "name": "♻️索尼资源[资]",
  626. "type": 3,
  627. "api": "./drpy_libs/drpy2.min.js",
  628. "searchable": 1,
  629. "quickSearch": 1,
  630. "filterable": 1,
  631. "order_num": 0,
  632. "ext": "./drpy_js/索尼资源[资].js"
  633. },
  634. {
  635. "key": "hipy_js_文才[资]",
  636. "name": "♻️文才[资]",
  637. "type": 3,
  638. "api": "./drpy_libs/drpy2.min.js",
  639. "searchable": 1,
  640. "quickSearch": 1,
  641. "filterable": 1,
  642. "order_num": 0,
  643. "ext": "./drpy_js/文才[资].js"
  644. },
  645. {
  646. "key": "hipy_js_文才2[资]",
  647. "name": "♻️文才2[资]",
  648. "type": 3,
  649. "api": "./drpy_libs/drpy2.min.js",
  650. "searchable": 1,
  651. "quickSearch": 1,
  652. "filterable": 1,
  653. "order_num": 0,
  654. "ext": "./drpy_js/文才2[资].js"
  655. },
  656. {
  657. "key": "hipy_js_卧龙资源[资]",
  658. "name": "♻️卧龙资源[资]",
  659. "type": 3,
  660. "api": "./drpy_libs/drpy2.min.js",
  661. "searchable": 1,
  662. "quickSearch": 1,
  663. "filterable": 1,
  664. "order_num": 0,
  665. "ext": "./drpy_js/卧龙资源[资].js"
  666. },
  667. {
  668. "key": "hipy_js_iku喵[资]",
  669. "name": "♻️iku喵[资]",
  670. "type": 3,
  671. "api": "./drpy_libs/drpy2.min.js",
  672. "searchable": 1,
  673. "quickSearch": 1,
  674. "filterable": 1,
  675. "order_num": 0,
  676. "ext": "./drpy_js/iku喵[资].js"
  677. },
  678. {
  679. "key": "hipy_js_ok资源[资]",
  680. "name": "♻️ok资源[资]",
  681. "type": 3,
  682. "api": "./drpy_libs/drpy2.min.js",
  683. "searchable": 1,
  684. "quickSearch": 1,
  685. "filterable": 1,
  686. "order_num": 0,
  687. "ext": "./drpy_js/ok资源[资].js"
  688. },
  689. {
  690. "key": "hipy_js_01看球[球]",
  691. "name": "⚽01看球[球]",
  692. "type": 3,
  693. "api": "./drpy_libs/drpy2.min.js",
  694. "searchable": 1,
  695. "quickSearch": 1,
  696. "filterable": 1,
  697. "order_num": 0,
  698. "ext": "./drpy_js/01看球[球].js"
  699. },
  700. {
  701. "key": "hipy_js_310直播[球]",
  702. "name": "⚽310直播[球]",
  703. "type": 3,
  704. "api": "./drpy_libs/drpy2.min.js",
  705. "searchable": 1,
  706. "quickSearch": 1,
  707. "filterable": 1,
  708. "order_num": 0,
  709. "ext": "./drpy_js/310直播[球].js"
  710. },
  711. {
  712. "key": "hipy_js_360吧[球]",
  713. "name": "⚽360吧[球]",
  714. "type": 3,
  715. "api": "./drpy_libs/drpy2.min.js",
  716. "searchable": 1,
  717. "quickSearch": 1,
  718. "filterable": 1,
  719. "order_num": 0,
  720. "ext": "./drpy_js/360吧[球].js"
  721. },
  722. {
  723. "key": "hipy_js_88看球[球]",
  724. "name": "⚽88看球[球]",
  725. "type": 3,
  726. "api": "./drpy_libs/drpy2.min.js",
  727. "searchable": 1,
  728. "quickSearch": 1,
  729. "filterable": 1,
  730. "order_num": 0,
  731. "ext": "./drpy_js/88看球[球].js"
  732. },
  733. {
  734. "key": "hipy_js_555影视[飞]",
  735. "name": "✈️555影视[飞]",
  736. "type": 3,
  737. "api": "./drpy_libs/drpy2.min.js",
  738. "searchable": 1,
  739. "quickSearch": 1,
  740. "filterable": 1,
  741. "order_num": 0,
  742. "ext": "./drpy_js/555影视[飞].js"
  743. },
  744. {
  745. "key": "hipy_js_script直播[飞]",
  746. "name": "✈️script直播[飞]",
  747. "type": 3,
  748. "api": "./drpy_libs/drpy2.min.js",
  749. "searchable": 1,
  750. "quickSearch": 1,
  751. "filterable": 1,
  752. "order_num": 0,
  753. "ext": "./drpy_js/script直播[飞].js"
  754. },
  755. {
  756. "key": "hipy_js_啊哈DJ[听]",
  757. "name": "🎧啊哈DJ[听]",
  758. "type": 3,
  759. "api": "./drpy_libs/drpy2.min.js",
  760. "searchable": 1,
  761. "quickSearch": 1,
  762. "filterable": 1,
  763. "order_num": 0,
  764. "ext": "./drpy_js/啊哈DJ[听].js"
  765. },
  766. {
  767. "key": "hipy_js_爱车MV[听]",
  768. "name": "🎧爱车MV[听]",
  769. "type": 3,
  770. "api": "./drpy_libs/drpy2.min.js",
  771. "searchable": 1,
  772. "quickSearch": 1,
  773. "filterable": 1,
  774. "order_num": 0,
  775. "ext": "./drpy_js/爱车MV[听].js"
  776. },
  777. {
  778. "key": "hipy_js_爱上你听书网[听]",
  779. "name": "🎧爱上你听书网[听]",
  780. "type": 3,
  781. "api": "./drpy_libs/drpy2.min.js",
  782. "searchable": 1,
  783. "quickSearch": 1,
  784. "filterable": 1,
  785. "order_num": 0,
  786. "ext": "./drpy_js/爱上你听书网[听].js"
  787. },
  788. {
  789. "key": "hipy_js_播客[听]",
  790. "name": "🎧播客[听]",
  791. "type": 3,
  792. "api": "./drpy_libs/drpy2.min.js",
  793. "searchable": 1,
  794. "quickSearch": 1,
  795. "filterable": 1,
  796. "order_num": 0,
  797. "ext": "./drpy_js/播客[听].js"
  798. },
  799. {
  800. "key": "hipy_js_博看听书[听]",
  801. "name": "🎧博看听书[听]",
  802. "type": 3,
  803. "api": "./drpy_libs/drpy2.min.js",
  804. "searchable": 1,
  805. "quickSearch": 1,
  806. "filterable": 1,
  807. "order_num": 0,
  808. "ext": "./drpy_js/博看听书[听].js"
  809. },
  810. {
  811. "key": "hipy_js_广播迷FM[听]",
  812. "name": "🎧广播迷FM[听]",
  813. "type": 3,
  814. "api": "./drpy_libs/drpy2.min.js",
  815. "searchable": 1,
  816. "quickSearch": 1,
  817. "filterable": 1,
  818. "order_num": 0,
  819. "ext": "./drpy_js/广播迷FM[听].js"
  820. },
  821. {
  822. "key": "hipy_js_海洋听书[听]",
  823. "name": "🎧海洋听书[听]",
  824. "type": 3,
  825. "api": "./drpy_libs/drpy2.min.js",
  826. "searchable": 1,
  827. "quickSearch": 1,
  828. "filterable": 1,
  829. "order_num": 0,
  830. "ext": "./drpy_js/海洋听书[听].js"
  831. },
  832. {
  833. "key": "hipy_js_酷狗[听]",
  834. "name": "🎧酷狗[听]",
  835. "type": 3,
  836. "api": "./drpy_libs/drpy2.min.js",
  837. "searchable": 1,
  838. "quickSearch": 1,
  839. "filterable": 1,
  840. "order_num": 0,
  841. "ext": "./drpy_js/酷狗[听].js"
  842. },
  843. {
  844. "key": "hipy_js_酷我听书[听]",
  845. "name": "🎧酷我听书[听]",
  846. "type": 3,
  847. "api": "./drpy_libs/drpy2.min.js",
  848. "searchable": 1,
  849. "quickSearch": 1,
  850. "filterable": 1,
  851. "order_num": 0,
  852. "ext": "./drpy_js/酷我听书[听].js"
  853. },
  854. {
  855. "key": "hipy_js_老白故事[听]",
  856. "name": "🎧老白故事[听]",
  857. "type": 3,
  858. "api": "./drpy_libs/drpy2.min.js",
  859. "searchable": 1,
  860. "quickSearch": 1,
  861. "filterable": 1,
  862. "order_num": 0,
  863. "ext": "./drpy_js/老白故事[听].js"
  864. },
  865. {
  866. "key": "hipy_js_六月听书[听]",
  867. "name": "🎧六月听书[听]",
  868. "type": 3,
  869. "api": "./drpy_libs/drpy2.min.js",
  870. "searchable": 1,
  871. "quickSearch": 1,
  872. "filterable": 1,
  873. "order_num": 0,
  874. "ext": "./drpy_js/六月听书[听].js"
  875. },
  876. {
  877. "key": "hipy_js_清风DJ[听]",
  878. "name": "🎧清风DJ[听]",
  879. "type": 3,
  880. "api": "./drpy_libs/drpy2.min.js",
  881. "searchable": 1,
  882. "quickSearch": 1,
  883. "filterable": 1,
  884. "order_num": 0,
  885. "ext": "./drpy_js/清风DJ[听].js"
  886. },
  887. {
  888. "key": "hipy_js_世纪DJ音乐网[听]",
  889. "name": "🎧世纪DJ音乐网[听]",
  890. "type": 3,
  891. "api": "./drpy_libs/drpy2.min.js",
  892. "searchable": 1,
  893. "quickSearch": 1,
  894. "filterable": 1,
  895. "order_num": 0,
  896. "ext": "./drpy_js/世纪DJ音乐网[听].js"
  897. },
  898. {
  899. "key": "hipy_js_喜马拉雅[听]",
  900. "name": "🎧喜马拉雅[听]",
  901. "type": 3,
  902. "api": "./drpy_libs/drpy2.min.js",
  903. "searchable": 1,
  904. "quickSearch": 1,
  905. "filterable": 1,
  906. "order_num": 0,
  907. "ext": "./drpy_js/喜马拉雅[听].js"
  908. },
  909. {
  910. "key": "hipy_js_相声随身听[听]",
  911. "name": "🎧相声随身听[听]",
  912. "type": 3,
  913. "api": "./drpy_libs/drpy2.min.js",
  914. "searchable": 1,
  915. "quickSearch": 1,
  916. "filterable": 1,
  917. "order_num": 0,
  918. "ext": "./drpy_js/相声随身听[听].js"
  919. },
  920. {
  921. "key": "hipy_js_有声绘本网[听]",
  922. "name": "🎧有声绘本网[听]",
  923. "type": 3,
  924. "api": "./drpy_libs/drpy2.min.js",
  925. "searchable": 1,
  926. "quickSearch": 1,
  927. "filterable": 1,
  928. "order_num": 0,
  929. "ext": "./drpy_js/有声绘本网[听].js"
  930. },
  931. {
  932. "key": "hipy_js_有声听书网[听]",
  933. "name": "🎧有声听书网[听]",
  934. "type": 3,
  935. "api": "./drpy_libs/drpy2.min.js",
  936. "searchable": 1,
  937. "quickSearch": 1,
  938. "filterable": 1,
  939. "order_num": 0,
  940. "ext": "./drpy_js/有声听书网[听].js"
  941. },
  942. {
  943. "key": "hipy_js_有声小说吧[听]",
  944. "name": "🎧有声小说吧[听]",
  945. "type": 3,
  946. "api": "./drpy_libs/drpy2.min.js",
  947. "searchable": 1,
  948. "quickSearch": 1,
  949. "filterable": 1,
  950. "order_num": 0,
  951. "ext": "./drpy_js/有声小说吧[听].js"
  952. },
  953. {
  954. "key": "hipy_js_中华听书网[听]",
  955. "name": "🎧中华听书网[听]",
  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": "🎧种子音乐[听]",
  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_ASMR[听]",
  977. "name": "🎧ASMR[听]",
  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/ASMR[听].js"
  985. },
  986. {
  987. "key": "hipy_js_DJ呦呦[听]",
  988. "name": "🎧DJ呦呦[听]",
  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/DJ呦呦[听].js"
  996. },
  997. {
  998. "key": "hipy_js_i275听书[听]",
  999. "name": "🎧i275听书[听]",
  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/i275听书[听].js"
  1007. },
  1008. {
  1009. "key": "hipy_js_KTV歌厅[听]",
  1010. "name": "🎧KTV歌厅[听]",
  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/KTV歌厅[听].js"
  1018. },
  1019. {
  1020. "key": "hipy_js_UAA[听]",
  1021. "name": "🎧UAA[听]",
  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/UAA[听].js"
  1029. },
  1030. {
  1031. "key": "hipy_js_爱看机器人[虫]",
  1032. "name": "🐞爱看机器人[虫]",
  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": "👶贝乐虎[儿]",
  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": "hipy_js_童趣[儿]",
  1054. "name": "👶童趣[儿]",
  1055. "type": 3,
  1056. "api": "./drpy_libs/drpy2.min.js",
  1057. "searchable": 1,
  1058. "quickSearch": 1,
  1059. "filterable": 1,
  1060. "order_num": 0,
  1061. "ext": "./drpy_js/童趣[儿].js"
  1062. },
  1063. {
  1064. "key": "hipy_js_兔小贝[儿]",
  1065. "name": "👶兔小贝[儿]",
  1066. "type": 3,
  1067. "api": "./drpy_libs/drpy2.min.js",
  1068. "searchable": 1,
  1069. "quickSearch": 1,
  1070. "filterable": 1,
  1071. "order_num": 0,
  1072. "ext": "./drpy_js/兔小贝[儿].js"
  1073. },
  1074. {
  1075. "key": "hipy_js_58动漫[漫]",
  1076. "name": "💮58动漫[漫]",
  1077. "type": 3,
  1078. "api": "./drpy_libs/drpy2.min.js",
  1079. "searchable": 1,
  1080. "quickSearch": 1,
  1081. "filterable": 1,
  1082. "order_num": 0,
  1083. "ext": "./drpy_js/58动漫[漫].js"
  1084. },
  1085. {
  1086. "key": "hipy_js_爱弹幕[漫]",
  1087. "name": "💮爱弹幕[漫]",
  1088. "type": 3,
  1089. "api": "./drpy_libs/drpy2.min.js",
  1090. "searchable": 1,
  1091. "quickSearch": 1,
  1092. "filterable": 1,
  1093. "order_num": 0,
  1094. "ext": "./drpy_js/爱弹幕[漫].js"
  1095. },
  1096. {
  1097. "key": "hipy_js_次元城动漫[漫]",
  1098. "name": "💮次元城动漫[漫]",
  1099. "type": 3,
  1100. "api": "./drpy_libs/drpy2.min.js",
  1101. "searchable": 1,
  1102. "quickSearch": 1,
  1103. "filterable": 1,
  1104. "order_num": 0,
  1105. "ext": "./drpy_js/次元城动漫[漫].js"
  1106. },
  1107. {
  1108. "key": "hipy_js_大米动漫[漫]",
  1109. "name": "💮大米动漫[漫]",
  1110. "type": 3,
  1111. "api": "./drpy_libs/drpy2.min.js",
  1112. "searchable": 1,
  1113. "quickSearch": 1,
  1114. "filterable": 1,
  1115. "order_num": 0,
  1116. "ext": "./drpy_js/大米动漫[漫].js"
  1117. },
  1118. {
  1119. "key": "hipy_js_动漫巴士[漫]",
  1120. "name": "💮动漫巴士[漫]",
  1121. "type": 3,
  1122. "api": "./drpy_libs/drpy2.min.js",
  1123. "searchable": 1,
  1124. "quickSearch": 1,
  1125. "filterable": 1,
  1126. "order_num": 0,
  1127. "ext": "./drpy_js/动漫巴士[漫].js"
  1128. },
  1129. {
  1130. "key": "hipy_js_动漫网[漫]",
  1131. "name": "💮动漫网[漫]",
  1132. "type": 3,
  1133. "api": "./drpy_libs/drpy2.min.js",
  1134. "searchable": 1,
  1135. "quickSearch": 1,
  1136. "filterable": 1,
  1137. "order_num": 0,
  1138. "ext": "./drpy_js/动漫网[漫].js"
  1139. },
  1140. {
  1141. "key": "hipy_js_咕咕番[漫]",
  1142. "name": "💮咕咕番[漫]",
  1143. "type": 3,
  1144. "api": "./drpy_libs/drpy2.min.js",
  1145. "searchable": 1,
  1146. "quickSearch": 1,
  1147. "filterable": 1,
  1148. "order_num": 0,
  1149. "ext": "./drpy_js/咕咕番[漫].js"
  1150. },
  1151. {
  1152. "key": "hipy_js_花子动漫[漫]",
  1153. "name": "💮花子动漫[漫]",
  1154. "type": 3,
  1155. "api": "./drpy_libs/drpy2.min.js",
  1156. "searchable": 1,
  1157. "quickSearch": 1,
  1158. "filterable": 1,
  1159. "order_num": 0,
  1160. "ext": "./drpy_js/花子动漫[漫].js"
  1161. },
  1162. {
  1163. "key": "hipy_js_路漫漫[漫]",
  1164. "name": "💮路漫漫[漫]",
  1165. "type": 3,
  1166. "api": "./drpy_libs/drpy2.min.js",
  1167. "searchable": 1,
  1168. "quickSearch": 1,
  1169. "filterable": 1,
  1170. "order_num": 0,
  1171. "ext": "./drpy_js/路漫漫[漫].js"
  1172. },
  1173. {
  1174. "key": "hipy_js_驴番[漫]",
  1175. "name": "💮驴番[漫]",
  1176. "type": 3,
  1177. "api": "./drpy_libs/drpy2.min.js",
  1178. "searchable": 1,
  1179. "quickSearch": 1,
  1180. "filterable": 1,
  1181. "order_num": 0,
  1182. "ext": "./drpy_js/驴番[漫].js"
  1183. },
  1184. {
  1185. "key": "hipy_js_萌番[漫]",
  1186. "name": "💮萌番[漫]",
  1187. "type": 3,
  1188. "api": "./drpy_libs/drpy2.min.js",
  1189. "searchable": 1,
  1190. "quickSearch": 1,
  1191. "filterable": 1,
  1192. "order_num": 0,
  1193. "ext": "./drpy_js/萌番[漫].js"
  1194. },
  1195. {
  1196. "key": "hipy_js_七色番[漫]",
  1197. "name": "💮七色番[漫]",
  1198. "type": 3,
  1199. "api": "./drpy_libs/drpy2.min.js",
  1200. "searchable": 1,
  1201. "quickSearch": 1,
  1202. "filterable": 1,
  1203. "order_num": 0,
  1204. "ext": "./drpy_js/七色番[漫].js"
  1205. },
  1206. {
  1207. "key": "hipy_js_奇米动漫[漫]",
  1208. "name": "💮奇米动漫[漫]",
  1209. "type": 3,
  1210. "api": "./drpy_libs/drpy2.min.js",
  1211. "searchable": 1,
  1212. "quickSearch": 1,
  1213. "filterable": 1,
  1214. "order_num": 0,
  1215. "ext": "./drpy_js/奇米动漫[漫].js"
  1216. },
  1217. {
  1218. "key": "hipy_js_维奇动漫[漫]",
  1219. "name": "💮维奇动漫[漫]",
  1220. "type": 3,
  1221. "api": "./drpy_libs/drpy2.min.js",
  1222. "searchable": 1,
  1223. "quickSearch": 1,
  1224. "filterable": 1,
  1225. "order_num": 0,
  1226. "ext": "./drpy_js/维奇动漫[漫].js"
  1227. },
  1228. {
  1229. "key": "hipy_js_怡萱动漫[漫]",
  1230. "name": "💮怡萱动漫[漫]",
  1231. "type": 3,
  1232. "api": "./drpy_libs/drpy2.min.js",
  1233. "searchable": 1,
  1234. "quickSearch": 1,
  1235. "filterable": 1,
  1236. "order_num": 0,
  1237. "ext": "./drpy_js/怡萱动漫[漫].js"
  1238. },
  1239. {
  1240. "key": "hipy_js_樱花动漫[漫]",
  1241. "name": "💮樱花动漫[漫]",
  1242. "type": 3,
  1243. "api": "./drpy_libs/drpy2.min.js",
  1244. "searchable": 1,
  1245. "quickSearch": 1,
  1246. "filterable": 1,
  1247. "order_num": 0,
  1248. "ext": "./drpy_js/樱花动漫[漫].js"
  1249. },
  1250. {
  1251. "key": "hipy_js_MuteFun[漫]",
  1252. "name": "💮MuteFun[漫]",
  1253. "type": 3,
  1254. "api": "./drpy_libs/drpy2.min.js",
  1255. "searchable": 1,
  1256. "quickSearch": 1,
  1257. "filterable": 1,
  1258. "order_num": 0,
  1259. "ext": "./drpy_js/MuteFun[漫].js"
  1260. },
  1261. {
  1262. "key": "hipy_js_NT动漫[漫]",
  1263. "name": "💮NT动漫[漫]",
  1264. "type": 3,
  1265. "api": "./drpy_libs/drpy2.min.js",
  1266. "searchable": 1,
  1267. "quickSearch": 1,
  1268. "filterable": 1,
  1269. "order_num": 0,
  1270. "ext": "./drpy_js/NT动漫[漫].js"
  1271. },
  1272. {
  1273. "key": "hipy_js_OmoFun[漫]",
  1274. "name": "💮OmoFun[漫]",
  1275. "type": 3,
  1276. "api": "./drpy_libs/drpy2.min.js",
  1277. "searchable": 1,
  1278. "quickSearch": 1,
  1279. "filterable": 1,
  1280. "order_num": 0,
  1281. "ext": "./drpy_js/OmoFun[漫].js"
  1282. },
  1283. {
  1284. "key": "hipy_js_阿里土豆[盘]",
  1285. "name": "💾阿里土豆[盘]",
  1286. "type": 3,
  1287. "api": "./drpy_libs/drpy2.min.js",
  1288. "searchable": 1,
  1289. "quickSearch": 1,
  1290. "filterable": 1,
  1291. "order_num": 0,
  1292. "ext": "./drpy_js/阿里土豆[盘].js"
  1293. },
  1294. {
  1295. "key": "hipy_js_橘子柚[盘]",
  1296. "name": "💾橘子柚[盘]",
  1297. "type": 3,
  1298. "api": "./drpy_libs/drpy2.min.js",
  1299. "searchable": 1,
  1300. "quickSearch": 1,
  1301. "filterable": 1,
  1302. "order_num": 0,
  1303. "ext": "./drpy_js/橘子柚[盘].js"
  1304. },
  1305. {
  1306. "key": "hipy_js_蜡笔[盘]",
  1307. "name": "💾蜡笔[盘]",
  1308. "type": 3,
  1309. "api": "./drpy_libs/drpy2.min.js",
  1310. "searchable": 1,
  1311. "quickSearch": 1,
  1312. "filterable": 1,
  1313. "order_num": 0,
  1314. "ext": "./drpy_js/蜡笔[盘].js"
  1315. },
  1316. {
  1317. "key": "hipy_js_六趣阿里[盘]",
  1318. "name": "💾六趣阿里[盘]",
  1319. "type": 3,
  1320. "api": "./drpy_libs/drpy2.min.js",
  1321. "searchable": 1,
  1322. "quickSearch": 1,
  1323. "filterable": 1,
  1324. "order_num": 0,
  1325. "ext": "./drpy_js/六趣阿里[盘].js"
  1326. },
  1327. {
  1328. "key": "hipy_js_木偶哥哥[盘]",
  1329. "name": "💾木偶哥哥[盘]",
  1330. "type": 3,
  1331. "api": "./drpy_libs/drpy2.min.js",
  1332. "searchable": 1,
  1333. "quickSearch": 1,
  1334. "filterable": 1,
  1335. "order_num": 0,
  1336. "ext": "./drpy_js/木偶哥哥[盘].js"
  1337. },
  1338. {
  1339. "key": "hipy_js_玩偶哥哥[盘]",
  1340. "name": "💾玩偶哥哥[盘]",
  1341. "type": 3,
  1342. "api": "./drpy_libs/drpy2.min.js",
  1343. "searchable": 1,
  1344. "quickSearch": 1,
  1345. "filterable": 1,
  1346. "order_num": 0,
  1347. "ext": "./drpy_js/玩偶哥哥[盘].js"
  1348. },
  1349. {
  1350. "key": "hipy_js_云盘资源网[盘]",
  1351. "name": "💾云盘资源网[盘]",
  1352. "type": 3,
  1353. "api": "./drpy_libs/drpy2.min.js",
  1354. "searchable": 1,
  1355. "quickSearch": 1,
  1356. "filterable": 1,
  1357. "order_num": 0,
  1358. "ext": "./drpy_js/云盘资源网[盘].js"
  1359. },
  1360. {
  1361. "key": "hipy_js_至臻[盘]",
  1362. "name": "💾至臻[盘]",
  1363. "type": 3,
  1364. "api": "./drpy_libs/drpy2.min.js",
  1365. "searchable": 1,
  1366. "quickSearch": 1,
  1367. "filterable": 1,
  1368. "order_num": 0,
  1369. "ext": "./drpy_js/至臻[盘].js"
  1370. },
  1371. {
  1372. "key": "hipy_js_7猫小说[书]",
  1373. "name": "📚7猫小说[书]",
  1374. "type": 3,
  1375. "api": "./drpy_libs/drpy2.min.js",
  1376. "searchable": 1,
  1377. "quickSearch": 1,
  1378. "filterable": 1,
  1379. "order_num": 0,
  1380. "ext": "./drpy_js/7猫小说[书].js"
  1381. },
  1382. {
  1383. "key": "hipy_js_笔趣阁[书]",
  1384. "name": "📚笔趣阁[书]",
  1385. "type": 3,
  1386. "api": "./drpy_libs/drpy2.min.js",
  1387. "searchable": 1,
  1388. "quickSearch": 1,
  1389. "filterable": 1,
  1390. "order_num": 0,
  1391. "ext": "./drpy_js/笔趣阁[书].js"
  1392. },
  1393. {
  1394. "key": "hipy_js_笔趣阁13[书]",
  1395. "name": "📚笔趣阁13[书]",
  1396. "type": 3,
  1397. "api": "./drpy_libs/drpy2.min.js",
  1398. "searchable": 1,
  1399. "quickSearch": 1,
  1400. "filterable": 1,
  1401. "order_num": 0,
  1402. "ext": "./drpy_js/笔趣阁13[书].js"
  1403. },
  1404. {
  1405. "key": "hipy_js_顶点小说[书]",
  1406. "name": "📚顶点小说[书]",
  1407. "type": 3,
  1408. "api": "./drpy_libs/drpy2.min.js",
  1409. "searchable": 1,
  1410. "quickSearch": 1,
  1411. "filterable": 1,
  1412. "order_num": 0,
  1413. "ext": "./drpy_js/顶点小说[书].js"
  1414. },
  1415. {
  1416. "key": "hipy_js_顶点小说2[书]",
  1417. "name": "📚顶点小说2[书]",
  1418. "type": 3,
  1419. "api": "./drpy_libs/drpy2.min.js",
  1420. "searchable": 1,
  1421. "quickSearch": 1,
  1422. "filterable": 1,
  1423. "order_num": 0,
  1424. "ext": "./drpy_js/顶点小说2[书].js"
  1425. },
  1426. {
  1427. "key": "hipy_js_番茄小说[书]",
  1428. "name": "📚番茄小说[书]",
  1429. "type": 3,
  1430. "api": "./drpy_libs/drpy2.min.js",
  1431. "searchable": 1,
  1432. "quickSearch": 1,
  1433. "filterable": 1,
  1434. "order_num": 0,
  1435. "ext": "./drpy_js/番茄小说[书].js"
  1436. },
  1437. {
  1438. "key": "hipy_js_飞翔鸟[书]",
  1439. "name": "📚飞翔鸟[书]",
  1440. "type": 3,
  1441. "api": "./drpy_libs/drpy2.min.js",
  1442. "searchable": 1,
  1443. "quickSearch": 1,
  1444. "filterable": 1,
  1445. "order_num": 0,
  1446. "ext": "./drpy_js/飞翔鸟[书].js"
  1447. },
  1448. {
  1449. "key": "hipy_js_我看书斋[书]",
  1450. "name": "📚我看书斋[书]",
  1451. "type": 3,
  1452. "api": "./drpy_libs/drpy2.min.js",
  1453. "searchable": 1,
  1454. "quickSearch": 1,
  1455. "filterable": 1,
  1456. "order_num": 0,
  1457. "ext": "./drpy_js/我看书斋[书].js"
  1458. },
  1459. {
  1460. "key": "hipy_js_丫丫电子书[书]",
  1461. "name": "📚丫丫电子书[书]",
  1462. "type": 3,
  1463. "api": "./drpy_libs/drpy2.min.js",
  1464. "searchable": 1,
  1465. "quickSearch": 1,
  1466. "filterable": 1,
  1467. "order_num": 0,
  1468. "ext": "./drpy_js/丫丫电子书[书].js"
  1469. },
  1470. {
  1471. "key": "hipy_js_🤡爱你短剧[🤡]",
  1472. "name": "📲🤡爱你短剧[🤡]",
  1473. "type": 3,
  1474. "api": "./drpy_libs/drpy2.min.js",
  1475. "searchable": 1,
  1476. "quickSearch": 1,
  1477. "filterable": 1,
  1478. "order_num": 0,
  1479. "ext": "./drpy_js/🤡爱你短剧[🤡].js"
  1480. },
  1481. {
  1482. "key": "hipy_js_爱看短剧[盘]",
  1483. "name": "📲爱看短剧[盘]",
  1484. "type": 3,
  1485. "api": "./drpy_libs/drpy2.min.js",
  1486. "searchable": 1,
  1487. "quickSearch": 1,
  1488. "filterable": 1,
  1489. "order_num": 0,
  1490. "ext": "./drpy_js/爱看短剧[盘].js"
  1491. },
  1492. {
  1493. "key": "hipy_js_爱你短剧",
  1494. "name": "📲爱你短剧",
  1495. "type": 3,
  1496. "api": "./drpy_libs/drpy2.min.js",
  1497. "searchable": 1,
  1498. "quickSearch": 1,
  1499. "filterable": 1,
  1500. "order_num": 0,
  1501. "ext": "./drpy_js/爱你短剧.js"
  1502. },
  1503. {
  1504. "key": "hipy_js_榜一短剧",
  1505. "name": "📲榜一短剧",
  1506. "type": 3,
  1507. "api": "./drpy_libs/drpy2.min.js",
  1508. "searchable": 1,
  1509. "quickSearch": 1,
  1510. "filterable": 1,
  1511. "order_num": 0,
  1512. "ext": "./drpy_js/榜一短剧.js"
  1513. },
  1514. {
  1515. "key": "hipy_js_短剧狗[短]",
  1516. "name": "📲短剧狗[短]",
  1517. "type": 3,
  1518. "api": "./drpy_libs/drpy2.min.js",
  1519. "searchable": 1,
  1520. "quickSearch": 1,
  1521. "filterable": 1,
  1522. "order_num": 0,
  1523. "ext": "./drpy_js/短剧狗[短].js"
  1524. },
  1525. {
  1526. "key": "hipy_js_短剧天堂",
  1527. "name": "📲短剧天堂",
  1528. "type": 3,
  1529. "api": "./drpy_libs/drpy2.min.js",
  1530. "searchable": 1,
  1531. "quickSearch": 1,
  1532. "filterable": 1,
  1533. "order_num": 0,
  1534. "ext": "./drpy_js/短剧天堂.js"
  1535. },
  1536. {
  1537. "key": "hipy_js_短剧在线",
  1538. "name": "📲短剧在线",
  1539. "type": 3,
  1540. "api": "./drpy_libs/drpy2.min.js",
  1541. "searchable": 1,
  1542. "quickSearch": 1,
  1543. "filterable": 1,
  1544. "order_num": 0,
  1545. "ext": "./drpy_js/短剧在线.js"
  1546. },
  1547. {
  1548. "key": "hipy_js_短剧TV网",
  1549. "name": "📲短剧TV网",
  1550. "type": 3,
  1551. "api": "./drpy_libs/drpy2.min.js",
  1552. "searchable": 1,
  1553. "quickSearch": 1,
  1554. "filterable": 1,
  1555. "order_num": 0,
  1556. "ext": "./drpy_js/短剧TV网.js"
  1557. },
  1558. {
  1559. "key": "hipy_js_分享短视频",
  1560. "name": "📲分享短视频",
  1561. "type": 3,
  1562. "api": "./drpy_libs/drpy2.min.js",
  1563. "searchable": 1,
  1564. "quickSearch": 1,
  1565. "filterable": 1,
  1566. "order_num": 0,
  1567. "ext": "./drpy_js/分享短视频.js"
  1568. },
  1569. {
  1570. "key": "hipy_js_红果短剧网[自动]",
  1571. "name": "📲红果短剧网[自动]",
  1572. "type": 3,
  1573. "api": "./drpy_libs/drpy2.min.js",
  1574. "searchable": 1,
  1575. "quickSearch": 1,
  1576. "filterable": 1,
  1577. "order_num": 0,
  1578. "ext": "./drpy_js/红果短剧网[自动].js"
  1579. },
  1580. {
  1581. "key": "hipy_js_星芽[短]",
  1582. "name": "📲星芽[短]",
  1583. "type": 3,
  1584. "api": "./drpy_libs/drpy2.min.js",
  1585. "searchable": 1,
  1586. "quickSearch": 1,
  1587. "filterable": 1,
  1588. "order_num": 0,
  1589. "ext": "./drpy_js/星芽[短].js"
  1590. },
  1591. {
  1592. "key": "hipy_js_星芽短剧app",
  1593. "name": "📲星芽短剧app",
  1594. "type": 3,
  1595. "api": "./drpy_libs/drpy2.min.js",
  1596. "searchable": 1,
  1597. "quickSearch": 1,
  1598. "filterable": 1,
  1599. "order_num": 0,
  1600. "ext": "./drpy_js/星芽短剧app.js"
  1601. },
  1602. {
  1603. "key": "hipy_js_MM短剧[短]",
  1604. "name": "📲MM短剧[短]",
  1605. "type": 3,
  1606. "api": "./drpy_libs/drpy2.min.js",
  1607. "searchable": 1,
  1608. "quickSearch": 1,
  1609. "filterable": 1,
  1610. "order_num": 0,
  1611. "ext": "./drpy_js/MM短剧[短].js"
  1612. },
  1613. {
  1614. "key": "hipy_js_📺FreeOK[📺]",
  1615. "name": "📺📺FreeOK[📺]",
  1616. "type": 3,
  1617. "api": "./drpy_libs/drpy2.min.js",
  1618. "searchable": 1,
  1619. "quickSearch": 1,
  1620. "filterable": 1,
  1621. "order_num": 0,
  1622. "ext": "./drpy_js/📺FreeOK[📺].js"
  1623. },
  1624. {
  1625. "key": "hipy_js_0855影视",
  1626. "name": "📺0855影视",
  1627. "type": 3,
  1628. "api": "./drpy_libs/drpy2.min.js",
  1629. "searchable": 1,
  1630. "quickSearch": 1,
  1631. "filterable": 1,
  1632. "order_num": 0,
  1633. "ext": "./drpy_js/0855影视.js"
  1634. },
  1635. {
  1636. "key": "hipy_js_1_玩偶哥盘",
  1637. "name": "📺1_玩偶哥盘",
  1638. "type": 3,
  1639. "api": "./drpy_libs/drpy2.min.js",
  1640. "searchable": 1,
  1641. "quickSearch": 1,
  1642. "filterable": 1,
  1643. "order_num": 0,
  1644. "ext": "./drpy_js/1_玩偶哥盘.js"
  1645. },
  1646. {
  1647. "key": "hipy_js_29片库",
  1648. "name": "📺29片库",
  1649. "type": 3,
  1650. "api": "./drpy_libs/drpy2.min.js",
  1651. "searchable": 1,
  1652. "quickSearch": 1,
  1653. "filterable": 1,
  1654. "order_num": 0,
  1655. "ext": "./drpy_js/29片库.js"
  1656. },
  1657. {
  1658. "key": "hipy_js_2千动漫",
  1659. "name": "📺2千动漫",
  1660. "type": 3,
  1661. "api": "./drpy_libs/drpy2.min.js",
  1662. "searchable": 1,
  1663. "quickSearch": 1,
  1664. "filterable": 1,
  1665. "order_num": 0,
  1666. "ext": "./drpy_js/2千动漫.js"
  1667. },
  1668. {
  1669. "key": "hipy_js_348电影网",
  1670. "name": "📺348电影网",
  1671. "type": 3,
  1672. "api": "./drpy_libs/drpy2.min.js",
  1673. "searchable": 1,
  1674. "quickSearch": 1,
  1675. "filterable": 1,
  1676. "order_num": 0,
  1677. "ext": "./drpy_js/348电影网.js"
  1678. },
  1679. {
  1680. "key": "hipy_js_360ys",
  1681. "name": "📺360ys",
  1682. "type": 3,
  1683. "api": "./drpy_libs/drpy2.min.js",
  1684. "searchable": 1,
  1685. "quickSearch": 1,
  1686. "filterable": 1,
  1687. "order_num": 0,
  1688. "ext": "./drpy_js/360ys.js"
  1689. },
  1690. {
  1691. "key": "hipy_js_420电影院",
  1692. "name": "📺420电影院",
  1693. "type": 3,
  1694. "api": "./drpy_libs/drpy2.min.js",
  1695. "searchable": 1,
  1696. "quickSearch": 1,
  1697. "filterable": 1,
  1698. "order_num": 0,
  1699. "ext": "./drpy_js/420电影院.js"
  1700. },
  1701. {
  1702. "key": "hipy_js_4K-AV",
  1703. "name": "📺4K-AV",
  1704. "type": 3,
  1705. "api": "./drpy_libs/drpy2.min.js",
  1706. "searchable": 1,
  1707. "quickSearch": 1,
  1708. "filterable": 1,
  1709. "order_num": 0,
  1710. "ext": "./drpy_js/4K-AV.js"
  1711. },
  1712. {
  1713. "key": "hipy_js_4k电影馆",
  1714. "name": "📺4k电影馆",
  1715. "type": 3,
  1716. "api": "./drpy_libs/drpy2.min.js",
  1717. "searchable": 1,
  1718. "quickSearch": 1,
  1719. "filterable": 1,
  1720. "order_num": 0,
  1721. "ext": "./drpy_js/4k电影馆.js"
  1722. },
  1723. {
  1724. "key": "hipy_js_4k剧院",
  1725. "name": "📺4k剧院",
  1726. "type": 3,
  1727. "api": "./drpy_libs/drpy2.min.js",
  1728. "searchable": 1,
  1729. "quickSearch": 1,
  1730. "filterable": 1,
  1731. "order_num": 0,
  1732. "ext": "./drpy_js/4k剧院.js"
  1733. },
  1734. {
  1735. "key": "hipy_js_4khdr",
  1736. "name": "📺4khdr",
  1737. "type": 3,
  1738. "api": "./drpy_libs/drpy2.min.js",
  1739. "searchable": 1,
  1740. "quickSearch": 1,
  1741. "filterable": 1,
  1742. "order_num": 0,
  1743. "ext": "./drpy_js/4khdr.js"
  1744. },
  1745. {
  1746. "key": "hipy_js_539影视",
  1747. "name": "📺539影视",
  1748. "type": 3,
  1749. "api": "./drpy_libs/drpy2.min.js",
  1750. "searchable": 1,
  1751. "quickSearch": 1,
  1752. "filterable": 1,
  1753. "order_num": 0,
  1754. "ext": "./drpy_js/539影视.js"
  1755. },
  1756. {
  1757. "key": "hipy_js_58动漫",
  1758. "name": "📺58动漫",
  1759. "type": 3,
  1760. "api": "./drpy_libs/drpy2.min.js",
  1761. "searchable": 1,
  1762. "quickSearch": 1,
  1763. "filterable": 1,
  1764. "order_num": 0,
  1765. "ext": "./drpy_js/58动漫.js"
  1766. },
  1767. {
  1768. "key": "hipy_js_777影视",
  1769. "name": "📺777影视",
  1770. "type": 3,
  1771. "api": "./drpy_libs/drpy2.min.js",
  1772. "searchable": 1,
  1773. "quickSearch": 1,
  1774. "filterable": 1,
  1775. "order_num": 0,
  1776. "ext": "./drpy_js/777影视.js"
  1777. },
  1778. {
  1779. "key": "hipy_js_7喜影院",
  1780. "name": "📺7喜影院",
  1781. "type": 3,
  1782. "api": "./drpy_libs/drpy2.min.js",
  1783. "searchable": 1,
  1784. "quickSearch": 1,
  1785. "filterable": 1,
  1786. "order_num": 0,
  1787. "ext": "./drpy_js/7喜影院.js"
  1788. },
  1789. {
  1790. "key": "hipy_js_88看球",
  1791. "name": "📺88看球",
  1792. "type": 3,
  1793. "api": "./drpy_libs/drpy2.min.js",
  1794. "searchable": 1,
  1795. "quickSearch": 1,
  1796. "filterable": 1,
  1797. "order_num": 0,
  1798. "ext": "./drpy_js/88看球.js"
  1799. },
  1800. {
  1801. "key": "hipy_js_88影视网",
  1802. "name": "📺88影视网",
  1803. "type": 3,
  1804. "api": "./drpy_libs/drpy2.min.js",
  1805. "searchable": 1,
  1806. "quickSearch": 1,
  1807. "filterable": 1,
  1808. "order_num": 0,
  1809. "ext": "./drpy_js/88影视网.js"
  1810. },
  1811. {
  1812. "key": "hipy_js_8号影院",
  1813. "name": "📺8号影院",
  1814. "type": 3,
  1815. "api": "./drpy_libs/drpy2.min.js",
  1816. "searchable": 1,
  1817. "quickSearch": 1,
  1818. "filterable": 1,
  1819. "order_num": 0,
  1820. "ext": "./drpy_js/8号影院.js"
  1821. },
  1822. {
  1823. "key": "hipy_js_啊哈DJ[乐]",
  1824. "name": "📺啊哈DJ[乐]",
  1825. "type": 3,
  1826. "api": "./drpy_libs/drpy2.min.js",
  1827. "searchable": 1,
  1828. "quickSearch": 1,
  1829. "filterable": 1,
  1830. "order_num": 0,
  1831. "ext": "./drpy_js/啊哈DJ[乐].js"
  1832. },
  1833. {
  1834. "key": "hipy_js_爱爱影院",
  1835. "name": "📺爱爱影院",
  1836. "type": 3,
  1837. "api": "./drpy_libs/drpy2.min.js",
  1838. "searchable": 1,
  1839. "quickSearch": 1,
  1840. "filterable": 1,
  1841. "order_num": 0,
  1842. "ext": "./drpy_js/爱爱影院.js"
  1843. },
  1844. {
  1845. "key": "hipy_js_爱车MV",
  1846. "name": "📺爱车MV",
  1847. "type": 3,
  1848. "api": "./drpy_libs/drpy2.min.js",
  1849. "searchable": 1,
  1850. "quickSearch": 1,
  1851. "filterable": 1,
  1852. "order_num": 0,
  1853. "ext": "./drpy_js/爱车MV.js"
  1854. },
  1855. {
  1856. "key": "hipy_js_爱弹幕",
  1857. "name": "📺爱弹幕",
  1858. "type": 3,
  1859. "api": "./drpy_libs/drpy2.min.js",
  1860. "searchable": 1,
  1861. "quickSearch": 1,
  1862. "filterable": 1,
  1863. "order_num": 0,
  1864. "ext": "./drpy_js/爱弹幕.js"
  1865. },
  1866. {
  1867. "key": "hipy_js_爱迪影视",
  1868. "name": "📺爱迪影视",
  1869. "type": 3,
  1870. "api": "./drpy_libs/drpy2.min.js",
  1871. "searchable": 1,
  1872. "quickSearch": 1,
  1873. "filterable": 1,
  1874. "order_num": 0,
  1875. "ext": "./drpy_js/爱迪影视.js"
  1876. },
  1877. {
  1878. "key": "hipy_js_爱看影视",
  1879. "name": "📺爱看影视",
  1880. "type": 3,
  1881. "api": "./drpy_libs/drpy2.min.js",
  1882. "searchable": 1,
  1883. "quickSearch": 1,
  1884. "filterable": 1,
  1885. "order_num": 0,
  1886. "ext": "./drpy_js/爱看影视.js"
  1887. },
  1888. {
  1889. "key": "hipy_js_爱看影院",
  1890. "name": "📺爱看影院",
  1891. "type": 3,
  1892. "api": "./drpy_libs/drpy2.min.js",
  1893. "searchable": 1,
  1894. "quickSearch": 1,
  1895. "filterable": 1,
  1896. "order_num": 0,
  1897. "ext": "./drpy_js/爱看影院.js"
  1898. },
  1899. {
  1900. "key": "hipy_js_爱看影院1",
  1901. "name": "📺爱看影院1",
  1902. "type": 3,
  1903. "api": "./drpy_libs/drpy2.min.js",
  1904. "searchable": 1,
  1905. "quickSearch": 1,
  1906. "filterable": 1,
  1907. "order_num": 0,
  1908. "ext": "./drpy_js/爱看影院1.js"
  1909. },
  1910. {
  1911. "key": "hipy_js_爱看hd",
  1912. "name": "📺爱看hd",
  1913. "type": 3,
  1914. "api": "./drpy_libs/drpy2.min.js",
  1915. "searchable": 1,
  1916. "quickSearch": 1,
  1917. "filterable": 1,
  1918. "order_num": 0,
  1919. "ext": "./drpy_js/爱看hd.js"
  1920. },
  1921. {
  1922. "key": "hipy_js_八戒影视",
  1923. "name": "📺八戒影视",
  1924. "type": 3,
  1925. "api": "./drpy_libs/drpy2.min.js",
  1926. "searchable": 1,
  1927. "quickSearch": 1,
  1928. "filterable": 1,
  1929. "order_num": 0,
  1930. "ext": "./drpy_js/八戒影视.js"
  1931. },
  1932. {
  1933. "key": "hipy_js_白嫖者联盟",
  1934. "name": "📺白嫖者联盟",
  1935. "type": 3,
  1936. "api": "./drpy_libs/drpy2.min.js",
  1937. "searchable": 1,
  1938. "quickSearch": 1,
  1939. "filterable": 1,
  1940. "order_num": 0,
  1941. "ext": "./drpy_js/白嫖者联盟.js"
  1942. },
  1943. {
  1944. "key": "hipy_js_包子漫画",
  1945. "name": "📺包子漫画",
  1946. "type": 3,
  1947. "api": "./drpy_libs/drpy2.min.js",
  1948. "searchable": 1,
  1949. "quickSearch": 1,
  1950. "filterable": 1,
  1951. "order_num": 0,
  1952. "ext": "./drpy_js/包子漫画.js"
  1953. },
  1954. {
  1955. "key": "hipy_js_宝片视频",
  1956. "name": "📺宝片视频",
  1957. "type": 3,
  1958. "api": "./drpy_libs/drpy2.min.js",
  1959. "searchable": 1,
  1960. "quickSearch": 1,
  1961. "filterable": 1,
  1962. "order_num": 0,
  1963. "ext": "./drpy_js/宝片视频.js"
  1964. },
  1965. {
  1966. "key": "hipy_js_北川影视",
  1967. "name": "📺北川影视",
  1968. "type": 3,
  1969. "api": "./drpy_libs/drpy2.min.js",
  1970. "searchable": 1,
  1971. "quickSearch": 1,
  1972. "filterable": 1,
  1973. "order_num": 0,
  1974. "ext": "./drpy_js/北川影视.js"
  1975. },
  1976. {
  1977. "key": "hipy_js_被窝电影",
  1978. "name": "📺被窝电影",
  1979. "type": 3,
  1980. "api": "./drpy_libs/drpy2.min.js",
  1981. "searchable": 1,
  1982. "quickSearch": 1,
  1983. "filterable": 1,
  1984. "order_num": 0,
  1985. "ext": "./drpy_js/被窝电影.js"
  1986. },
  1987. {
  1988. "key": "hipy_js_哔哩直播",
  1989. "name": "📺哔哩直播",
  1990. "type": 3,
  1991. "api": "./drpy_libs/drpy2.min.js",
  1992. "searchable": 1,
  1993. "quickSearch": 1,
  1994. "filterable": 1,
  1995. "order_num": 0,
  1996. "ext": "./drpy_js/哔哩直播.js"
  1997. },
  1998. {
  1999. "key": "hipy_js_博看听书",
  2000. "name": "📺博看听书",
  2001. "type": 3,
  2002. "api": "./drpy_libs/drpy2.min.js",
  2003. "searchable": 1,
  2004. "quickSearch": 1,
  2005. "filterable": 1,
  2006. "order_num": 0,
  2007. "ext": "./drpy_js/博看听书.js"
  2008. },
  2009. {
  2010. "key": "hipy_js_草莓秒播",
  2011. "name": "📺草莓秒播",
  2012. "type": 3,
  2013. "api": "./drpy_libs/drpy2.min.js",
  2014. "searchable": 1,
  2015. "quickSearch": 1,
  2016. "filterable": 1,
  2017. "order_num": 0,
  2018. "ext": "./drpy_js/草莓秒播.js"
  2019. },
  2020. {
  2021. "key": "hipy_js_策驰影院(自动)",
  2022. "name": "📺策驰影院(自动)",
  2023. "type": 3,
  2024. "api": "./drpy_libs/drpy2.min.js",
  2025. "searchable": 1,
  2026. "quickSearch": 1,
  2027. "filterable": 1,
  2028. "order_num": 0,
  2029. "ext": "./drpy_js/策驰影院(自动).js"
  2030. },
  2031. {
  2032. "key": "hipy_js_厂长资源",
  2033. "name": "📺厂长资源",
  2034. "type": 3,
  2035. "api": "./drpy_libs/drpy2.min.js",
  2036. "searchable": 1,
  2037. "quickSearch": 1,
  2038. "filterable": 1,
  2039. "order_num": 0,
  2040. "ext": "./drpy_js/厂长资源.js"
  2041. },
  2042. {
  2043. "key": "hipy_js_厂长资源(可搜索)",
  2044. "name": "📺厂长资源(可搜索)",
  2045. "type": 3,
  2046. "api": "./drpy_libs/drpy2.min.js",
  2047. "searchable": 1,
  2048. "quickSearch": 1,
  2049. "filterable": 1,
  2050. "order_num": 0,
  2051. "ext": "./drpy_js/厂长资源(可搜索).js"
  2052. },
  2053. {
  2054. "key": "hipy_js_超前点播",
  2055. "name": "📺超前点播",
  2056. "type": 3,
  2057. "api": "./drpy_libs/drpy2.min.js",
  2058. "searchable": 1,
  2059. "quickSearch": 1,
  2060. "filterable": 1,
  2061. "order_num": 0,
  2062. "ext": "./drpy_js/超前点播.js"
  2063. },
  2064. {
  2065. "key": "hipy_js_橙汁影视",
  2066. "name": "📺橙汁影视",
  2067. "type": 3,
  2068. "api": "./drpy_libs/drpy2.min.js",
  2069. "searchable": 1,
  2070. "quickSearch": 1,
  2071. "filterable": 1,
  2072. "order_num": 0,
  2073. "ext": "./drpy_js/橙汁影视.js"
  2074. },
  2075. {
  2076. "key": "hipy_js_臭蛋蛋",
  2077. "name": "📺臭蛋蛋",
  2078. "type": 3,
  2079. "api": "./drpy_libs/drpy2.min.js",
  2080. "searchable": 1,
  2081. "quickSearch": 1,
  2082. "filterable": 1,
  2083. "order_num": 0,
  2084. "ext": "./drpy_js/臭蛋蛋.js"
  2085. },
  2086. {
  2087. "key": "hipy_js_楚门影院",
  2088. "name": "📺楚门影院",
  2089. "type": 3,
  2090. "api": "./drpy_libs/drpy2.min.js",
  2091. "searchable": 1,
  2092. "quickSearch": 1,
  2093. "filterable": 1,
  2094. "order_num": 0,
  2095. "ext": "./drpy_js/楚门影院.js"
  2096. },
  2097. {
  2098. "key": "hipy_js_传奇影院",
  2099. "name": "📺传奇影院",
  2100. "type": 3,
  2101. "api": "./drpy_libs/drpy2.min.js",
  2102. "searchable": 1,
  2103. "quickSearch": 1,
  2104. "filterable": 1,
  2105. "order_num": 0,
  2106. "ext": "./drpy_js/传奇影院.js"
  2107. },
  2108. {
  2109. "key": "hipy_js_次元城动漫",
  2110. "name": "📺次元城动漫",
  2111. "type": 3,
  2112. "api": "./drpy_libs/drpy2.min.js",
  2113. "searchable": 1,
  2114. "quickSearch": 1,
  2115. "filterable": 1,
  2116. "order_num": 0,
  2117. "ext": "./drpy_js/次元城动漫.js"
  2118. },
  2119. {
  2120. "key": "hipy_js_刺猬影视",
  2121. "name": "📺刺猬影视",
  2122. "type": 3,
  2123. "api": "./drpy_libs/drpy2.min.js",
  2124. "searchable": 1,
  2125. "quickSearch": 1,
  2126. "filterable": 1,
  2127. "order_num": 0,
  2128. "ext": "./drpy_js/刺猬影视.js"
  2129. },
  2130. {
  2131. "key": "hipy_js_达达龟",
  2132. "name": "📺达达龟",
  2133. "type": 3,
  2134. "api": "./drpy_libs/drpy2.min.js",
  2135. "searchable": 1,
  2136. "quickSearch": 1,
  2137. "filterable": 1,
  2138. "order_num": 0,
  2139. "ext": "./drpy_js/达达龟.js"
  2140. },
  2141. {
  2142. "key": "hipy_js_达达兔影院",
  2143. "name": "📺达达兔影院",
  2144. "type": 3,
  2145. "api": "./drpy_libs/drpy2.min.js",
  2146. "searchable": 1,
  2147. "quickSearch": 1,
  2148. "filterable": 1,
  2149. "order_num": 0,
  2150. "ext": "./drpy_js/达达兔影院.js"
  2151. },
  2152. {
  2153. "key": "hipy_js_达达猪",
  2154. "name": "📺达达猪",
  2155. "type": 3,
  2156. "api": "./drpy_libs/drpy2.min.js",
  2157. "searchable": 1,
  2158. "quickSearch": 1,
  2159. "filterable": 1,
  2160. "order_num": 0,
  2161. "ext": "./drpy_js/达达猪.js"
  2162. },
  2163. {
  2164. "key": "hipy_js_大米动漫",
  2165. "name": "📺大米动漫",
  2166. "type": 3,
  2167. "api": "./drpy_libs/drpy2.min.js",
  2168. "searchable": 1,
  2169. "quickSearch": 1,
  2170. "filterable": 1,
  2171. "order_num": 0,
  2172. "ext": "./drpy_js/大米动漫.js"
  2173. },
  2174. {
  2175. "key": "hipy_js_大米星球",
  2176. "name": "📺大米星球",
  2177. "type": 3,
  2178. "api": "./drpy_libs/drpy2.min.js",
  2179. "searchable": 1,
  2180. "quickSearch": 1,
  2181. "filterable": 1,
  2182. "order_num": 0,
  2183. "ext": "./drpy_js/大米星球.js"
  2184. },
  2185. {
  2186. "key": "hipy_js_大千视界",
  2187. "name": "📺大千视界",
  2188. "type": 3,
  2189. "api": "./drpy_libs/drpy2.min.js",
  2190. "searchable": 1,
  2191. "quickSearch": 1,
  2192. "filterable": 1,
  2193. "order_num": 0,
  2194. "ext": "./drpy_js/大千视界.js"
  2195. },
  2196. {
  2197. "key": "hipy_js_大全央视[央]",
  2198. "name": "📺大全央视[央]",
  2199. "type": 3,
  2200. "api": "./drpy_libs/drpy2.min.js",
  2201. "searchable": 1,
  2202. "quickSearch": 1,
  2203. "filterable": 1,
  2204. "order_num": 0,
  2205. "ext": "./drpy_js/大全央视[央].js"
  2206. },
  2207. {
  2208. "key": "hipy_js_大象影院",
  2209. "name": "📺大象影院",
  2210. "type": 3,
  2211. "api": "./drpy_libs/drpy2.min.js",
  2212. "searchable": 1,
  2213. "quickSearch": 1,
  2214. "filterable": 1,
  2215. "order_num": 0,
  2216. "ext": "./drpy_js/大象影院.js"
  2217. },
  2218. {
  2219. "key": "hipy_js_大中国",
  2220. "name": "📺大中国",
  2221. "type": 3,
  2222. "api": "./drpy_libs/drpy2.min.js",
  2223. "searchable": 1,
  2224. "quickSearch": 1,
  2225. "filterable": 1,
  2226. "order_num": 0,
  2227. "ext": "./drpy_js/大中国.js"
  2228. },
  2229. {
  2230. "key": "hipy_js_蛋蛋剧",
  2231. "name": "📺蛋蛋剧",
  2232. "type": 3,
  2233. "api": "./drpy_libs/drpy2.min.js",
  2234. "searchable": 1,
  2235. "quickSearch": 1,
  2236. "filterable": 1,
  2237. "order_num": 0,
  2238. "ext": "./drpy_js/蛋蛋剧.js"
  2239. },
  2240. {
  2241. "key": "hipy_js_蛋蛋赞",
  2242. "name": "📺蛋蛋赞",
  2243. "type": 3,
  2244. "api": "./drpy_libs/drpy2.min.js",
  2245. "searchable": 1,
  2246. "quickSearch": 1,
  2247. "filterable": 1,
  2248. "order_num": 0,
  2249. "ext": "./drpy_js/蛋蛋赞.js"
  2250. },
  2251. {
  2252. "key": "hipy_js_低端",
  2253. "name": "📺低端",
  2254. "type": 3,
  2255. "api": "./drpy_libs/drpy2.min.js",
  2256. "searchable": 1,
  2257. "quickSearch": 1,
  2258. "filterable": 1,
  2259. "order_num": 0,
  2260. "ext": "./drpy_js/低端.js"
  2261. },
  2262. {
  2263. "key": "hipy_js_嘀哩嘀哩",
  2264. "name": "📺嘀哩嘀哩",
  2265. "type": 3,
  2266. "api": "./drpy_libs/drpy2.min.js",
  2267. "searchable": 1,
  2268. "quickSearch": 1,
  2269. "filterable": 1,
  2270. "order_num": 0,
  2271. "ext": "./drpy_js/嘀哩嘀哩.js"
  2272. },
  2273. {
  2274. "key": "hipy_js_第一韩漫-z",
  2275. "name": "📺第一韩漫-z",
  2276. "type": 3,
  2277. "api": "./drpy_libs/drpy2.min.js",
  2278. "searchable": 1,
  2279. "quickSearch": 1,
  2280. "filterable": 1,
  2281. "order_num": 0,
  2282. "ext": "./drpy_js/第一韩漫-z.js"
  2283. },
  2284. {
  2285. "key": "hipy_js_电影狗",
  2286. "name": "📺电影狗",
  2287. "type": 3,
  2288. "api": "./drpy_libs/drpy2.min.js",
  2289. "searchable": 1,
  2290. "quickSearch": 1,
  2291. "filterable": 1,
  2292. "order_num": 0,
  2293. "ext": "./drpy_js/电影狗.js"
  2294. },
  2295. {
  2296. "key": "hipy_js_电影天堂",
  2297. "name": "📺电影天堂",
  2298. "type": 3,
  2299. "api": "./drpy_libs/drpy2.min.js",
  2300. "searchable": 1,
  2301. "quickSearch": 1,
  2302. "filterable": 1,
  2303. "order_num": 0,
  2304. "ext": "./drpy_js/电影天堂.js"
  2305. },
  2306. {
  2307. "key": "hipy_js_电影先生",
  2308. "name": "📺电影先生",
  2309. "type": 3,
  2310. "api": "./drpy_libs/drpy2.min.js",
  2311. "searchable": 1,
  2312. "quickSearch": 1,
  2313. "filterable": 1,
  2314. "order_num": 0,
  2315. "ext": "./drpy_js/电影先生.js"
  2316. },
  2317. {
  2318. "key": "hipy_js_碟调网",
  2319. "name": "📺碟调网",
  2320. "type": 3,
  2321. "api": "./drpy_libs/drpy2.min.js",
  2322. "searchable": 1,
  2323. "quickSearch": 1,
  2324. "filterable": 1,
  2325. "order_num": 0,
  2326. "ext": "./drpy_js/碟调网.js"
  2327. },
  2328. {
  2329. "key": "hipy_js_动漫巴士",
  2330. "name": "📺动漫巴士",
  2331. "type": 3,
  2332. "api": "./drpy_libs/drpy2.min.js",
  2333. "searchable": 1,
  2334. "quickSearch": 1,
  2335. "filterable": 1,
  2336. "order_num": 0,
  2337. "ext": "./drpy_js/动漫巴士.js"
  2338. },
  2339. {
  2340. "key": "hipy_js_动漫网",
  2341. "name": "📺动漫网",
  2342. "type": 3,
  2343. "api": "./drpy_libs/drpy2.min.js",
  2344. "searchable": 1,
  2345. "quickSearch": 1,
  2346. "filterable": 1,
  2347. "order_num": 0,
  2348. "ext": "./drpy_js/动漫网.js"
  2349. },
  2350. {
  2351. "key": "hipy_js_斗鱼直播",
  2352. "name": "📺斗鱼直播",
  2353. "type": 3,
  2354. "api": "./drpy_libs/drpy2.min.js",
  2355. "searchable": 1,
  2356. "quickSearch": 1,
  2357. "filterable": 1,
  2358. "order_num": 0,
  2359. "ext": "./drpy_js/斗鱼直播.js"
  2360. },
  2361. {
  2362. "key": "hipy_js_豆角网",
  2363. "name": "📺豆角网",
  2364. "type": 3,
  2365. "api": "./drpy_libs/drpy2.min.js",
  2366. "searchable": 1,
  2367. "quickSearch": 1,
  2368. "filterable": 1,
  2369. "order_num": 0,
  2370. "ext": "./drpy_js/豆角网.js"
  2371. },
  2372. {
  2373. "key": "hipy_js_多多追剧",
  2374. "name": "📺多多追剧",
  2375. "type": 3,
  2376. "api": "./drpy_libs/drpy2.min.js",
  2377. "searchable": 1,
  2378. "quickSearch": 1,
  2379. "filterable": 1,
  2380. "order_num": 0,
  2381. "ext": "./drpy_js/多多追剧.js"
  2382. },
  2383. {
  2384. "key": "hipy_js_多瑙影视",
  2385. "name": "📺多瑙影视",
  2386. "type": 3,
  2387. "api": "./drpy_libs/drpy2.min.js",
  2388. "searchable": 1,
  2389. "quickSearch": 1,
  2390. "filterable": 1,
  2391. "order_num": 0,
  2392. "ext": "./drpy_js/多瑙影视.js"
  2393. },
  2394. {
  2395. "key": "hipy_js_番号资源",
  2396. "name": "📺番号资源",
  2397. "type": 3,
  2398. "api": "./drpy_libs/drpy2.min.js",
  2399. "searchable": 1,
  2400. "quickSearch": 1,
  2401. "filterable": 1,
  2402. "order_num": 0,
  2403. "ext": "./drpy_js/番号资源.js"
  2404. },
  2405. {
  2406. "key": "hipy_js_饭团影视",
  2407. "name": "📺饭团影视",
  2408. "type": 3,
  2409. "api": "./drpy_libs/drpy2.min.js",
  2410. "searchable": 1,
  2411. "quickSearch": 1,
  2412. "filterable": 1,
  2413. "order_num": 0,
  2414. "ext": "./drpy_js/饭团影视.js"
  2415. },
  2416. {
  2417. "key": "hipy_js_飞刀资源[采]",
  2418. "name": "📺飞刀资源[采]",
  2419. "type": 3,
  2420. "api": "./drpy_libs/drpy2.min.js",
  2421. "searchable": 1,
  2422. "quickSearch": 1,
  2423. "filterable": 1,
  2424. "order_num": 0,
  2425. "ext": "./drpy_js/飞刀资源[采].js"
  2426. },
  2427. {
  2428. "key": "hipy_js_飞鱼影视",
  2429. "name": "📺飞鱼影视",
  2430. "type": 3,
  2431. "api": "./drpy_libs/drpy2.min.js",
  2432. "searchable": 1,
  2433. "quickSearch": 1,
  2434. "filterable": 1,
  2435. "order_num": 0,
  2436. "ext": "./drpy_js/飞鱼影视.js"
  2437. },
  2438. {
  2439. "key": "hipy_js_干饭影视",
  2440. "name": "📺干饭影视",
  2441. "type": 3,
  2442. "api": "./drpy_libs/drpy2.min.js",
  2443. "searchable": 1,
  2444. "quickSearch": 1,
  2445. "filterable": 1,
  2446. "order_num": 0,
  2447. "ext": "./drpy_js/干饭影视.js"
  2448. },
  2449. {
  2450. "key": "hipy_js_咕咕番",
  2451. "name": "📺咕咕番",
  2452. "type": 3,
  2453. "api": "./drpy_libs/drpy2.min.js",
  2454. "searchable": 1,
  2455. "quickSearch": 1,
  2456. "filterable": 1,
  2457. "order_num": 0,
  2458. "ext": "./drpy_js/咕咕番.js"
  2459. },
  2460. {
  2461. "key": "hipy_js_古风漫画",
  2462. "name": "📺古风漫画",
  2463. "type": 3,
  2464. "api": "./drpy_libs/drpy2.min.js",
  2465. "searchable": 1,
  2466. "quickSearch": 1,
  2467. "filterable": 1,
  2468. "order_num": 0,
  2469. "ext": "./drpy_js/古风漫画.js"
  2470. },
  2471. {
  2472. "key": "hipy_js_冠建影视",
  2473. "name": "📺冠建影视",
  2474. "type": 3,
  2475. "api": "./drpy_libs/drpy2.min.js",
  2476. "searchable": 1,
  2477. "quickSearch": 1,
  2478. "filterable": 1,
  2479. "order_num": 0,
  2480. "ext": "./drpy_js/冠建影视.js"
  2481. },
  2482. {
  2483. "key": "hipy_js_广播迷FM",
  2484. "name": "📺广播迷FM",
  2485. "type": 3,
  2486. "api": "./drpy_libs/drpy2.min.js",
  2487. "searchable": 1,
  2488. "quickSearch": 1,
  2489. "filterable": 1,
  2490. "order_num": 0,
  2491. "ext": "./drpy_js/广播迷FM.js"
  2492. },
  2493. {
  2494. "key": "hipy_js_海外剧汇",
  2495. "name": "📺海外剧汇",
  2496. "type": 3,
  2497. "api": "./drpy_libs/drpy2.min.js",
  2498. "searchable": 1,
  2499. "quickSearch": 1,
  2500. "filterable": 1,
  2501. "order_num": 0,
  2502. "ext": "./drpy_js/海外剧汇.js"
  2503. },
  2504. {
  2505. "key": "hipy_js_好趣网",
  2506. "name": "📺好趣网",
  2507. "type": 3,
  2508. "api": "./drpy_libs/drpy2.min.js",
  2509. "searchable": 1,
  2510. "quickSearch": 1,
  2511. "filterable": 1,
  2512. "order_num": 0,
  2513. "ext": "./drpy_js/好趣网.js"
  2514. },
  2515. {
  2516. "key": "hipy_js_合集央视[央]",
  2517. "name": "📺合集央视[央]",
  2518. "type": 3,
  2519. "api": "./drpy_libs/drpy2.min.js",
  2520. "searchable": 1,
  2521. "quickSearch": 1,
  2522. "filterable": 1,
  2523. "order_num": 0,
  2524. "ext": "./drpy_js/合集央视[央].js"
  2525. },
  2526. {
  2527. "key": "hipy_js_黑狐影院",
  2528. "name": "📺黑狐影院",
  2529. "type": 3,
  2530. "api": "./drpy_libs/drpy2.min.js",
  2531. "searchable": 1,
  2532. "quickSearch": 1,
  2533. "filterable": 1,
  2534. "order_num": 0,
  2535. "ext": "./drpy_js/黑狐影院.js"
  2536. },
  2537. {
  2538. "key": "hipy_js_黑料不打烊",
  2539. "name": "📺黑料不打烊",
  2540. "type": 3,
  2541. "api": "./drpy_libs/drpy2.min.js",
  2542. "searchable": 1,
  2543. "quickSearch": 1,
  2544. "filterable": 1,
  2545. "order_num": 0,
  2546. "ext": "./drpy_js/黑料不打烊.js"
  2547. },
  2548. {
  2549. "key": "hipy_js_黑料不打烊-z",
  2550. "name": "📺黑料不打烊-z",
  2551. "type": 3,
  2552. "api": "./drpy_libs/drpy2.min.js",
  2553. "searchable": 1,
  2554. "quickSearch": 1,
  2555. "filterable": 1,
  2556. "order_num": 0,
  2557. "ext": "./drpy_js/黑料不打烊-z.js"
  2558. },
  2559. {
  2560. "key": "hipy_js_黑木耳",
  2561. "name": "📺黑木耳",
  2562. "type": 3,
  2563. "api": "./drpy_libs/drpy2.min.js",
  2564. "searchable": 1,
  2565. "quickSearch": 1,
  2566. "filterable": 1,
  2567. "order_num": 0,
  2568. "ext": "./drpy_js/黑木耳.js"
  2569. },
  2570. {
  2571. "key": "hipy_js_恒大影视【密】",
  2572. "name": "📺恒大影视【密】",
  2573. "type": 3,
  2574. "api": "./drpy_libs/drpy2.min.js",
  2575. "searchable": 1,
  2576. "quickSearch": 1,
  2577. "filterable": 1,
  2578. "order_num": 0,
  2579. "ext": "./drpy_js/恒大影视【密】.js"
  2580. },
  2581. {
  2582. "key": "hipy_js_蝴蝶影视",
  2583. "name": "📺蝴蝶影视",
  2584. "type": 3,
  2585. "api": "./drpy_libs/drpy2.min.js",
  2586. "searchable": 1,
  2587. "quickSearch": 1,
  2588. "filterable": 1,
  2589. "order_num": 0,
  2590. "ext": "./drpy_js/蝴蝶影视.js"
  2591. },
  2592. {
  2593. "key": "hipy_js_虎牙直播",
  2594. "name": "📺虎牙直播",
  2595. "type": 3,
  2596. "api": "./drpy_libs/drpy2.min.js",
  2597. "searchable": 1,
  2598. "quickSearch": 1,
  2599. "filterable": 1,
  2600. "order_num": 0,
  2601. "ext": "./drpy_js/虎牙直播.js"
  2602. },
  2603. {
  2604. "key": "hipy_js_黄18",
  2605. "name": "📺黄18",
  2606. "type": 3,
  2607. "api": "./drpy_libs/drpy2.min.js",
  2608. "searchable": 1,
  2609. "quickSearch": 1,
  2610. "filterable": 1,
  2611. "order_num": 0,
  2612. "ext": "./drpy_js/黄18.js"
  2613. },
  2614. {
  2615. "key": "hipy_js_火车36小时",
  2616. "name": "📺火车36小时",
  2617. "type": 3,
  2618. "api": "./drpy_libs/drpy2.min.js",
  2619. "searchable": 1,
  2620. "quickSearch": 1,
  2621. "filterable": 1,
  2622. "order_num": 0,
  2623. "ext": "./drpy_js/火车36小时.js"
  2624. },
  2625. {
  2626. "key": "hipy_js_火狐影视",
  2627. "name": "📺火狐影视",
  2628. "type": 3,
  2629. "api": "./drpy_libs/drpy2.min.js",
  2630. "searchable": 1,
  2631. "quickSearch": 1,
  2632. "filterable": 1,
  2633. "order_num": 0,
  2634. "ext": "./drpy_js/火狐影视.js"
  2635. },
  2636. {
  2637. "key": "hipy_js_即看影视",
  2638. "name": "📺即看影视",
  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": "📺极点影视",
  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": "📺佳丽酒店",
  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": "📺家庭影视",
  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": "📺饺子影院",
  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": "📺金金虫",
  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": "📺金牌影院",
  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": "📺经济[央]",
  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": "📺九牛电影",
  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": "📺橘子柚",
  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": "📺剧巴巴",
  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": "📺剧哥哥",
  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_剧集TV",
  2770. "name": "📺剧集TV",
  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/剧集TV.js"
  2778. },
  2779. {
  2780. "key": "hipy_js_剧迷",
  2781. "name": "📺剧迷",
  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": "📺剧圈圈",
  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_咖啡影视",
  2803. "name": "📺咖啡影视",
  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/咖啡影视.js"
  2811. },
  2812. {
  2813. "key": "hipy_js_看57",
  2814. "name": "📺看57",
  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/看57.js"
  2822. },
  2823. {
  2824. "key": "hipy_js_看看影视",
  2825. "name": "📺看看影视",
  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": "📺看客视频",
  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": "📺看客影院",
  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": "📺看了么",
  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": "📺看戏网",
  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": "📺看呀看",
  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_看BZ影视",
  2891. "name": "📺看BZ影视",
  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/看BZ影视.js"
  2899. },
  2900. {
  2901. "key": "hipy_js_可达影视",
  2902. "name": "📺可达影视",
  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": "📺口袋追剧",
  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": "hipy_js_酷客影视",
  2924. "name": "📺酷客影视",
  2925. "type": 3,
  2926. "api": "./drpy_libs/drpy2.min.js",
  2927. "searchable": 1,
  2928. "quickSearch": 1,
  2929. "filterable": 1,
  2930. "order_num": 0,
  2931. "ext": "./drpy_js/酷客影视.js"
  2932. },
  2933. {
  2934. "key": "hipy_js_酷我听书",
  2935. "name": "📺酷我听书",
  2936. "type": 3,
  2937. "api": "./drpy_libs/drpy2.min.js",
  2938. "searchable": 1,
  2939. "quickSearch": 1,
  2940. "filterable": 1,
  2941. "order_num": 0,
  2942. "ext": "./drpy_js/酷我听书.js"
  2943. },
  2944. {
  2945. "key": "hipy_js_酷云77",
  2946. "name": "📺酷云77",
  2947. "type": 3,
  2948. "api": "./drpy_libs/drpy2.min.js",
  2949. "searchable": 1,
  2950. "quickSearch": 1,
  2951. "filterable": 1,
  2952. "order_num": 0,
  2953. "ext": "./drpy_js/酷云77.js"
  2954. },
  2955. {
  2956. "key": "hipy_js_酷云影视",
  2957. "name": "📺酷云影视",
  2958. "type": 3,
  2959. "api": "./drpy_libs/drpy2.min.js",
  2960. "searchable": 1,
  2961. "quickSearch": 1,
  2962. "filterable": 1,
  2963. "order_num": 0,
  2964. "ext": "./drpy_js/酷云影视.js"
  2965. },
  2966. {
  2967. "key": "hipy_js_快看影视",
  2968. "name": "📺快看影视",
  2969. "type": 3,
  2970. "api": "./drpy_libs/drpy2.min.js",
  2971. "searchable": 1,
  2972. "quickSearch": 1,
  2973. "filterable": 1,
  2974. "order_num": 0,
  2975. "ext": "./drpy_js/快看影视.js"
  2976. },
  2977. {
  2978. "key": "hipy_js_蜡笔盘盘",
  2979. "name": "📺蜡笔盘盘",
  2980. "type": 3,
  2981. "api": "./drpy_libs/drpy2.min.js",
  2982. "searchable": 1,
  2983. "quickSearch": 1,
  2984. "filterable": 1,
  2985. "order_num": 0,
  2986. "ext": "./drpy_js/蜡笔盘盘.js"
  2987. },
  2988. {
  2989. "key": "hipy_js_蓝光影视",
  2990. "name": "📺蓝光影视",
  2991. "type": 3,
  2992. "api": "./drpy_libs/drpy2.min.js",
  2993. "searchable": 1,
  2994. "quickSearch": 1,
  2995. "filterable": 1,
  2996. "order_num": 0,
  2997. "ext": "./drpy_js/蓝光影视.js"
  2998. },
  2999. {
  3000. "key": "hipy_js_老白故事[box]",
  3001. "name": "📺老白故事[box]",
  3002. "type": 3,
  3003. "api": "./drpy_libs/drpy2.min.js",
  3004. "searchable": 1,
  3005. "quickSearch": 1,
  3006. "filterable": 1,
  3007. "order_num": 0,
  3008. "ext": "./drpy_js/老白故事[box].js"
  3009. },
  3010. {
  3011. "key": "hipy_js_乐草TV",
  3012. "name": "📺乐草TV",
  3013. "type": 3,
  3014. "api": "./drpy_libs/drpy2.min.js",
  3015. "searchable": 1,
  3016. "quickSearch": 1,
  3017. "filterable": 1,
  3018. "order_num": 0,
  3019. "ext": "./drpy_js/乐草TV.js"
  3020. },
  3021. {
  3022. "key": "hipy_js_两个BT",
  3023. "name": "📺两个BT",
  3024. "type": 3,
  3025. "api": "./drpy_libs/drpy2.min.js",
  3026. "searchable": 1,
  3027. "quickSearch": 1,
  3028. "filterable": 1,
  3029. "order_num": 0,
  3030. "ext": "./drpy_js/两个BT.js"
  3031. },
  3032. {
  3033. "key": "hipy_js_凌云影视",
  3034. "name": "📺凌云影视",
  3035. "type": 3,
  3036. "api": "./drpy_libs/drpy2.min.js",
  3037. "searchable": 1,
  3038. "quickSearch": 1,
  3039. "filterable": 1,
  3040. "order_num": 0,
  3041. "ext": "./drpy_js/凌云影视.js"
  3042. },
  3043. {
  3044. "key": "hipy_js_六度TV",
  3045. "name": "📺六度TV",
  3046. "type": 3,
  3047. "api": "./drpy_libs/drpy2.min.js",
  3048. "searchable": 1,
  3049. "quickSearch": 1,
  3050. "filterable": 1,
  3051. "order_num": 0,
  3052. "ext": "./drpy_js/六度TV.js"
  3053. },
  3054. {
  3055. "key": "hipy_js_驴番",
  3056. "name": "📺驴番",
  3057. "type": 3,
  3058. "api": "./drpy_libs/drpy2.min.js",
  3059. "searchable": 1,
  3060. "quickSearch": 1,
  3061. "filterable": 1,
  3062. "order_num": 0,
  3063. "ext": "./drpy_js/驴番.js"
  3064. },
  3065. {
  3066. "key": "hipy_js_绿色仓库",
  3067. "name": "📺绿色仓库",
  3068. "type": 3,
  3069. "api": "./drpy_libs/drpy2.min.js",
  3070. "searchable": 1,
  3071. "quickSearch": 1,
  3072. "filterable": 1,
  3073. "order_num": 0,
  3074. "ext": "./drpy_js/绿色仓库.js"
  3075. },
  3076. {
  3077. "key": "hipy_js_麻雀视频",
  3078. "name": "📺麻雀视频",
  3079. "type": 3,
  3080. "api": "./drpy_libs/drpy2.min.js",
  3081. "searchable": 1,
  3082. "quickSearch": 1,
  3083. "filterable": 1,
  3084. "order_num": 0,
  3085. "ext": "./drpy_js/麻雀视频.js"
  3086. },
  3087. {
  3088. "key": "hipy_js_蚂蚁影视",
  3089. "name": "📺蚂蚁影视",
  3090. "type": 3,
  3091. "api": "./drpy_libs/drpy2.min.js",
  3092. "searchable": 1,
  3093. "quickSearch": 1,
  3094. "filterable": 1,
  3095. "order_num": 0,
  3096. "ext": "./drpy_js/蚂蚁影视.js"
  3097. },
  3098. {
  3099. "key": "hipy_js_麦田影院",
  3100. "name": "📺麦田影院",
  3101. "type": 3,
  3102. "api": "./drpy_libs/drpy2.min.js",
  3103. "searchable": 1,
  3104. "quickSearch": 1,
  3105. "filterable": 1,
  3106. "order_num": 0,
  3107. "ext": "./drpy_js/麦田影院.js"
  3108. },
  3109. {
  3110. "key": "hipy_js_漫画走廊[画密飞]",
  3111. "name": "📺漫画走廊[画密飞]",
  3112. "type": 3,
  3113. "api": "./drpy_libs/drpy2.min.js",
  3114. "searchable": 1,
  3115. "quickSearch": 1,
  3116. "filterable": 1,
  3117. "order_num": 0,
  3118. "ext": "./drpy_js/漫画走廊[画密飞].js"
  3119. },
  3120. {
  3121. "key": "hipy_js_漫小肆",
  3122. "name": "📺漫小肆",
  3123. "type": 3,
  3124. "api": "./drpy_libs/drpy2.min.js",
  3125. "searchable": 1,
  3126. "quickSearch": 1,
  3127. "filterable": 1,
  3128. "order_num": 0,
  3129. "ext": "./drpy_js/漫小肆.js"
  3130. },
  3131. {
  3132. "key": "hipy_js_猫视界",
  3133. "name": "📺猫视界",
  3134. "type": 3,
  3135. "api": "./drpy_libs/drpy2.min.js",
  3136. "searchable": 1,
  3137. "quickSearch": 1,
  3138. "filterable": 1,
  3139. "order_num": 0,
  3140. "ext": "./drpy_js/猫视界.js"
  3141. },
  3142. {
  3143. "key": "hipy_js_美剧星球",
  3144. "name": "📺美剧星球",
  3145. "type": 3,
  3146. "api": "./drpy_libs/drpy2.min.js",
  3147. "searchable": 1,
  3148. "quickSearch": 1,
  3149. "filterable": 1,
  3150. "order_num": 0,
  3151. "ext": "./drpy_js/美剧星球.js"
  3152. },
  3153. {
  3154. "key": "hipy_js_美视网",
  3155. "name": "📺美视网",
  3156. "type": 3,
  3157. "api": "./drpy_libs/drpy2.min.js",
  3158. "searchable": 1,
  3159. "quickSearch": 1,
  3160. "filterable": 1,
  3161. "order_num": 0,
  3162. "ext": "./drpy_js/美视网.js"
  3163. },
  3164. {
  3165. "key": "hipy_js_美益达",
  3166. "name": "📺美益达",
  3167. "type": 3,
  3168. "api": "./drpy_libs/drpy2.min.js",
  3169. "searchable": 1,
  3170. "quickSearch": 1,
  3171. "filterable": 1,
  3172. "order_num": 0,
  3173. "ext": "./drpy_js/美益达.js"
  3174. },
  3175. {
  3176. "key": "hipy_js_萌番",
  3177. "name": "📺萌番",
  3178. "type": 3,
  3179. "api": "./drpy_libs/drpy2.min.js",
  3180. "searchable": 1,
  3181. "quickSearch": 1,
  3182. "filterable": 1,
  3183. "order_num": 0,
  3184. "ext": "./drpy_js/萌番.js"
  3185. },
  3186. {
  3187. "key": "hipy_js_米爱影视",
  3188. "name": "📺米爱影视",
  3189. "type": 3,
  3190. "api": "./drpy_libs/drpy2.min.js",
  3191. "searchable": 1,
  3192. "quickSearch": 1,
  3193. "filterable": 1,
  3194. "order_num": 0,
  3195. "ext": "./drpy_js/米爱影视.js"
  3196. },
  3197. {
  3198. "key": "hipy_js_魔方影视",
  3199. "name": "📺魔方影视",
  3200. "type": 3,
  3201. "api": "./drpy_libs/drpy2.min.js",
  3202. "searchable": 1,
  3203. "quickSearch": 1,
  3204. "filterable": 1,
  3205. "order_num": 0,
  3206. "ext": "./drpy_js/魔方影视.js"
  3207. },
  3208. {
  3209. "key": "hipy_js_那兔视频",
  3210. "name": "📺那兔视频",
  3211. "type": 3,
  3212. "api": "./drpy_libs/drpy2.min.js",
  3213. "searchable": 1,
  3214. "quickSearch": 1,
  3215. "filterable": 1,
  3216. "order_num": 0,
  3217. "ext": "./drpy_js/那兔视频.js"
  3218. },
  3219. {
  3220. "key": "hipy_js_奶狗影视[慢]",
  3221. "name": "📺奶狗影视[慢]",
  3222. "type": 3,
  3223. "api": "./drpy_libs/drpy2.min.js",
  3224. "searchable": 1,
  3225. "quickSearch": 1,
  3226. "filterable": 1,
  3227. "order_num": 0,
  3228. "ext": "./drpy_js/奶狗影视[慢].js"
  3229. },
  3230. {
  3231. "key": "hipy_js_奈飞中文影视",
  3232. "name": "📺奈飞中文影视",
  3233. "type": 3,
  3234. "api": "./drpy_libs/drpy2.min.js",
  3235. "searchable": 1,
  3236. "quickSearch": 1,
  3237. "filterable": 1,
  3238. "order_num": 0,
  3239. "ext": "./drpy_js/奈飞中文影视.js"
  3240. },
  3241. {
  3242. "key": "hipy_js_耐看",
  3243. "name": "📺耐看",
  3244. "type": 3,
  3245. "api": "./drpy_libs/drpy2.min.js",
  3246. "searchable": 1,
  3247. "quickSearch": 1,
  3248. "filterable": 1,
  3249. "order_num": 0,
  3250. "ext": "./drpy_js/耐看.js"
  3251. },
  3252. {
  3253. "key": "hipy_js_南坊追剧",
  3254. "name": "📺南坊追剧",
  3255. "type": 3,
  3256. "api": "./drpy_libs/drpy2.min.js",
  3257. "searchable": 1,
  3258. "quickSearch": 1,
  3259. "filterable": 1,
  3260. "order_num": 0,
  3261. "ext": "./drpy_js/南坊追剧.js"
  3262. },
  3263. {
  3264. "key": "hipy_js_泥视频",
  3265. "name": "📺泥视频",
  3266. "type": 3,
  3267. "api": "./drpy_libs/drpy2.min.js",
  3268. "searchable": 1,
  3269. "quickSearch": 1,
  3270. "filterable": 1,
  3271. "order_num": 0,
  3272. "ext": "./drpy_js/泥视频.js"
  3273. },
  3274. {
  3275. "key": "hipy_js_你好帅影院",
  3276. "name": "📺你好帅影院",
  3277. "type": 3,
  3278. "api": "./drpy_libs/drpy2.min.js",
  3279. "searchable": 1,
  3280. "quickSearch": 1,
  3281. "filterable": 1,
  3282. "order_num": 0,
  3283. "ext": "./drpy_js/你好帅影院.js"
  3284. },
  3285. {
  3286. "key": "hipy_js_暖光影视",
  3287. "name": "📺暖光影视",
  3288. "type": 3,
  3289. "api": "./drpy_libs/drpy2.min.js",
  3290. "searchable": 1,
  3291. "quickSearch": 1,
  3292. "filterable": 1,
  3293. "order_num": 0,
  3294. "ext": "./drpy_js/暖光影视.js"
  3295. },
  3296. {
  3297. "key": "hipy_js_牌牌影院",
  3298. "name": "📺牌牌影院",
  3299. "type": 3,
  3300. "api": "./drpy_libs/drpy2.min.js",
  3301. "searchable": 1,
  3302. "quickSearch": 1,
  3303. "filterable": 1,
  3304. "order_num": 0,
  3305. "ext": "./drpy_js/牌牌影院.js"
  3306. },
  3307. {
  3308. "key": "hipy_js_胖虎影视",
  3309. "name": "📺胖虎影视",
  3310. "type": 3,
  3311. "api": "./drpy_libs/drpy2.min.js",
  3312. "searchable": 1,
  3313. "quickSearch": 1,
  3314. "filterable": 1,
  3315. "order_num": 0,
  3316. "ext": "./drpy_js/胖虎影视.js"
  3317. },
  3318. {
  3319. "key": "hipy_js_胖虎影视(4)",
  3320. "name": "📺胖虎影视(4)",
  3321. "type": 3,
  3322. "api": "./drpy_libs/drpy2.min.js",
  3323. "searchable": 1,
  3324. "quickSearch": 1,
  3325. "filterable": 1,
  3326. "order_num": 0,
  3327. "ext": "./drpy_js/胖虎影视(4).js"
  3328. },
  3329. {
  3330. "key": "hipy_js_泡泡影院",
  3331. "name": "📺泡泡影院",
  3332. "type": 3,
  3333. "api": "./drpy_libs/drpy2.min.js",
  3334. "searchable": 1,
  3335. "quickSearch": 1,
  3336. "filterable": 1,
  3337. "order_num": 0,
  3338. "ext": "./drpy_js/泡泡影院.js"
  3339. },
  3340. {
  3341. "key": "hipy_js_皮皮影视",
  3342. "name": "📺皮皮影视",
  3343. "type": 3,
  3344. "api": "./drpy_libs/drpy2.min.js",
  3345. "searchable": 1,
  3346. "quickSearch": 1,
  3347. "filterable": 1,
  3348. "order_num": 0,
  3349. "ext": "./drpy_js/皮皮影视.js"
  3350. },
  3351. {
  3352. "key": "hipy_js_飘花影院",
  3353. "name": "📺飘花影院",
  3354. "type": 3,
  3355. "api": "./drpy_libs/drpy2.min.js",
  3356. "searchable": 1,
  3357. "quickSearch": 1,
  3358. "filterable": 1,
  3359. "order_num": 0,
  3360. "ext": "./drpy_js/飘花影院.js"
  3361. },
  3362. {
  3363. "key": "hipy_js_朴樱影视",
  3364. "name": "📺朴樱影视",
  3365. "type": 3,
  3366. "api": "./drpy_libs/drpy2.min.js",
  3367. "searchable": 1,
  3368. "quickSearch": 1,
  3369. "filterable": 1,
  3370. "order_num": 0,
  3371. "ext": "./drpy_js/朴樱影视.js"
  3372. },
  3373. {
  3374. "key": "hipy_js_七年影视",
  3375. "name": "📺七年影视",
  3376. "type": 3,
  3377. "api": "./drpy_libs/drpy2.min.js",
  3378. "searchable": 1,
  3379. "quickSearch": 1,
  3380. "filterable": 1,
  3381. "order_num": 0,
  3382. "ext": "./drpy_js/七年影视.js"
  3383. },
  3384. {
  3385. "key": "hipy_js_七色番",
  3386. "name": "📺七色番",
  3387. "type": 3,
  3388. "api": "./drpy_libs/drpy2.min.js",
  3389. "searchable": 1,
  3390. "quickSearch": 1,
  3391. "filterable": 1,
  3392. "order_num": 0,
  3393. "ext": "./drpy_js/七色番.js"
  3394. },
  3395. {
  3396. "key": "hipy_js_七新电影网",
  3397. "name": "📺七新电影网",
  3398. "type": 3,
  3399. "api": "./drpy_libs/drpy2.min.js",
  3400. "searchable": 1,
  3401. "quickSearch": 1,
  3402. "filterable": 1,
  3403. "order_num": 0,
  3404. "ext": "./drpy_js/七新电影网.js"
  3405. },
  3406. {
  3407. "key": "hipy_js_奇米动漫",
  3408. "name": "📺奇米动漫",
  3409. "type": 3,
  3410. "api": "./drpy_libs/drpy2.min.js",
  3411. "searchable": 1,
  3412. "quickSearch": 1,
  3413. "filterable": 1,
  3414. "order_num": 0,
  3415. "ext": "./drpy_js/奇米动漫.js"
  3416. },
  3417. {
  3418. "key": "hipy_js_千神影视",
  3419. "name": "📺千神影视",
  3420. "type": 3,
  3421. "api": "./drpy_libs/drpy2.min.js",
  3422. "searchable": 1,
  3423. "quickSearch": 1,
  3424. "filterable": 1,
  3425. "order_num": 0,
  3426. "ext": "./drpy_js/千神影视.js"
  3427. },
  3428. {
  3429. "key": "hipy_js_清风DJ",
  3430. "name": "📺清风DJ",
  3431. "type": 3,
  3432. "api": "./drpy_libs/drpy2.min.js",
  3433. "searchable": 1,
  3434. "quickSearch": 1,
  3435. "filterable": 1,
  3436. "order_num": 0,
  3437. "ext": "./drpy_js/清风DJ.js"
  3438. },
  3439. {
  3440. "key": "hipy_js_热播之家",
  3441. "name": "📺热播之家",
  3442. "type": 3,
  3443. "api": "./drpy_libs/drpy2.min.js",
  3444. "searchable": 1,
  3445. "quickSearch": 1,
  3446. "filterable": 1,
  3447. "order_num": 0,
  3448. "ext": "./drpy_js/热播之家.js"
  3449. },
  3450. {
  3451. "key": "hipy_js_热片网",
  3452. "name": "📺热片网",
  3453. "type": 3,
  3454. "api": "./drpy_libs/drpy2.min.js",
  3455. "searchable": 1,
  3456. "quickSearch": 1,
  3457. "filterable": 1,
  3458. "order_num": 0,
  3459. "ext": "./drpy_js/热片网.js"
  3460. },
  3461. {
  3462. "key": "hipy_js_人人影视",
  3463. "name": "📺人人影视",
  3464. "type": 3,
  3465. "api": "./drpy_libs/drpy2.min.js",
  3466. "searchable": 1,
  3467. "quickSearch": 1,
  3468. "filterable": 1,
  3469. "order_num": 0,
  3470. "ext": "./drpy_js/人人影视.js"
  3471. },
  3472. {
  3473. "key": "hipy_js_如意影视",
  3474. "name": "📺如意影视",
  3475. "type": 3,
  3476. "api": "./drpy_libs/drpy2.min.js",
  3477. "searchable": 1,
  3478. "quickSearch": 1,
  3479. "filterable": 1,
  3480. "order_num": 0,
  3481. "ext": "./drpy_js/如意影视.js"
  3482. },
  3483. {
  3484. "key": "hipy_js_闪雷电",
  3485. "name": "📺闪雷电",
  3486. "type": 3,
  3487. "api": "./drpy_libs/drpy2.min.js",
  3488. "searchable": 1,
  3489. "quickSearch": 1,
  3490. "filterable": 1,
  3491. "order_num": 0,
  3492. "ext": "./drpy_js/闪雷电.js"
  3493. },
  3494. {
  3495. "key": "hipy_js_少儿央视[央]",
  3496. "name": "📺少儿央视[央]",
  3497. "type": 3,
  3498. "api": "./drpy_libs/drpy2.min.js",
  3499. "searchable": 1,
  3500. "quickSearch": 1,
  3501. "filterable": 1,
  3502. "order_num": 0,
  3503. "ext": "./drpy_js/少儿央视[央].js"
  3504. },
  3505. {
  3506. "key": "hipy_js_神仙影视",
  3507. "name": "📺神仙影视",
  3508. "type": 3,
  3509. "api": "./drpy_libs/drpy2.min.js",
  3510. "searchable": 1,
  3511. "quickSearch": 1,
  3512. "filterable": 1,
  3513. "order_num": 0,
  3514. "ext": "./drpy_js/神仙影视.js"
  3515. },
  3516. {
  3517. "key": "hipy_js_时光影院",
  3518. "name": "📺时光影院",
  3519. "type": 3,
  3520. "api": "./drpy_libs/drpy2.min.js",
  3521. "searchable": 1,
  3522. "quickSearch": 1,
  3523. "filterable": 1,
  3524. "order_num": 0,
  3525. "ext": "./drpy_js/时光影院.js"
  3526. },
  3527. {
  3528. "key": "hipy_js_首发网",
  3529. "name": "📺首发网",
  3530. "type": 3,
  3531. "api": "./drpy_libs/drpy2.min.js",
  3532. "searchable": 1,
  3533. "quickSearch": 1,
  3534. "filterable": 1,
  3535. "order_num": 0,
  3536. "ext": "./drpy_js/首发网.js"
  3537. },
  3538. {
  3539. "key": "hipy_js_刷剧网",
  3540. "name": "📺刷剧网",
  3541. "type": 3,
  3542. "api": "./drpy_libs/drpy2.min.js",
  3543. "searchable": 1,
  3544. "quickSearch": 1,
  3545. "filterable": 1,
  3546. "order_num": 0,
  3547. "ext": "./drpy_js/刷剧网.js"
  3548. },
  3549. {
  3550. "key": "hipy_js_四个圈影视",
  3551. "name": "📺四个圈影视",
  3552. "type": 3,
  3553. "api": "./drpy_libs/drpy2.min.js",
  3554. "searchable": 1,
  3555. "quickSearch": 1,
  3556. "filterable": 1,
  3557. "order_num": 0,
  3558. "ext": "./drpy_js/四个圈影视.js"
  3559. },
  3560. {
  3561. "key": "hipy_js_速播小屋",
  3562. "name": "📺速播小屋",
  3563. "type": 3,
  3564. "api": "./drpy_libs/drpy2.min.js",
  3565. "searchable": 1,
  3566. "quickSearch": 1,
  3567. "filterable": 1,
  3568. "order_num": 0,
  3569. "ext": "./drpy_js/速播小屋.js"
  3570. },
  3571. {
  3572. "key": "hipy_js_速讯影院",
  3573. "name": "📺速讯影院",
  3574. "type": 3,
  3575. "api": "./drpy_libs/drpy2.min.js",
  3576. "searchable": 1,
  3577. "quickSearch": 1,
  3578. "filterable": 1,
  3579. "order_num": 0,
  3580. "ext": "./drpy_js/速讯影院.js"
  3581. },
  3582. {
  3583. "key": "hipy_js_桃子影视",
  3584. "name": "📺桃子影视",
  3585. "type": 3,
  3586. "api": "./drpy_libs/drpy2.min.js",
  3587. "searchable": 1,
  3588. "quickSearch": 1,
  3589. "filterable": 1,
  3590. "order_num": 0,
  3591. "ext": "./drpy_js/桃子影视.js"
  3592. },
  3593. {
  3594. "key": "hipy_js_天龙影院",
  3595. "name": "📺天龙影院",
  3596. "type": 3,
  3597. "api": "./drpy_libs/drpy2.min.js",
  3598. "searchable": 1,
  3599. "quickSearch": 1,
  3600. "filterable": 1,
  3601. "order_num": 0,
  3602. "ext": "./drpy_js/天龙影院.js"
  3603. },
  3604. {
  3605. "key": "hipy_js_天启",
  3606. "name": "📺天启",
  3607. "type": 3,
  3608. "api": "./drpy_libs/drpy2.min.js",
  3609. "searchable": 1,
  3610. "quickSearch": 1,
  3611. "filterable": 1,
  3612. "order_num": 0,
  3613. "ext": "./drpy_js/天启.js"
  3614. },
  3615. {
  3616. "key": "hipy_js_天天影视",
  3617. "name": "📺天天影视",
  3618. "type": 3,
  3619. "api": "./drpy_libs/drpy2.min.js",
  3620. "searchable": 1,
  3621. "quickSearch": 1,
  3622. "filterable": 1,
  3623. "order_num": 0,
  3624. "ext": "./drpy_js/天天影视.js"
  3625. },
  3626. {
  3627. "key": "hipy_js_网飞.TV",
  3628. "name": "📺网飞.TV",
  3629. "type": 3,
  3630. "api": "./drpy_libs/drpy2.min.js",
  3631. "searchable": 1,
  3632. "quickSearch": 1,
  3633. "filterable": 1,
  3634. "order_num": 0,
  3635. "ext": "./drpy_js/网飞.TV.js"
  3636. },
  3637. {
  3638. "key": "hipy_js_往往影视[慢]",
  3639. "name": "📺往往影视[慢]",
  3640. "type": 3,
  3641. "api": "./drpy_libs/drpy2.min.js",
  3642. "searchable": 1,
  3643. "quickSearch": 1,
  3644. "filterable": 1,
  3645. "order_num": 0,
  3646. "ext": "./drpy_js/往往影视[慢].js"
  3647. },
  3648. {
  3649. "key": "hipy_js_旺旺影视",
  3650. "name": "📺旺旺影视",
  3651. "type": 3,
  3652. "api": "./drpy_libs/drpy2.min.js",
  3653. "searchable": 1,
  3654. "quickSearch": 1,
  3655. "filterable": 1,
  3656. "order_num": 0,
  3657. "ext": "./drpy_js/旺旺影视.js"
  3658. },
  3659. {
  3660. "key": "hipy_js_维奇动漫",
  3661. "name": "📺维奇动漫",
  3662. "type": 3,
  3663. "api": "./drpy_libs/drpy2.min.js",
  3664. "searchable": 1,
  3665. "quickSearch": 1,
  3666. "filterable": 1,
  3667. "order_num": 0,
  3668. "ext": "./drpy_js/维奇动漫.js"
  3669. },
  3670. {
  3671. "key": "hipy_js_我爱跟剧",
  3672. "name": "📺我爱跟剧",
  3673. "type": 3,
  3674. "api": "./drpy_libs/drpy2.min.js",
  3675. "searchable": 1,
  3676. "quickSearch": 1,
  3677. "filterable": 1,
  3678. "order_num": 0,
  3679. "ext": "./drpy_js/我爱跟剧.js"
  3680. },
  3681. {
  3682. "key": "hipy_js_我播",
  3683. "name": "📺我播",
  3684. "type": 3,
  3685. "api": "./drpy_libs/drpy2.min.js",
  3686. "searchable": 1,
  3687. "quickSearch": 1,
  3688. "filterable": 1,
  3689. "order_num": 0,
  3690. "ext": "./drpy_js/我播.js"
  3691. },
  3692. {
  3693. "key": "hipy_js_我的哔哩传参",
  3694. "name": "📺我的哔哩传参",
  3695. "type": 3,
  3696. "api": "./drpy_libs/drpy2.min.js",
  3697. "searchable": 1,
  3698. "quickSearch": 1,
  3699. "filterable": 1,
  3700. "order_num": 0,
  3701. "ext": "./drpy_js/我的哔哩传参.js?type=url&params=../json/小学教育.json"
  3702. },
  3703. {
  3704. "key": "hipy_js_无忧影视",
  3705. "name": "📺无忧影视",
  3706. "type": 3,
  3707. "api": "./drpy_libs/drpy2.min.js",
  3708. "searchable": 1,
  3709. "quickSearch": 1,
  3710. "filterable": 1,
  3711. "order_num": 0,
  3712. "ext": "./drpy_js/无忧影视.js"
  3713. },
  3714. {
  3715. "key": "hipy_js_五五影院",
  3716. "name": "📺五五影院",
  3717. "type": 3,
  3718. "api": "./drpy_libs/drpy2.min.js",
  3719. "searchable": 1,
  3720. "quickSearch": 1,
  3721. "filterable": 1,
  3722. "order_num": 0,
  3723. "ext": "./drpy_js/五五影院.js"
  3724. },
  3725. {
  3726. "key": "hipy_js_悟空影院",
  3727. "name": "📺悟空影院",
  3728. "type": 3,
  3729. "api": "./drpy_libs/drpy2.min.js",
  3730. "searchable": 1,
  3731. "quickSearch": 1,
  3732. "filterable": 1,
  3733. "order_num": 0,
  3734. "ext": "./drpy_js/悟空影院.js"
  3735. },
  3736. {
  3737. "key": "hipy_js_夕云影视",
  3738. "name": "📺夕云影视",
  3739. "type": 3,
  3740. "api": "./drpy_libs/drpy2.min.js",
  3741. "searchable": 1,
  3742. "quickSearch": 1,
  3743. "filterable": 1,
  3744. "order_num": 0,
  3745. "ext": "./drpy_js/夕云影视.js"
  3746. },
  3747. {
  3748. "key": "hipy_js_西瓜影院",
  3749. "name": "📺西瓜影院",
  3750. "type": 3,
  3751. "api": "./drpy_libs/drpy2.min.js",
  3752. "searchable": 1,
  3753. "quickSearch": 1,
  3754. "filterable": 1,
  3755. "order_num": 0,
  3756. "ext": "./drpy_js/西瓜影院.js"
  3757. },
  3758. {
  3759. "key": "hipy_js_西屋影视",
  3760. "name": "📺西屋影视",
  3761. "type": 3,
  3762. "api": "./drpy_libs/drpy2.min.js",
  3763. "searchable": 1,
  3764. "quickSearch": 1,
  3765. "filterable": 1,
  3766. "order_num": 0,
  3767. "ext": "./drpy_js/西屋影视.js"
  3768. },
  3769. {
  3770. "key": "hipy_js_喜马拉雅",
  3771. "name": "📺喜马拉雅",
  3772. "type": 3,
  3773. "api": "./drpy_libs/drpy2.min.js",
  3774. "searchable": 1,
  3775. "quickSearch": 1,
  3776. "filterable": 1,
  3777. "order_num": 0,
  3778. "ext": "./drpy_js/喜马拉雅.js"
  3779. },
  3780. {
  3781. "key": "hipy_js_虾酱追剧",
  3782. "name": "📺虾酱追剧",
  3783. "type": 3,
  3784. "api": "./drpy_libs/drpy2.min.js",
  3785. "searchable": 1,
  3786. "quickSearch": 1,
  3787. "filterable": 1,
  3788. "order_num": 0,
  3789. "ext": "./drpy_js/虾酱追剧.js"
  3790. },
  3791. {
  3792. "key": "hipy_js_侠客影视",
  3793. "name": "📺侠客影视",
  3794. "type": 3,
  3795. "api": "./drpy_libs/drpy2.min.js",
  3796. "searchable": 1,
  3797. "quickSearch": 1,
  3798. "filterable": 1,
  3799. "order_num": 0,
  3800. "ext": "./drpy_js/侠客影视.js"
  3801. },
  3802. {
  3803. "key": "hipy_js_相声随身听",
  3804. "name": "📺相声随身听",
  3805. "type": 3,
  3806. "api": "./drpy_libs/drpy2.min.js",
  3807. "searchable": 1,
  3808. "quickSearch": 1,
  3809. "filterable": 1,
  3810. "order_num": 0,
  3811. "ext": "./drpy_js/相声随身听.js"
  3812. },
  3813. {
  3814. "key": "hipy_js_香蕉视频",
  3815. "name": "📺香蕉视频",
  3816. "type": 3,
  3817. "api": "./drpy_libs/drpy2.min.js",
  3818. "searchable": 1,
  3819. "quickSearch": 1,
  3820. "filterable": 1,
  3821. "order_num": 0,
  3822. "ext": "./drpy_js/香蕉视频.js"
  3823. },
  3824. {
  3825. "key": "hipy_js_想看影院",
  3826. "name": "📺想看影院",
  3827. "type": 3,
  3828. "api": "./drpy_libs/drpy2.min.js",
  3829. "searchable": 1,
  3830. "quickSearch": 1,
  3831. "filterable": 1,
  3832. "order_num": 0,
  3833. "ext": "./drpy_js/想看影院.js"
  3834. },
  3835. {
  3836. "key": "hipy_js_小白菜电影",
  3837. "name": "📺小白菜电影",
  3838. "type": 3,
  3839. "api": "./drpy_libs/drpy2.min.js",
  3840. "searchable": 1,
  3841. "quickSearch": 1,
  3842. "filterable": 1,
  3843. "order_num": 0,
  3844. "ext": "./drpy_js/小白菜电影.js"
  3845. },
  3846. {
  3847. "key": "hipy_js_小宝影院",
  3848. "name": "📺小宝影院",
  3849. "type": 3,
  3850. "api": "./drpy_libs/drpy2.min.js",
  3851. "searchable": 1,
  3852. "quickSearch": 1,
  3853. "filterable": 1,
  3854. "order_num": 0,
  3855. "ext": "./drpy_js/小宝影院.js"
  3856. },
  3857. {
  3858. "key": "hipy_js_小鱼影视",
  3859. "name": "📺小鱼影视",
  3860. "type": 3,
  3861. "api": "./drpy_libs/drpy2.min.js",
  3862. "searchable": 1,
  3863. "quickSearch": 1,
  3864. "filterable": 1,
  3865. "order_num": 0,
  3866. "ext": "./drpy_js/小鱼影视.js"
  3867. },
  3868. {
  3869. "key": "hipy_js_新91",
  3870. "name": "📺新91",
  3871. "type": 3,
  3872. "api": "./drpy_libs/drpy2.min.js",
  3873. "searchable": 1,
  3874. "quickSearch": 1,
  3875. "filterable": 1,
  3876. "order_num": 0,
  3877. "ext": "./drpy_js/新91.js"
  3878. },
  3879. {
  3880. "key": "hipy_js_新茶杯狐",
  3881. "name": "📺新茶杯狐",
  3882. "type": 3,
  3883. "api": "./drpy_libs/drpy2.min.js",
  3884. "searchable": 1,
  3885. "quickSearch": 1,
  3886. "filterable": 1,
  3887. "order_num": 0,
  3888. "ext": "./drpy_js/新茶杯狐.js"
  3889. },
  3890. {
  3891. "key": "hipy_js_新视觉",
  3892. "name": "📺新视觉",
  3893. "type": 3,
  3894. "api": "./drpy_libs/drpy2.min.js",
  3895. "searchable": 1,
  3896. "quickSearch": 1,
  3897. "filterable": 1,
  3898. "order_num": 0,
  3899. "ext": "./drpy_js/新视觉.js"
  3900. },
  3901. {
  3902. "key": "hipy_js_新闻[央]",
  3903. "name": "📺新闻[央]",
  3904. "type": 3,
  3905. "api": "./drpy_libs/drpy2.min.js",
  3906. "searchable": 1,
  3907. "quickSearch": 1,
  3908. "filterable": 1,
  3909. "order_num": 0,
  3910. "ext": "./drpy_js/新闻[央].js"
  3911. },
  3912. {
  3913. "key": "hipy_js_星辰",
  3914. "name": "📺星辰",
  3915. "type": 3,
  3916. "api": "./drpy_libs/drpy2.min.js",
  3917. "searchable": 1,
  3918. "quickSearch": 1,
  3919. "filterable": 1,
  3920. "order_num": 0,
  3921. "ext": "./drpy_js/星辰.js"
  3922. },
  3923. {
  3924. "key": "hipy_js_星辰影视",
  3925. "name": "📺星辰影视",
  3926. "type": 3,
  3927. "api": "./drpy_libs/drpy2.min.js",
  3928. "searchable": 1,
  3929. "quickSearch": 1,
  3930. "filterable": 1,
  3931. "order_num": 0,
  3932. "ext": "./drpy_js/星辰影视.js"
  3933. },
  3934. {
  3935. "key": "hipy_js_星辰CT",
  3936. "name": "📺星辰CT",
  3937. "type": 3,
  3938. "api": "./drpy_libs/drpy2.min.js",
  3939. "searchable": 1,
  3940. "quickSearch": 1,
  3941. "filterable": 1,
  3942. "order_num": 0,
  3943. "ext": "./drpy_js/星辰CT.js"
  3944. },
  3945. {
  3946. "key": "hipy_js_星空影院",
  3947. "name": "📺星空影院",
  3948. "type": 3,
  3949. "api": "./drpy_libs/drpy2.min.js",
  3950. "searchable": 1,
  3951. "quickSearch": 1,
  3952. "filterable": 1,
  3953. "order_num": 0,
  3954. "ext": "./drpy_js/星空影院.js"
  3955. },
  3956. {
  3957. "key": "hipy_js_星云影视",
  3958. "name": "📺星云影视",
  3959. "type": 3,
  3960. "api": "./drpy_libs/drpy2.min.js",
  3961. "searchable": 1,
  3962. "quickSearch": 1,
  3963. "filterable": 1,
  3964. "order_num": 0,
  3965. "ext": "./drpy_js/星云影视.js"
  3966. },
  3967. {
  3968. "key": "hipy_js_兄弟影视",
  3969. "name": "📺兄弟影视",
  3970. "type": 3,
  3971. "api": "./drpy_libs/drpy2.min.js",
  3972. "searchable": 1,
  3973. "quickSearch": 1,
  3974. "filterable": 1,
  3975. "order_num": 0,
  3976. "ext": "./drpy_js/兄弟影视.js"
  3977. },
  3978. {
  3979. "key": "hipy_js_旋风视频",
  3980. "name": "📺旋风视频",
  3981. "type": 3,
  3982. "api": "./drpy_libs/drpy2.min.js",
  3983. "searchable": 1,
  3984. "quickSearch": 1,
  3985. "filterable": 1,
  3986. "order_num": 0,
  3987. "ext": "./drpy_js/旋风视频.js"
  3988. },
  3989. {
  3990. "key": "hipy_js_迅播影院",
  3991. "name": "📺迅播影院",
  3992. "type": 3,
  3993. "api": "./drpy_libs/drpy2.min.js",
  3994. "searchable": 1,
  3995. "quickSearch": 1,
  3996. "filterable": 1,
  3997. "order_num": 0,
  3998. "ext": "./drpy_js/迅播影院.js"
  3999. },
  4000. {
  4001. "key": "hipy_js_鸭奈飞影视",
  4002. "name": "📺鸭奈飞影视",
  4003. "type": 3,
  4004. "api": "./drpy_libs/drpy2.min.js",
  4005. "searchable": 1,
  4006. "quickSearch": 1,
  4007. "filterable": 1,
  4008. "order_num": 0,
  4009. "ext": "./drpy_js/鸭奈飞影视.js"
  4010. },
  4011. {
  4012. "key": "hipy_js_央视大全[央]",
  4013. "name": "📺央视大全[央]",
  4014. "type": 3,
  4015. "api": "./drpy_libs/drpy2.min.js",
  4016. "searchable": 1,
  4017. "quickSearch": 1,
  4018. "filterable": 1,
  4019. "order_num": 0,
  4020. "ext": "./drpy_js/央视大全[央].js"
  4021. },
  4022. {
  4023. "key": "hipy_js_业余自营",
  4024. "name": "📺业余自营",
  4025. "type": 3,
  4026. "api": "./drpy_libs/drpy2.min.js",
  4027. "searchable": 1,
  4028. "quickSearch": 1,
  4029. "filterable": 1,
  4030. "order_num": 0,
  4031. "ext": "./drpy_js/业余自营.js"
  4032. },
  4033. {
  4034. "key": "hipy_js_一起看",
  4035. "name": "📺一起看",
  4036. "type": 3,
  4037. "api": "./drpy_libs/drpy2.min.js",
  4038. "searchable": 1,
  4039. "quickSearch": 1,
  4040. "filterable": 1,
  4041. "order_num": 0,
  4042. "ext": "./drpy_js/一起看.js"
  4043. },
  4044. {
  4045. "key": "hipy_js_一曲肝肠断",
  4046. "name": "📺一曲肝肠断",
  4047. "type": 3,
  4048. "api": "./drpy_libs/drpy2.min.js",
  4049. "searchable": 1,
  4050. "quickSearch": 1,
  4051. "filterable": 1,
  4052. "order_num": 0,
  4053. "ext": "./drpy_js/一曲肝肠断.js"
  4054. },
  4055. {
  4056. "key": "hipy_js_一支穿云箭",
  4057. "name": "📺一支穿云箭",
  4058. "type": 3,
  4059. "api": "./drpy_libs/drpy2.min.js",
  4060. "searchable": 1,
  4061. "quickSearch": 1,
  4062. "filterable": 1,
  4063. "order_num": 0,
  4064. "ext": "./drpy_js/一支穿云箭.js"
  4065. },
  4066. {
  4067. "key": "hipy_js_怡萱动漫",
  4068. "name": "📺怡萱动漫",
  4069. "type": 3,
  4070. "api": "./drpy_libs/drpy2.min.js",
  4071. "searchable": 1,
  4072. "quickSearch": 1,
  4073. "filterable": 1,
  4074. "order_num": 0,
  4075. "ext": "./drpy_js/怡萱动漫.js"
  4076. },
  4077. {
  4078. "key": "hipy_js_易看影视",
  4079. "name": "📺易看影视",
  4080. "type": 3,
  4081. "api": "./drpy_libs/drpy2.min.js",
  4082. "searchable": 1,
  4083. "quickSearch": 1,
  4084. "filterable": 1,
  4085. "order_num": 0,
  4086. "ext": "./drpy_js/易看影视.js"
  4087. },
  4088. {
  4089. "key": "hipy_js_樱花动漫",
  4090. "name": "📺樱花动漫",
  4091. "type": 3,
  4092. "api": "./drpy_libs/drpy2.min.js",
  4093. "searchable": 1,
  4094. "quickSearch": 1,
  4095. "filterable": 1,
  4096. "order_num": 0,
  4097. "ext": "./drpy_js/樱花动漫.js"
  4098. },
  4099. {
  4100. "key": "hipy_js_影剧星球",
  4101. "name": "📺影剧星球",
  4102. "type": 3,
  4103. "api": "./drpy_libs/drpy2.min.js",
  4104. "searchable": 1,
  4105. "quickSearch": 1,
  4106. "filterable": 1,
  4107. "order_num": 0,
  4108. "ext": "./drpy_js/影剧星球.js"
  4109. },
  4110. {
  4111. "key": "hipy_js_影视大全",
  4112. "name": "📺影视大全",
  4113. "type": 3,
  4114. "api": "./drpy_libs/drpy2.min.js",
  4115. "searchable": 1,
  4116. "quickSearch": 1,
  4117. "filterable": 1,
  4118. "order_num": 0,
  4119. "ext": "./drpy_js/影视大全.js"
  4120. },
  4121. {
  4122. "key": "hipy_js_影视工厂",
  4123. "name": "📺影视工厂",
  4124. "type": 3,
  4125. "api": "./drpy_libs/drpy2.min.js",
  4126. "searchable": 1,
  4127. "quickSearch": 1,
  4128. "filterable": 1,
  4129. "order_num": 0,
  4130. "ext": "./drpy_js/影视工厂.js"
  4131. },
  4132. {
  4133. "key": "hipy_js_影视工场",
  4134. "name": "📺影视工场",
  4135. "type": 3,
  4136. "api": "./drpy_libs/drpy2.min.js",
  4137. "searchable": 1,
  4138. "quickSearch": 1,
  4139. "filterable": 1,
  4140. "order_num": 0,
  4141. "ext": "./drpy_js/影视工场.js"
  4142. },
  4143. {
  4144. "key": "hipy_js_影视看吧",
  4145. "name": "📺影视看吧",
  4146. "type": 3,
  4147. "api": "./drpy_libs/drpy2.min.js",
  4148. "searchable": 1,
  4149. "quickSearch": 1,
  4150. "filterable": 1,
  4151. "order_num": 0,
  4152. "ext": "./drpy_js/影视看吧.js"
  4153. },
  4154. {
  4155. "key": "hipy_js_影视控",
  4156. "name": "📺影视控",
  4157. "type": 3,
  4158. "api": "./drpy_libs/drpy2.min.js",
  4159. "searchable": 1,
  4160. "quickSearch": 1,
  4161. "filterable": 1,
  4162. "order_num": 0,
  4163. "ext": "./drpy_js/影视控.js"
  4164. },
  4165. {
  4166. "key": "hipy_js_影渣渣影视",
  4167. "name": "📺影渣渣影视",
  4168. "type": 3,
  4169. "api": "./drpy_libs/drpy2.min.js",
  4170. "searchable": 1,
  4171. "quickSearch": 1,
  4172. "filterable": 1,
  4173. "order_num": 0,
  4174. "ext": "./drpy_js/影渣渣影视.js"
  4175. },
  4176. {
  4177. "key": "hipy_js_映播TV",
  4178. "name": "📺映播TV",
  4179. "type": 3,
  4180. "api": "./drpy_libs/drpy2.min.js",
  4181. "searchable": 1,
  4182. "quickSearch": 1,
  4183. "filterable": 1,
  4184. "order_num": 0,
  4185. "ext": "./drpy_js/映播TV.js"
  4186. },
  4187. {
  4188. "key": "hipy_js_悠悠影视",
  4189. "name": "📺悠悠影视",
  4190. "type": 3,
  4191. "api": "./drpy_libs/drpy2.min.js",
  4192. "searchable": 1,
  4193. "quickSearch": 1,
  4194. "filterable": 1,
  4195. "order_num": 0,
  4196. "ext": "./drpy_js/悠悠影视.js"
  4197. },
  4198. {
  4199. "key": "hipy_js_游子视频",
  4200. "name": "📺游子视频",
  4201. "type": 3,
  4202. "api": "./drpy_libs/drpy2.min.js",
  4203. "searchable": 1,
  4204. "quickSearch": 1,
  4205. "filterable": 1,
  4206. "order_num": 0,
  4207. "ext": "./drpy_js/游子视频.js"
  4208. },
  4209. {
  4210. "key": "hipy_js_有声听书网",
  4211. "name": "📺有声听书网",
  4212. "type": 3,
  4213. "api": "./drpy_libs/drpy2.min.js",
  4214. "searchable": 1,
  4215. "quickSearch": 1,
  4216. "filterable": 1,
  4217. "order_num": 0,
  4218. "ext": "./drpy_js/有声听书网.js"
  4219. },
  4220. {
  4221. "key": "hipy_js_有声小说吧",
  4222. "name": "📺有声小说吧",
  4223. "type": 3,
  4224. "api": "./drpy_libs/drpy2.min.js",
  4225. "searchable": 1,
  4226. "quickSearch": 1,
  4227. "filterable": 1,
  4228. "order_num": 0,
  4229. "ext": "./drpy_js/有声小说吧.js"
  4230. },
  4231. {
  4232. "key": "hipy_js_宇航影视",
  4233. "name": "📺宇航影视",
  4234. "type": 3,
  4235. "api": "./drpy_libs/drpy2.min.js",
  4236. "searchable": 1,
  4237. "quickSearch": 1,
  4238. "filterable": 1,
  4239. "order_num": 0,
  4240. "ext": "./drpy_js/宇航影视.js"
  4241. },
  4242. {
  4243. "key": "hipy_js_云电影网",
  4244. "name": "📺云电影网",
  4245. "type": 3,
  4246. "api": "./drpy_libs/drpy2.min.js",
  4247. "searchable": 1,
  4248. "quickSearch": 1,
  4249. "filterable": 1,
  4250. "order_num": 0,
  4251. "ext": "./drpy_js/云电影网.js"
  4252. },
  4253. {
  4254. "key": "hipy_js_云盘资源网",
  4255. "name": "📺云盘资源网",
  4256. "type": 3,
  4257. "api": "./drpy_libs/drpy2.min.js",
  4258. "searchable": 1,
  4259. "quickSearch": 1,
  4260. "filterable": 1,
  4261. "order_num": 0,
  4262. "ext": "./drpy_js/云盘资源网.js"
  4263. },
  4264. {
  4265. "key": "hipy_js_云星cms",
  4266. "name": "📺云星cms",
  4267. "type": 3,
  4268. "api": "./drpy_libs/drpy2.min.js",
  4269. "searchable": 1,
  4270. "quickSearch": 1,
  4271. "filterable": 1,
  4272. "order_num": 0,
  4273. "ext": "./drpy_js/云星cms.js"
  4274. },
  4275. {
  4276. "key": "hipy_js_在线之家",
  4277. "name": "📺在线之家",
  4278. "type": 3,
  4279. "api": "./drpy_libs/drpy2.min.js",
  4280. "searchable": 1,
  4281. "quickSearch": 1,
  4282. "filterable": 1,
  4283. "order_num": 0,
  4284. "ext": "./drpy_js/在线之家.js"
  4285. },
  4286. {
  4287. "key": "hipy_js_掌心世界",
  4288. "name": "📺掌心世界",
  4289. "type": 3,
  4290. "api": "./drpy_libs/drpy2.min.js",
  4291. "searchable": 1,
  4292. "quickSearch": 1,
  4293. "filterable": 1,
  4294. "order_num": 0,
  4295. "ext": "./drpy_js/掌心世界.js"
  4296. },
  4297. {
  4298. "key": "hipy_js_追剧兔",
  4299. "name": "📺追剧兔",
  4300. "type": 3,
  4301. "api": "./drpy_libs/drpy2.min.js",
  4302. "searchable": 1,
  4303. "quickSearch": 1,
  4304. "filterable": 1,
  4305. "order_num": 0,
  4306. "ext": "./drpy_js/追剧兔.js"
  4307. },
  4308. {
  4309. "key": "hipy_js_追影TV",
  4310. "name": "📺追影TV",
  4311. "type": 3,
  4312. "api": "./drpy_libs/drpy2.min.js",
  4313. "searchable": 1,
  4314. "quickSearch": 1,
  4315. "filterable": 1,
  4316. "order_num": 0,
  4317. "ext": "./drpy_js/追影TV.js"
  4318. },
  4319. {
  4320. "key": "hipy_js_孜然影视",
  4321. "name": "📺孜然影视",
  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/孜然影视.js"
  4329. },
  4330. {
  4331. "key": "hipy_js_子夜动漫",
  4332. "name": "📺子夜动漫",
  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/子夜动漫.js"
  4340. },
  4341. {
  4342. "key": "hipy_js_子子影视",
  4343. "name": "📺子子影视",
  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/子子影视.js"
  4351. },
  4352. {
  4353. "key": "hipy_js_综合[央]",
  4354. "name": "📺综合[央]",
  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/综合[央].js"
  4362. },
  4363. {
  4364. "key": "hipy_js_最新4K",
  4365. "name": "📺最新4K",
  4366. "type": 3,
  4367. "api": "./drpy_libs/drpy2.min.js",
  4368. "searchable": 1,
  4369. "quickSearch": 1,
  4370. "filterable": 1,
  4371. "order_num": 0,
  4372. "ext": "./drpy_js/最新4K.js"
  4373. },
  4374. {
  4375. "key": "hipy_js_auete",
  4376. "name": "📺auete",
  4377. "type": 3,
  4378. "api": "./drpy_libs/drpy2.min.js",
  4379. "searchable": 1,
  4380. "quickSearch": 1,
  4381. "filterable": 1,
  4382. "order_num": 0,
  4383. "ext": "./drpy_js/auete.js"
  4384. },
  4385. {
  4386. "key": "hipy_js_B站影视",
  4387. "name": "📺B站影视",
  4388. "type": 3,
  4389. "api": "./drpy_libs/drpy2.min.js",
  4390. "searchable": 1,
  4391. "quickSearch": 1,
  4392. "filterable": 1,
  4393. "order_num": 0,
  4394. "ext": "./drpy_js/B站影视.js"
  4395. },
  4396. {
  4397. "key": "hipy_js_bilfun(自动)",
  4398. "name": "📺bilfun(自动)",
  4399. "type": 3,
  4400. "api": "./drpy_libs/drpy2.min.js",
  4401. "searchable": 1,
  4402. "quickSearch": 1,
  4403. "filterable": 1,
  4404. "order_num": 0,
  4405. "ext": "./drpy_js/bilfun(自动).js"
  4406. },
  4407. {
  4408. "key": "hipy_js_cally66",
  4409. "name": "📺cally66",
  4410. "type": 3,
  4411. "api": "./drpy_libs/drpy2.min.js",
  4412. "searchable": 1,
  4413. "quickSearch": 1,
  4414. "filterable": 1,
  4415. "order_num": 0,
  4416. "ext": "./drpy_js/cally66.js"
  4417. },
  4418. {
  4419. "key": "hipy_js_eFuns",
  4420. "name": "📺eFuns",
  4421. "type": 3,
  4422. "api": "./drpy_libs/drpy2.min.js",
  4423. "searchable": 1,
  4424. "quickSearch": 1,
  4425. "filterable": 1,
  4426. "order_num": 0,
  4427. "ext": "./drpy_js/eFuns.js"
  4428. },
  4429. {
  4430. "key": "hipy_js_freeok",
  4431. "name": "📺freeok",
  4432. "type": 3,
  4433. "api": "./drpy_libs/drpy2.min.js",
  4434. "searchable": 1,
  4435. "quickSearch": 1,
  4436. "filterable": 1,
  4437. "order_num": 0,
  4438. "ext": "./drpy_js/freeok.js"
  4439. },
  4440. {
  4441. "key": "hipy_js_freeokk",
  4442. "name": "📺freeokk",
  4443. "type": 3,
  4444. "api": "./drpy_libs/drpy2.min.js",
  4445. "searchable": 1,
  4446. "quickSearch": 1,
  4447. "filterable": 1,
  4448. "order_num": 0,
  4449. "ext": "./drpy_js/freeokk.js"
  4450. },
  4451. {
  4452. "key": "hipy_js_FreeOKLOL",
  4453. "name": "📺FreeOKLOL",
  4454. "type": 3,
  4455. "api": "./drpy_libs/drpy2.min.js",
  4456. "searchable": 1,
  4457. "quickSearch": 1,
  4458. "filterable": 1,
  4459. "order_num": 0,
  4460. "ext": "./drpy_js/FreeOKLOL.js"
  4461. },
  4462. {
  4463. "key": "hipy_js_GO影视",
  4464. "name": "📺GO影视",
  4465. "type": 3,
  4466. "api": "./drpy_libs/drpy2.min.js",
  4467. "searchable": 1,
  4468. "quickSearch": 1,
  4469. "filterable": 1,
  4470. "order_num": 0,
  4471. "ext": "./drpy_js/GO影视.js"
  4472. },
  4473. {
  4474. "key": "hipy_js_HDmoli",
  4475. "name": "📺HDmoli",
  4476. "type": 3,
  4477. "api": "./drpy_libs/drpy2.min.js",
  4478. "searchable": 1,
  4479. "quickSearch": 1,
  4480. "filterable": 1,
  4481. "order_num": 0,
  4482. "ext": "./drpy_js/HDmoli.js"
  4483. },
  4484. {
  4485. "key": "hipy_js_iFun",
  4486. "name": "📺iFun",
  4487. "type": 3,
  4488. "api": "./drpy_libs/drpy2.min.js",
  4489. "searchable": 1,
  4490. "quickSearch": 1,
  4491. "filterable": 1,
  4492. "order_num": 0,
  4493. "ext": "./drpy_js/iFun.js"
  4494. },
  4495. {
  4496. "key": "hipy_js_KOK影院",
  4497. "name": "📺KOK影院",
  4498. "type": 3,
  4499. "api": "./drpy_libs/drpy2.min.js",
  4500. "searchable": 1,
  4501. "quickSearch": 1,
  4502. "filterable": 1,
  4503. "order_num": 0,
  4504. "ext": "./drpy_js/KOK影院.js"
  4505. },
  4506. {
  4507. "key": "hipy_js_LIBHD",
  4508. "name": "📺LIBHD",
  4509. "type": 3,
  4510. "api": "./drpy_libs/drpy2.min.js",
  4511. "searchable": 1,
  4512. "quickSearch": 1,
  4513. "filterable": 1,
  4514. "order_num": 0,
  4515. "ext": "./drpy_js/LIBHD.js"
  4516. },
  4517. {
  4518. "key": "hipy_js_M1949电影",
  4519. "name": "📺M1949电影",
  4520. "type": 3,
  4521. "api": "./drpy_libs/drpy2.min.js",
  4522. "searchable": 1,
  4523. "quickSearch": 1,
  4524. "filterable": 1,
  4525. "order_num": 0,
  4526. "ext": "./drpy_js/M1949电影.js"
  4527. },
  4528. {
  4529. "key": "hipy_js_MuteFun动漫",
  4530. "name": "📺MuteFun动漫",
  4531. "type": 3,
  4532. "api": "./drpy_libs/drpy2.min.js",
  4533. "searchable": 1,
  4534. "quickSearch": 1,
  4535. "filterable": 1,
  4536. "order_num": 0,
  4537. "ext": "./drpy_js/MuteFun动漫.js"
  4538. },
  4539. {
  4540. "key": "hipy_js_NT动漫",
  4541. "name": "📺NT动漫",
  4542. "type": 3,
  4543. "api": "./drpy_libs/drpy2.min.js",
  4544. "searchable": 1,
  4545. "quickSearch": 1,
  4546. "filterable": 1,
  4547. "order_num": 0,
  4548. "ext": "./drpy_js/NT动漫.js"
  4549. },
  4550. {
  4551. "key": "hipy_js_OmoFun",
  4552. "name": "📺OmoFun",
  4553. "type": 3,
  4554. "api": "./drpy_libs/drpy2.min.js",
  4555. "searchable": 1,
  4556. "quickSearch": 1,
  4557. "filterable": 1,
  4558. "order_num": 0,
  4559. "ext": "./drpy_js/OmoFun.js"
  4560. },
  4561. {
  4562. "key": "hipy_js_OuoFun",
  4563. "name": "📺OuoFun",
  4564. "type": 3,
  4565. "api": "./drpy_libs/drpy2.min.js",
  4566. "searchable": 1,
  4567. "quickSearch": 1,
  4568. "filterable": 1,
  4569. "order_num": 0,
  4570. "ext": "./drpy_js/OuoFun.js"
  4571. },
  4572. {
  4573. "key": "hipy_js_ouofun(2)",
  4574. "name": "📺ouofun(2)",
  4575. "type": 3,
  4576. "api": "./drpy_libs/drpy2.min.js",
  4577. "searchable": 1,
  4578. "quickSearch": 1,
  4579. "filterable": 1,
  4580. "order_num": 0,
  4581. "ext": "./drpy_js/ouofun(2).js"
  4582. },
  4583. {
  4584. "key": "hipy_js_Pornhub-z",
  4585. "name": "📺Pornhub-z",
  4586. "type": 3,
  4587. "api": "./drpy_libs/drpy2.min.js",
  4588. "searchable": 1,
  4589. "quickSearch": 1,
  4590. "filterable": 1,
  4591. "order_num": 0,
  4592. "ext": "./drpy_js/Pornhub-z.js"
  4593. },
  4594. {
  4595. "key": "hipy_js_PPXDM动漫",
  4596. "name": "📺PPXDM动漫",
  4597. "type": 3,
  4598. "api": "./drpy_libs/drpy2.min.js",
  4599. "searchable": 1,
  4600. "quickSearch": 1,
  4601. "filterable": 1,
  4602. "order_num": 0,
  4603. "ext": "./drpy_js/PPXDM动漫.js"
  4604. },
  4605. {
  4606. "key": "hipy_js_PTT追剧大师",
  4607. "name": "📺PTT追剧大师",
  4608. "type": 3,
  4609. "api": "./drpy_libs/drpy2.min.js",
  4610. "searchable": 1,
  4611. "quickSearch": 1,
  4612. "filterable": 1,
  4613. "order_num": 0,
  4614. "ext": "./drpy_js/PTT追剧大师.js"
  4615. },
  4616. {
  4617. "key": "hipy_js_R18撸【密】",
  4618. "name": "📺R18撸【密】",
  4619. "type": 3,
  4620. "api": "./drpy_libs/drpy2.min.js",
  4621. "searchable": 1,
  4622. "quickSearch": 1,
  4623. "filterable": 1,
  4624. "order_num": 0,
  4625. "ext": "./drpy_js/R18撸【密】.js"
  4626. },
  4627. {
  4628. "key": "hipy_js_ss直播",
  4629. "name": "📺ss直播",
  4630. "type": 3,
  4631. "api": "./drpy_libs/drpy2.min.js",
  4632. "searchable": 1,
  4633. "quickSearch": 1,
  4634. "filterable": 1,
  4635. "order_num": 0,
  4636. "ext": "./drpy_js/ss直播.js"
  4637. },
  4638. {
  4639. "key": "hipy_js_TVB云播",
  4640. "name": "📺TVB云播",
  4641. "type": 3,
  4642. "api": "./drpy_libs/drpy2.min.js",
  4643. "searchable": 1,
  4644. "quickSearch": 1,
  4645. "filterable": 1,
  4646. "order_num": 0,
  4647. "ext": "./drpy_js/TVB云播.js"
  4648. },
  4649. {
  4650. "key": "hipy_js_voflix",
  4651. "name": "📺voflix",
  4652. "type": 3,
  4653. "api": "./drpy_libs/drpy2.min.js",
  4654. "searchable": 1,
  4655. "quickSearch": 1,
  4656. "filterable": 1,
  4657. "order_num": 0,
  4658. "ext": "./drpy_js/voflix.js"
  4659. },
  4660. {
  4661. "key": "hipy_js_狗狗盘[搜]",
  4662. "name": "🔎狗狗盘[搜]",
  4663. "type": 3,
  4664. "api": "./drpy_libs/drpy2.min.js",
  4665. "searchable": 1,
  4666. "quickSearch": 1,
  4667. "filterable": 1,
  4668. "order_num": 0,
  4669. "ext": "./drpy_js/狗狗盘[搜].js"
  4670. },
  4671. {
  4672. "key": "hipy_js_神马电影[搜]",
  4673. "name": "🔎神马电影[搜]",
  4674. "type": 3,
  4675. "api": "./drpy_libs/drpy2.min.js",
  4676. "searchable": 1,
  4677. "quickSearch": 1,
  4678. "filterable": 1,
  4679. "order_num": 0,
  4680. "ext": "./drpy_js/神马电影[搜].js"
  4681. },
  4682. {
  4683. "key": "hipy_js_小站盘[搜]",
  4684. "name": "🔎小站盘[搜]",
  4685. "type": 3,
  4686. "api": "./drpy_libs/drpy2.min.js",
  4687. "searchable": 1,
  4688. "quickSearch": 1,
  4689. "filterable": 1,
  4690. "order_num": 0,
  4691. "ext": "./drpy_js/小站盘[搜].js"
  4692. },
  4693. {
  4694. "key": "hipy_js_一号影院[搜]",
  4695. "name": "🔎一号影院[搜]",
  4696. "type": 3,
  4697. "api": "./drpy_libs/drpy2.min.js",
  4698. "searchable": 1,
  4699. "quickSearch": 1,
  4700. "filterable": 1,
  4701. "order_num": 0,
  4702. "ext": "./drpy_js/一号影院[搜].js"
  4703. },
  4704. {
  4705. "key": "hipy_js_易搜[搜]",
  4706. "name": "🔎易搜[搜]",
  4707. "type": 3,
  4708. "api": "./drpy_libs/drpy2.min.js",
  4709. "searchable": 1,
  4710. "quickSearch": 1,
  4711. "filterable": 1,
  4712. "order_num": 0,
  4713. "ext": "./drpy_js/易搜[搜].js"
  4714. },
  4715. {
  4716. "key": "hipy_js_影搜[搜]",
  4717. "name": "🔎影搜[搜]",
  4718. "type": 3,
  4719. "api": "./drpy_libs/drpy2.min.js",
  4720. "searchable": 1,
  4721. "quickSearch": 1,
  4722. "filterable": 1,
  4723. "order_num": 0,
  4724. "ext": "./drpy_js/影搜[搜].js"
  4725. },
  4726. {
  4727. "key": "hipy_js_大米星球[V2]",
  4728. "name": "🔱大米星球[V2]",
  4729. "type": 3,
  4730. "api": "./drpy_libs/drpy2.min.js",
  4731. "searchable": 1,
  4732. "quickSearch": 1,
  4733. "filterable": 1,
  4734. "order_num": 0,
  4735. "ext": "./drpy_js/大米星球[V2].js"
  4736. },
  4737. {
  4738. "key": "hipy_js_河狸影视[V2]",
  4739. "name": "🔱河狸影视[V2]",
  4740. "type": 3,
  4741. "api": "./drpy_libs/drpy2.min.js",
  4742. "searchable": 1,
  4743. "quickSearch": 1,
  4744. "filterable": 1,
  4745. "order_num": 0,
  4746. "ext": "./drpy_js/河狸影视[V2].js"
  4747. },
  4748. {
  4749. "key": "hipy_js_柠檬影视[V2]",
  4750. "name": "🔱柠檬影视[V2]",
  4751. "type": 3,
  4752. "api": "./drpy_libs/drpy2.min.js",
  4753. "searchable": 1,
  4754. "quickSearch": 1,
  4755. "filterable": 1,
  4756. "order_num": 0,
  4757. "ext": "./drpy_js/柠檬影视[V2].js"
  4758. },
  4759. {
  4760. "key": "hipy_js_思古影视[V2]",
  4761. "name": "🔱思古影视[V2]",
  4762. "type": 3,
  4763. "api": "./drpy_libs/drpy2.min.js",
  4764. "searchable": 1,
  4765. "quickSearch": 1,
  4766. "filterable": 1,
  4767. "order_num": 0,
  4768. "ext": "./drpy_js/思古影视[V2].js"
  4769. },
  4770. {
  4771. "key": "hipy_js_小马影视[V2]",
  4772. "name": "🔱小马影视[V2]",
  4773. "type": 3,
  4774. "api": "./drpy_libs/drpy2.min.js",
  4775. "searchable": 1,
  4776. "quickSearch": 1,
  4777. "filterable": 1,
  4778. "order_num": 0,
  4779. "ext": "./drpy_js/小马影视[V2].js"
  4780. },
  4781. {
  4782. "key": "hipy_js_鸭飞影视[V2]",
  4783. "name": "🔱鸭飞影视[V2]",
  4784. "type": 3,
  4785. "api": "./drpy_libs/drpy2.min.js",
  4786. "searchable": 1,
  4787. "quickSearch": 1,
  4788. "filterable": 1,
  4789. "order_num": 0,
  4790. "ext": "./drpy_js/鸭飞影视[V2].js"
  4791. },
  4792. {
  4793. "key": "hipy_js_银河影视[V2]",
  4794. "name": "🔱银河影视[V2]",
  4795. "type": 3,
  4796. "api": "./drpy_libs/drpy2.min.js",
  4797. "searchable": 1,
  4798. "quickSearch": 1,
  4799. "filterable": 1,
  4800. "order_num": 0,
  4801. "ext": "./drpy_js/银河影视[V2].js"
  4802. },
  4803. {
  4804. "key": "hipy_js_影探[V2]",
  4805. "name": "🔱影探[V2]",
  4806. "type": 3,
  4807. "api": "./drpy_libs/drpy2.min.js",
  4808. "searchable": 1,
  4809. "quickSearch": 1,
  4810. "filterable": 1,
  4811. "order_num": 0,
  4812. "ext": "./drpy_js/影探[V2].js"
  4813. },
  4814. {
  4815. "key": "hipy_js_ST4K[V2]",
  4816. "name": "🔱ST4K[V2]",
  4817. "type": 3,
  4818. "api": "./drpy_libs/drpy2.min.js",
  4819. "searchable": 1,
  4820. "quickSearch": 1,
  4821. "filterable": 1,
  4822. "order_num": 0,
  4823. "ext": "./drpy_js/ST4K[V2].js"
  4824. },
  4825. {
  4826. "key": "hipy_js_包子漫画[画]",
  4827. "name": "🖼️包子漫画[画]",
  4828. "type": 3,
  4829. "api": "./drpy_libs/drpy2.min.js",
  4830. "searchable": 1,
  4831. "quickSearch": 1,
  4832. "filterable": 1,
  4833. "order_num": 0,
  4834. "ext": "./drpy_js/包子漫画[画].js"
  4835. },
  4836. {
  4837. "key": "hipy_js_第一韩漫[画]",
  4838. "name": "🖼️第一韩漫[画]",
  4839. "type": 3,
  4840. "api": "./drpy_libs/drpy2.min.js",
  4841. "searchable": 1,
  4842. "quickSearch": 1,
  4843. "filterable": 1,
  4844. "order_num": 0,
  4845. "ext": "./drpy_js/第一韩漫[画].js"
  4846. },
  4847. {
  4848. "key": "hipy_js_古风漫画[画]",
  4849. "name": "🖼️古风漫画[画]",
  4850. "type": 3,
  4851. "api": "./drpy_libs/drpy2.min.js",
  4852. "searchable": 1,
  4853. "quickSearch": 1,
  4854. "filterable": 1,
  4855. "order_num": 0,
  4856. "ext": "./drpy_js/古风漫画[画].js"
  4857. },
  4858. {
  4859. "key": "hipy_js_漫小肆[画]",
  4860. "name": "🖼️漫小肆[画]",
  4861. "type": 3,
  4862. "api": "./drpy_libs/drpy2.min.js",
  4863. "searchable": 1,
  4864. "quickSearch": 1,
  4865. "filterable": 1,
  4866. "order_num": 0,
  4867. "ext": "./drpy_js/漫小肆[画].js"
  4868. },
  4869. {
  4870. "key": "hipy_js_爱迪[自动]",
  4871. "name": "🤖爱迪[自动]",
  4872. "type": 3,
  4873. "api": "./drpy_libs/drpy2.min.js",
  4874. "searchable": 1,
  4875. "quickSearch": 1,
  4876. "filterable": 1,
  4877. "order_num": 0,
  4878. "ext": "./drpy_js/爱迪[自动].js"
  4879. },
  4880. {
  4881. "key": "hipy_js_爱优影视[自动]",
  4882. "name": "🤖爱优影视[自动]",
  4883. "type": 3,
  4884. "api": "./drpy_libs/drpy2.min.js",
  4885. "searchable": 1,
  4886. "quickSearch": 1,
  4887. "filterable": 1,
  4888. "order_num": 0,
  4889. "ext": "./drpy_js/爱优影视[自动].js"
  4890. },
  4891. {
  4892. "key": "hipy_js_臭蛋蛋[自动]",
  4893. "name": "🤖臭蛋蛋[自动]",
  4894. "type": 3,
  4895. "api": "./drpy_libs/drpy2.min.js",
  4896. "searchable": 1,
  4897. "quickSearch": 1,
  4898. "filterable": 1,
  4899. "order_num": 0,
  4900. "ext": "./drpy_js/臭蛋蛋[自动].js"
  4901. },
  4902. {
  4903. "key": "hipy_js_电影天堂[自动]",
  4904. "name": "🤖电影天堂[自动]",
  4905. "type": 3,
  4906. "api": "./drpy_libs/drpy2.min.js",
  4907. "searchable": 1,
  4908. "quickSearch": 1,
  4909. "filterable": 1,
  4910. "order_num": 0,
  4911. "ext": "./drpy_js/电影天堂[自动].js"
  4912. },
  4913. {
  4914. "key": "hipy_js_剧圈圈[自动]",
  4915. "name": "🤖剧圈圈[自动]",
  4916. "type": 3,
  4917. "api": "./drpy_libs/drpy2.min.js",
  4918. "searchable": 1,
  4919. "quickSearch": 1,
  4920. "filterable": 1,
  4921. "order_num": 0,
  4922. "ext": "./drpy_js/剧圈圈[自动].js"
  4923. },
  4924. {
  4925. "key": "hipy_js_来看点播[自动]",
  4926. "name": "🤖来看点播[自动]",
  4927. "type": 3,
  4928. "api": "./drpy_libs/drpy2.min.js",
  4929. "searchable": 1,
  4930. "quickSearch": 1,
  4931. "filterable": 1,
  4932. "order_num": 0,
  4933. "ext": "./drpy_js/来看点播[自动].js"
  4934. },
  4935. {
  4936. "key": "hipy_js_奈飞中文[自动]",
  4937. "name": "🤖奈飞中文[自动]",
  4938. "type": 3,
  4939. "api": "./drpy_libs/drpy2.min.js",
  4940. "searchable": 1,
  4941. "quickSearch": 1,
  4942. "filterable": 1,
  4943. "order_num": 0,
  4944. "ext": "./drpy_js/奈飞中文[自动].js"
  4945. },
  4946. {
  4947. "key": "hipy_js_三集电影[自动]",
  4948. "name": "🤖三集电影[自动]",
  4949. "type": 3,
  4950. "api": "./drpy_libs/drpy2.min.js",
  4951. "searchable": 1,
  4952. "quickSearch": 1,
  4953. "filterable": 1,
  4954. "order_num": 0,
  4955. "ext": "./drpy_js/三集电影[自动].js"
  4956. },
  4957. {
  4958. "key": "hipy_js_神马影院[自动]",
  4959. "name": "🤖神马影院[自动]",
  4960. "type": 3,
  4961. "api": "./drpy_libs/drpy2.min.js",
  4962. "searchable": 1,
  4963. "quickSearch": 1,
  4964. "filterable": 1,
  4965. "order_num": 0,
  4966. "ext": "./drpy_js/神马影院[自动].js"
  4967. },
  4968. {
  4969. "key": "hipy_js_网飞啦[自动]",
  4970. "name": "🤖网飞啦[自动]",
  4971. "type": 3,
  4972. "api": "./drpy_libs/drpy2.min.js",
  4973. "searchable": 1,
  4974. "quickSearch": 1,
  4975. "filterable": 1,
  4976. "order_num": 0,
  4977. "ext": "./drpy_js/网飞啦[自动].js"
  4978. },
  4979. {
  4980. "key": "hipy_js_易点看影院[自动]",
  4981. "name": "🤖易点看影院[自动]",
  4982. "type": 3,
  4983. "api": "./drpy_libs/drpy2.min.js",
  4984. "searchable": 1,
  4985. "quickSearch": 1,
  4986. "filterable": 1,
  4987. "order_num": 0,
  4988. "ext": "./drpy_js/易点看影院[自动].js"
  4989. },
  4990. {
  4991. "key": "hipy_js_宇航影视[自动]",
  4992. "name": "🤖宇航影视[自动]",
  4993. "type": 3,
  4994. "api": "./drpy_libs/drpy2.min.js",
  4995. "searchable": 1,
  4996. "quickSearch": 1,
  4997. "filterable": 1,
  4998. "order_num": 0,
  4999. "ext": "./drpy_js/宇航影视[自动].js"
  5000. },
  5001. {
  5002. "key": "hipy_js_6V新版[磁]",
  5003. "name": "🧲6V新版[磁]",
  5004. "type": 3,
  5005. "api": "./drpy_libs/drpy2.min.js",
  5006. "searchable": 1,
  5007. "quickSearch": 1,
  5008. "filterable": 1,
  5009. "order_num": 0,
  5010. "ext": "./drpy_js/6V新版[磁].js"
  5011. },
  5012. {
  5013. "key": "hipy_js_磁力熊[磁]",
  5014. "name": "🧲磁力熊[磁]",
  5015. "type": 3,
  5016. "api": "./drpy_libs/drpy2.min.js",
  5017. "searchable": 1,
  5018. "quickSearch": 1,
  5019. "filterable": 1,
  5020. "order_num": 0,
  5021. "ext": "./drpy_js/磁力熊[磁].js"
  5022. },
  5023. {
  5024. "key": "hipy_js_29片库[密]",
  5025. "name": "🚫29片库[密]",
  5026. "type": 3,
  5027. "api": "./drpy_libs/drpy2.min.js",
  5028. "searchable": 1,
  5029. "quickSearch": 1,
  5030. "filterable": 1,
  5031. "order_num": 0,
  5032. "ext": "./drpy_js/29片库[密].js"
  5033. },
  5034. {
  5035. "key": "hipy_js_36直播[密]",
  5036. "name": "🚫36直播[密]",
  5037. "type": 3,
  5038. "api": "./drpy_libs/drpy2.min.js",
  5039. "searchable": 1,
  5040. "quickSearch": 1,
  5041. "filterable": 1,
  5042. "order_num": 0,
  5043. "ext": "./drpy_js/36直播[密].js"
  5044. },
  5045. {
  5046. "key": "hipy_js_爱爱影院[密]",
  5047. "name": "🚫爱爱影院[密]",
  5048. "type": 3,
  5049. "api": "./drpy_libs/drpy2.min.js",
  5050. "searchable": 1,
  5051. "quickSearch": 1,
  5052. "filterable": 1,
  5053. "order_num": 0,
  5054. "ext": "./drpy_js/爱爱影院[密].js"
  5055. },
  5056. {
  5057. "key": "hipy_js_采集之王[合]2",
  5058. "name": "🚫采王成人[密]",
  5059. "type": 3,
  5060. "api": "./drpy_libs/drpy2.min.js",
  5061. "searchable": 1,
  5062. "quickSearch": 1,
  5063. "filterable": 1,
  5064. "order_num": 2,
  5065. "ext": "./drpy_js/采集之王[合].js?type=url&params=../json/采集[密]静态.json"
  5066. },
  5067. {
  5068. "key": "hipy_js_采集之王[合]1",
  5069. "name": "🚫采王zy[密]",
  5070. "type": 3,
  5071. "api": "./drpy_libs/drpy2.min.js",
  5072. "searchable": 1,
  5073. "quickSearch": 1,
  5074. "filterable": 1,
  5075. "order_num": 1,
  5076. "ext": "./drpy_js/采集之王[合].js?type=url&params=../json/采集[zy]静态.json$1"
  5077. },
  5078. {
  5079. "key": "hipy_js_草莓秒播[密]",
  5080. "name": "🚫草莓秒播[密]",
  5081. "type": 3,
  5082. "api": "./drpy_libs/drpy2.min.js",
  5083. "searchable": 1,
  5084. "quickSearch": 1,
  5085. "filterable": 1,
  5086. "order_num": 0,
  5087. "ext": "./drpy_js/草莓秒播[密].js"
  5088. },
  5089. {
  5090. "key": "hipy_js_地瓜视频[密]",
  5091. "name": "🚫地瓜视频[密]",
  5092. "type": 3,
  5093. "api": "./drpy_libs/drpy2.min.js",
  5094. "searchable": 1,
  5095. "quickSearch": 1,
  5096. "filterable": 1,
  5097. "order_num": 0,
  5098. "ext": "./drpy_js/地瓜视频[密].js"
  5099. },
  5100. {
  5101. "key": "hipy_js_番号资源[密]",
  5102. "name": "🚫番号资源[密]",
  5103. "type": 3,
  5104. "api": "./drpy_libs/drpy2.min.js",
  5105. "searchable": 1,
  5106. "quickSearch": 1,
  5107. "filterable": 1,
  5108. "order_num": 0,
  5109. "ext": "./drpy_js/番号资源[密].js"
  5110. },
  5111. {
  5112. "key": "hipy_js_飞狗影院[密]",
  5113. "name": "🚫飞狗影院[密]",
  5114. "type": 3,
  5115. "api": "./drpy_libs/drpy2.min.js",
  5116. "searchable": 1,
  5117. "quickSearch": 1,
  5118. "filterable": 1,
  5119. "order_num": 0,
  5120. "ext": "./drpy_js/飞狗影院[密].js"
  5121. },
  5122. {
  5123. "key": "hipy_js_黑料不打烊[密]",
  5124. "name": "🚫黑料不打烊[密]",
  5125. "type": 3,
  5126. "api": "./drpy_libs/drpy2.min.js",
  5127. "searchable": 1,
  5128. "quickSearch": 1,
  5129. "filterable": 1,
  5130. "order_num": 0,
  5131. "ext": "./drpy_js/黑料不打烊[密].js"
  5132. },
  5133. {
  5134. "key": "hipy_js_恒大影视[密]",
  5135. "name": "🚫恒大影视[密]",
  5136. "type": 3,
  5137. "api": "./drpy_libs/drpy2.min.js",
  5138. "searchable": 1,
  5139. "quickSearch": 1,
  5140. "filterable": 1,
  5141. "order_num": 0,
  5142. "ext": "./drpy_js/恒大影视[密].js"
  5143. },
  5144. {
  5145. "key": "hipy_js_九妖仓库[密]",
  5146. "name": "🚫九妖仓库[密]",
  5147. "type": 3,
  5148. "api": "./drpy_libs/drpy2.min.js",
  5149. "searchable": 1,
  5150. "quickSearch": 1,
  5151. "filterable": 1,
  5152. "order_num": 0,
  5153. "ext": "./drpy_js/九妖仓库[密].js"
  5154. },
  5155. {
  5156. "key": "hipy_js_看看视频[密]",
  5157. "name": "🚫看看视频[密]",
  5158. "type": 3,
  5159. "api": "./drpy_libs/drpy2.min.js",
  5160. "searchable": 1,
  5161. "quickSearch": 1,
  5162. "filterable": 1,
  5163. "order_num": 0,
  5164. "ext": "./drpy_js/看看视频[密].js"
  5165. },
  5166. {
  5167. "key": "hipy_js_老司视频[密]",
  5168. "name": "🚫老司视频[密]",
  5169. "type": 3,
  5170. "api": "./drpy_libs/drpy2.min.js",
  5171. "searchable": 1,
  5172. "quickSearch": 1,
  5173. "filterable": 1,
  5174. "order_num": 0,
  5175. "ext": "./drpy_js/老司视频[密].js"
  5176. },
  5177. {
  5178. "key": "hipy_js_乐草TV[密]",
  5179. "name": "🚫乐草TV[密]",
  5180. "type": 3,
  5181. "api": "./drpy_libs/drpy2.min.js",
  5182. "searchable": 1,
  5183. "quickSearch": 1,
  5184. "filterable": 1,
  5185. "order_num": 0,
  5186. "ext": "./drpy_js/乐草TV[密].js"
  5187. },
  5188. {
  5189. "key": "hipy_js_路视频[密]",
  5190. "name": "🚫路视频[密]",
  5191. "type": 3,
  5192. "api": "./drpy_libs/drpy2.min.js",
  5193. "searchable": 1,
  5194. "quickSearch": 1,
  5195. "filterable": 1,
  5196. "order_num": 0,
  5197. "ext": "./drpy_js/路视频[密].js"
  5198. },
  5199. {
  5200. "key": "hipy_js_绿色仓库[密]",
  5201. "name": "🚫绿色仓库[密]",
  5202. "type": 3,
  5203. "api": "./drpy_libs/drpy2.min.js",
  5204. "searchable": 1,
  5205. "quickSearch": 1,
  5206. "filterable": 1,
  5207. "order_num": 0,
  5208. "ext": "./drpy_js/绿色仓库[密].js"
  5209. },
  5210. {
  5211. "key": "hipy_js_千百视频[密]",
  5212. "name": "🚫千百视频[密]",
  5213. "type": 3,
  5214. "api": "./drpy_libs/drpy2.min.js",
  5215. "searchable": 1,
  5216. "quickSearch": 1,
  5217. "filterable": 1,
  5218. "order_num": 0,
  5219. "ext": "./drpy_js/千百视频[密].js"
  5220. },
  5221. {
  5222. "key": "hipy_js_色库[密]",
  5223. "name": "🚫色库[密]",
  5224. "type": 3,
  5225. "api": "./drpy_libs/drpy2.min.js",
  5226. "searchable": 1,
  5227. "quickSearch": 1,
  5228. "filterable": 1,
  5229. "order_num": 0,
  5230. "ext": "./drpy_js/色库[密].js"
  5231. },
  5232. {
  5233. "key": "hipy_js_小女18[密]",
  5234. "name": "🚫小女18[密]",
  5235. "type": 3,
  5236. "api": "./drpy_libs/drpy2.min.js",
  5237. "searchable": 1,
  5238. "quickSearch": 1,
  5239. "filterable": 1,
  5240. "order_num": 0,
  5241. "ext": "./drpy_js/小女18[密].js"
  5242. },
  5243. {
  5244. "key": "hipy_js_一点视频[密]",
  5245. "name": "🚫一点视频[密]",
  5246. "type": 3,
  5247. "api": "./drpy_libs/drpy2.min.js",
  5248. "searchable": 1,
  5249. "quickSearch": 1,
  5250. "filterable": 1,
  5251. "order_num": 0,
  5252. "ext": "./drpy_js/一点视频[密].js"
  5253. },
  5254. {
  5255. "key": "hipy_js_Pornhub[密]",
  5256. "name": "🚫Pornhub[密]",
  5257. "type": 3,
  5258. "api": "./drpy_libs/drpy2.min.js",
  5259. "searchable": 1,
  5260. "quickSearch": 1,
  5261. "filterable": 1,
  5262. "order_num": 0,
  5263. "ext": "./drpy_js/Pornhub[密].js"
  5264. },
  5265. {
  5266. "key": "hipy_js_R18撸[密]",
  5267. "name": "🚫R18撸[密]",
  5268. "type": 3,
  5269. "api": "./drpy_libs/drpy2.min.js",
  5270. "searchable": 1,
  5271. "quickSearch": 1,
  5272. "filterable": 1,
  5273. "order_num": 0,
  5274. "ext": "./drpy_js/R18撸[密].js"
  5275. },
  5276. {
  5277. "key": "hipy_js_UAA[密]",
  5278. "name": "🚫UAA[密]",
  5279. "type": 3,
  5280. "api": "./drpy_libs/drpy2.min.js",
  5281. "searchable": 1,
  5282. "quickSearch": 1,
  5283. "filterable": 1,
  5284. "order_num": 0,
  5285. "ext": "./drpy_js/UAA[密].js"
  5286. },
  5287. {
  5288. "key": "hipy_js_VIDEOCELEBS[密]",
  5289. "name": "🚫VIDEOCELEBS[密]",
  5290. "type": 3,
  5291. "api": "./drpy_libs/drpy2.min.js",
  5292. "searchable": 1,
  5293. "quickSearch": 1,
  5294. "filterable": 1,
  5295. "order_num": 0,
  5296. "ext": "./drpy_js/VIDEOCELEBS[密].js"
  5297. },
  5298. {
  5299. "key": "网盘配置",
  5300. "name": "🇵网盘及彈幕配置",
  5301. "type": 3,
  5302. "api": "csp_Config",
  5303. "searchable": 0,
  5304. "changeable": 0,
  5305. "ext": "./json/tokenm.json",
  5306. "order_num": 9999
  5307. },
  5308. {
  5309. "key": "Local",
  5310. "name": "🇵本地",
  5311. "type": 3,
  5312. "api": "csp_Local",
  5313. "order_num": 9999
  5314. },
  5315. {
  5316. "key": "PushShare",
  5317. "name": "🇵我的资源分享",
  5318. "type": 3,
  5319. "api": "csp_PushShare",
  5320. "searchable": 1,
  5321. "quickSearch": 1,
  5322. "changeable": 1,
  5323. "filterable": 0,
  5324. "timeout": 60,
  5325. "ext": "./json/tokenm.json$$$./json/pushshare.txt$$$db$$$1",
  5326. "style": {
  5327. "type": "list",
  5328. "ratio": 1.1
  5329. },
  5330. "order_num": 9999
  5331. },
  5332. {
  5333. "key": "AliShare",
  5334. "name": "🇵阿里云盘影视分享",
  5335. "type": 3,
  5336. "api": "csp_AliShare",
  5337. "searchable": 1,
  5338. "quickSearch": 1,
  5339. "changeable": 1,
  5340. "filterable": 0,
  5341. "timeout": 60,
  5342. "ext": "./json/tokenm.json$$$./json/alishare.txt$$$db$$$1",
  5343. "style": {
  5344. "type": "list",
  5345. "ratio": 1.1
  5346. },
  5347. "order_num": 9999
  5348. },
  5349. {
  5350. "key": "AliShareEBook",
  5351. "name": "🇵阿里云盘书籍分享",
  5352. "type": 3,
  5353. "api": "csp_AliShare",
  5354. "searchable": 0,
  5355. "quickSearch": 0,
  5356. "changeable": 0,
  5357. "filterable": 0,
  5358. "timeout": 60,
  5359. "ext": "./json/tokenm.json$$$./json/alishare.ebook.txt$$$db$$$1",
  5360. "style": {
  5361. "type": "list",
  5362. "ratio": 1.1
  5363. },
  5364. "order_num": 9999
  5365. },
  5366. {
  5367. "key": "QuarkShare",
  5368. "name": "🇵夸克云盘分享",
  5369. "type": 3,
  5370. "api": "csp_QuarkShare",
  5371. "searchable": 0,
  5372. "quickSearch": 0,
  5373. "changeable": 0,
  5374. "filterable": 0,
  5375. "timeout": 60,
  5376. "ext": "./json/tokenm.json$$$./json/quarkshare.txt",
  5377. "style": {
  5378. "type": "list",
  5379. "ratio": 1.1
  5380. },
  5381. "order_num": 9999
  5382. },
  5383. {
  5384. "key": "ThunderShare",
  5385. "name": "🇵迅雷云盘分享",
  5386. "type": 3,
  5387. "api": "csp_ThunderShare",
  5388. "searchable": 0,
  5389. "quickSearch": 0,
  5390. "changeable": 0,
  5391. "filterable": 0,
  5392. "timeout": 60,
  5393. "ext": "./json/tokenm.json$$$./json/thundershare.txt",
  5394. "style": {
  5395. "type": "list",
  5396. "ratio": 1.1
  5397. },
  5398. "order_num": 9999
  5399. },
  5400. {
  5401. "key": "PikPakShare",
  5402. "name": "🇵PikPak分享",
  5403. "type": 3,
  5404. "api": "csp_PikPakShare",
  5405. "searchable": 1,
  5406. "quickSearch": 1,
  5407. "changeable": 1,
  5408. "filterable": 0,
  5409. "timeout": 60,
  5410. "ext": "./json/tokenm.json$$$./json/pikpakclass.json$$$./json/pikpakclass.json.db.gz",
  5411. "style": {
  5412. "type": "list",
  5413. "ratio": 1.1
  5414. },
  5415. "order_num": 9999
  5416. },
  5417. {
  5418. "key": "SambaShare",
  5419. "name": "🇵Samba分享",
  5420. "type": 3,
  5421. "api": "csp_SambaShare",
  5422. "searchable": 0,
  5423. "quickSearch": 0,
  5424. "changeable": 0,
  5425. "filterable": 0,
  5426. "timeout": 60,
  5427. "ext": "./json/tokenm.json$$$./json/sambashare.txt",
  5428. "order_num": 9999
  5429. },
  5430. {
  5431. "key": "Wogg",
  5432. "name": "🇵玩偶哥哥|网盘",
  5433. "type": 3,
  5434. "api": "csp_Wogg",
  5435. "quickSearch": 1,
  5436. "changeable": 1,
  5437. "filterable": 1,
  5438. "timeout": 60,
  5439. "ext": "./json/tokenm.json$$$https://wogg.link/$$$proxy$$$1$$$./json/wogg.json",
  5440. "order_num": 9999
  5441. },
  5442. {
  5443. "key": "Wo4k",
  5444. "name": "🇵玩偶4K|磁力",
  5445. "type": 3,
  5446. "api": "csp_Wo4k",
  5447. "quickSearch": 1,
  5448. "changeable": 1,
  5449. "filterable": 1,
  5450. "timeout": 60,
  5451. "ext": "./json/tokenm.json$$$https://www.wo4k.net/$$$proxy$$$1$$$./json/wogg.json",
  5452. "order_num": 9999
  5453. },
  5454. {
  5455. "key": "Wobg",
  5456. "name": "🇵玩偶表哥|网盘",
  5457. "type": 3,
  5458. "api": "csp_Wobg",
  5459. "quickSearch": 1,
  5460. "changeable": 1,
  5461. "filterable": 1,
  5462. "timeout": 60,
  5463. "ext": "./json/tokenm.json$$$https://wobge.run.goorm.io$$$proxy$$$1$$$./json/wogg.json",
  5464. "order_num": 9999
  5465. },
  5466. {
  5467. "key": "yydsys",
  5468. "name": "🇵玩你老哥|网盘",
  5469. "type": 3,
  5470. "api": "csp_Wobg",
  5471. "quickSearch": 1,
  5472. "changeable": 1,
  5473. "filterable": 1,
  5474. "timeout": 60,
  5475. "ext": "./json/tokenm.json$$$https://tv.yydsys.top/$$$proxy$$$1$$$./json/wogg.json",
  5476. "order_num": 9999
  5477. },
  5478. {
  5479. "key": "Xinshijue",
  5480. "name": "🇵新视觉|网盘",
  5481. "type": 3,
  5482. "api": "csp_Xinshijue",
  5483. "quickSearch": 1,
  5484. "changeable": 1,
  5485. "filterable": 1,
  5486. "timeout": 60,
  5487. "ext": "./json/tokenm.json$$$https://www.80yy3.com/$$$proxy$$$1$$$./json/wogg.json",
  5488. "order_num": 9999
  5489. },
  5490. {
  5491. "key": "Moli",
  5492. "name": "🇵HDmoli|网盘",
  5493. "type": 3,
  5494. "api": "csp_Moli",
  5495. "quickSearch": 1,
  5496. "changeable": 1,
  5497. "filterable": 1,
  5498. "timeout": 60,
  5499. "ext": "./json/tokenm.json$$$https://www.hdmoli.pro/$$$proxy$$$1$$$./json/moli.json",
  5500. "order_num": 9999
  5501. },
  5502. {
  5503. "key": "Hdhive",
  5504. "name": "🇵影巢|网盘",
  5505. "type": 3,
  5506. "api": "csp_Hdhive",
  5507. "quickSearch": 1,
  5508. "changeable": 1,
  5509. "filterable": 1,
  5510. "timeout": 60,
  5511. "ext": "./json/tokenm.json$$$proxy$$$1",
  5512. "order_num": 9999
  5513. },
  5514. {
  5515. "key": "Ppxzy",
  5516. "name": "🇵皮皮虾|网盘",
  5517. "type": 3,
  5518. "api": "csp_Ppxzy",
  5519. "quickSearch": 1,
  5520. "changeable": 1,
  5521. "filterable": 1,
  5522. "timeout": 60,
  5523. "ext": "./json/tokenm.json$$$https://ppxzy.ink$$$proxy$$$1",
  5524. "order_num": 9999
  5525. },
  5526. {
  5527. "key": "校长影视",
  5528. "name": "🇵校长影视|网盘",
  5529. "type": 3,
  5530. "api": "csp_XiaoZhang",
  5531. "quickSearch": 1,
  5532. "changeable": 1,
  5533. "filterable": 1,
  5534. "timeout": 60,
  5535. "ext": "./json/tokenm.json$$$https://xzyshd.com$$$proxy$$$1",
  5536. "order_num": 9999
  5537. },
  5538. {
  5539. "key": "Bdys_spider",
  5540. "name": "🇵哔滴┃磁力",
  5541. "api": "csp_Bdys01",
  5542. "type": 3,
  5543. "filterable": 1,
  5544. "searchable": 1,
  5545. "quickSearch": 1,
  5546. "ext": "https://www.yjys.me/$$$None$$$1",
  5547. "order_num": 9999
  5548. },
  5549. {
  5550. "key": "YunPan",
  5551. "name": "🇵云盘资源|网盘",
  5552. "type": 3,
  5553. "api": "csp_YunPan",
  5554. "timeout": 60,
  5555. "ext": "./json/tokenm.json$$$None$$$proxy$$$1",
  5556. "order_num": 9999
  5557. },
  5558. {
  5559. "key": "YingSo",
  5560. "name": "🇵影搜|网盘搜索",
  5561. "type": 3,
  5562. "api": "csp_YingSo",
  5563. "timeout": 60,
  5564. "ext": "./json/tokenm.json",
  5565. "order_num": 9999
  5566. },
  5567. {
  5568. "key": "混合盘",
  5569. "name": "🇵混合盘|网盘搜索",
  5570. "type": 3,
  5571. "api": "csp_HunHePan",
  5572. "timeout": 60,
  5573. "ext": "./json/tokenm.json",
  5574. "style": {
  5575. "type": "list",
  5576. "ratio": 1.1
  5577. },
  5578. "order_num": 9999
  5579. },
  5580. {
  5581. "key": "88Pan",
  5582. "name": "🇵88网盘|网盘搜索",
  5583. "type": 3,
  5584. "api": "csp_EightEight",
  5585. "timeout": 60,
  5586. "ext": "./json/tokenm.json$$$https://662688.xyz$$$",
  5587. "style": {
  5588. "type": "list",
  5589. "ratio": 1.1
  5590. },
  5591. "order_num": 9999
  5592. },
  5593. {
  5594. "key": "PanSearch",
  5595. "name": "🇵PanSearch|网盘搜索",
  5596. "type": 3,
  5597. "api": "csp_PanSearch",
  5598. "quickSearch": 1,
  5599. "changeable": 1,
  5600. "filterable": 1,
  5601. "timeout": 60,
  5602. "ext": "./json/tokenm.json",
  5603. "order_num": 9999
  5604. },
  5605. {
  5606. "key": "盘友圈",
  5607. "name": "🇵盘友圈|网盘搜索",
  5608. "type": 3,
  5609. "api": "csp_Panyq",
  5610. "timeout": 60,
  5611. "ext": "./json/tokenm.json$$$site$$$proxy",
  5612. "order_num": 9999
  5613. },
  5614. {
  5615. "key": "秒搜",
  5616. "name": "🇵秒搜|网盘搜索",
  5617. "type": 3,
  5618. "api": "csp_MiaoSou",
  5619. "timeout": 60,
  5620. "ext": "./json/tokenm.json",
  5621. "style": {
  5622. "type": "list",
  5623. "ratio": 1.1
  5624. },
  5625. "order_num": 9999
  5626. },
  5627. {
  5628. "key": "Funletu",
  5629. "name": "🇵趣盘搜|夸克搜索",
  5630. "type": 3,
  5631. "api": "csp_Funletu",
  5632. "quickSearch": 1,
  5633. "changeable": 1,
  5634. "filterable": 1,
  5635. "timeout": 60,
  5636. "ext": "./json/tokenm.json",
  5637. "style": {
  5638. "type": "list",
  5639. "ratio": 1.1
  5640. },
  5641. "order_num": 9999
  5642. },
  5643. {
  5644. "key": "QuarkPanso",
  5645. "name": "🇵夸克盘搜|夸克搜索",
  5646. "type": 3,
  5647. "api": "csp_QuarkPanso",
  5648. "quickSearch": 1,
  5649. "changeable": 1,
  5650. "filterable": 1,
  5651. "timeout": 60,
  5652. "ext": "./json/tokenm.json",
  5653. "style": {
  5654. "type": "list",
  5655. "ratio": 1.1
  5656. },
  5657. "order_num": 9999
  5658. },
  5659. {
  5660. "key": "DaPanSo",
  5661. "name": "🇵大盘搜|网盘搜索",
  5662. "type": 3,
  5663. "api": "csp_DaPanSo",
  5664. "quickSearch": 1,
  5665. "changeable": 1,
  5666. "filterable": 1,
  5667. "timeout": 60,
  5668. "ext": "./json/tokenm.json$$$https://dapanso.com$$$proxy$$$1",
  5669. "order_num": 9999
  5670. },
  5671. {
  5672. "key": "PikaSo",
  5673. "name": "🇵皮卡搜|网盘搜索",
  5674. "type": 3,
  5675. "api": "csp_PikaSo",
  5676. "quickSearch": 1,
  5677. "changeable": 1,
  5678. "filterable": 1,
  5679. "timeout": 60,
  5680. "ext": "./json/tokenm.json$$$https://www.pikaso.top/$$$None",
  5681. "style": {
  5682. "type": "list",
  5683. "ratio": 1.1
  5684. },
  5685. "order_num": 9999
  5686. },
  5687. {
  5688. "key": "Qianfan",
  5689. "name": "🇵千帆|网盘搜索",
  5690. "type": 3,
  5691. "api": "csp_Qianfan",
  5692. "quickSearch": 1,
  5693. "changeable": 1,
  5694. "filterable": 1,
  5695. "timeout": 60,
  5696. "ext": "./json/tokenm.json$$$https://pan.qianfan.app$$$None$$$./json/qianfan.txt$$$1",
  5697. "order_num": 9999
  5698. },
  5699. {
  5700. "key": "YunSo",
  5701. "name": "🇵小云搜索|网盘搜索",
  5702. "type": 3,
  5703. "api": "csp_YunSo",
  5704. "quickSearch": 1,
  5705. "changeable": 1,
  5706. "filterable": 1,
  5707. "timeout": 60,
  5708. "ext": "./json/tokenm.json$$$https://www.yunso.net$$$None$$$1",
  5709. "style": {
  5710. "type": "list",
  5711. "ratio": 1.1
  5712. },
  5713. "order_num": 9999
  5714. },
  5715. {
  5716. "key": "YunPanOne",
  5717. "name": "🇵云盘One|网盘搜索",
  5718. "type": 3,
  5719. "api": "csp_YunPanOne",
  5720. "quickSearch": 1,
  5721. "changeable": 1,
  5722. "filterable": 1,
  5723. "timeout": 60,
  5724. "ext": "./json/tokenm.json$$$None$$$proxy$$$1",
  5725. "order_num": 9999
  5726. },
  5727. {
  5728. "key": "酷狗",
  5729. "name": "🇵酷狗",
  5730. "type": 3,
  5731. "api": "csp_Kugou",
  5732. "searchable": 1,
  5733. "changeable": 0,
  5734. "order_num": 9999
  5735. },
  5736. {
  5737. "key": "Iktv",
  5738. "name": "🇵KTV",
  5739. "type": 3,
  5740. "api": "csp_Iktv",
  5741. "searchable": 1,
  5742. "changeable": 0,
  5743. "order_num": 9999
  5744. },
  5745. {
  5746. "key": "Yinyuetai",
  5747. "name": "🇵音悦台",
  5748. "type": 3,
  5749. "api": "csp_Yinyuetai",
  5750. "searchable": 1,
  5751. "changeable": 0,
  5752. "order_num": 9999
  5753. },
  5754. {
  5755. "key": "push_agent",
  5756. "name": "🇵推送",
  5757. "type": 3,
  5758. "api": "csp_Push",
  5759. "changeable": 0,
  5760. "timeout": 30,
  5761. "ext": "./json/tokenm.json",
  5762. "order_num": 9999
  5763. },
  5764. {
  5765. "key": "應用商店",
  5766. "name": "🇵應用商店",
  5767. "type": 3,
  5768. "api": "csp_Market",
  5769. "searchable": 0,
  5770. "changeable": 0,
  5771. "ext": "https://fm.t4tv.hz.cz/json/market.json",
  5772. "order_num": 9999
  5773. }
  5774. ],
  5775. "parses": [
  5776. {
  5777. "name": "777",
  5778. "url": "https://jx.777jiexi.com/player/?url=",
  5779. "type": 0,
  5780. "ext": {
  5781. "flag": [
  5782. "qiyi",
  5783. "imgo",
  5784. "爱奇艺",
  5785. "奇艺",
  5786. "qq",
  5787. "qq 预告及花絮",
  5788. "腾讯",
  5789. "youku",
  5790. "优酷",
  5791. "pptv",
  5792. "PPTV",
  5793. "letv",
  5794. "乐视",
  5795. "leshi",
  5796. "mgtv",
  5797. "芒果",
  5798. "sohu",
  5799. "xigua",
  5800. "fun",
  5801. "风行"
  5802. ]
  5803. },
  5804. "header": {
  5805. "User-Agent": "Mozilla/5.0"
  5806. }
  5807. },
  5808. {
  5809. "name": "8090g",
  5810. "url": "https://www.8090g.cn/jiexi/?url=",
  5811. "type": 0,
  5812. "ext": {
  5813. "flag": [
  5814. "qiyi",
  5815. "imgo",
  5816. "爱奇艺",
  5817. "奇艺",
  5818. "qq",
  5819. "qq 预告及花絮",
  5820. "腾讯",
  5821. "youku",
  5822. "优酷",
  5823. "pptv",
  5824. "PPTV",
  5825. "letv",
  5826. "乐视",
  5827. "leshi",
  5828. "mgtv",
  5829. "芒果",
  5830. "sohu",
  5831. "xigua",
  5832. "fun",
  5833. "风行"
  5834. ]
  5835. },
  5836. "header": {
  5837. "User-Agent": "Mozilla/5.0"
  5838. }
  5839. },
  5840. {
  5841. "name": "ik9",
  5842. "url": "https://yparse.ik9.cc/index.php?url=",
  5843. "type": 0,
  5844. "ext": {
  5845. "flag": [
  5846. "qiyi",
  5847. "imgo",
  5848. "爱奇艺",
  5849. "奇艺",
  5850. "qq",
  5851. "qq 预告及花絮",
  5852. "腾讯",
  5853. "youku",
  5854. "优酷",
  5855. "pptv",
  5856. "PPTV",
  5857. "letv",
  5858. "乐视",
  5859. "leshi",
  5860. "mgtv",
  5861. "芒果",
  5862. "sohu",
  5863. "xigua",
  5864. "fun",
  5865. "风行"
  5866. ]
  5867. },
  5868. "header": {
  5869. "User-Agent": "Mozilla/5.0"
  5870. }
  5871. },
  5872. {
  5873. "name": "杰森",
  5874. "url": "https://jx.jsonplayer.com/player/?url=",
  5875. "type": 0,
  5876. "ext": {
  5877. "flag": [
  5878. "qiyi",
  5879. "imgo",
  5880. "爱奇艺",
  5881. "奇艺",
  5882. "qq",
  5883. "qq 预告及花絮",
  5884. "腾讯",
  5885. "youku",
  5886. "优酷",
  5887. "pptv",
  5888. "PPTV",
  5889. "letv",
  5890. "乐视",
  5891. "leshi",
  5892. "mgtv",
  5893. "芒果",
  5894. "sohu",
  5895. "xigua",
  5896. "fun",
  5897. "风行"
  5898. ]
  5899. },
  5900. "header": {
  5901. "User-Agent": "Mozilla/5.0"
  5902. }
  5903. },
  5904. {
  5905. "name": "阳途",
  5906. "url": "https://jx.yangtu.top/?url=",
  5907. "type": 0,
  5908. "ext": {
  5909. "flag": [
  5910. "qiyi",
  5911. "imgo",
  5912. "爱奇艺",
  5913. "奇艺",
  5914. "qq",
  5915. "qq 预告及花絮",
  5916. "腾讯",
  5917. "youku",
  5918. "优酷",
  5919. "pptv",
  5920. "PPTV",
  5921. "letv",
  5922. "乐视",
  5923. "leshi",
  5924. "mgtv",
  5925. "芒果",
  5926. "sohu",
  5927. "xigua",
  5928. "fun",
  5929. "风行"
  5930. ]
  5931. },
  5932. "header": {
  5933. "User-Agent": "Mozilla/5.0"
  5934. }
  5935. },
  5936. {
  5937. "name": "冰豆",
  5938. "url": "https://bd.jx.cn/?url=",
  5939. "type": 0,
  5940. "ext": {
  5941. "flag": [
  5942. "qiyi",
  5943. "imgo",
  5944. "爱奇艺",
  5945. "奇艺",
  5946. "qq",
  5947. "qq 预告及花絮",
  5948. "腾讯",
  5949. "youku",
  5950. "优酷",
  5951. "pptv",
  5952. "PPTV",
  5953. "letv",
  5954. "乐视",
  5955. "leshi",
  5956. "mgtv",
  5957. "芒果",
  5958. "sohu",
  5959. "xigua",
  5960. "fun",
  5961. "风行"
  5962. ]
  5963. },
  5964. "header": {
  5965. "User-Agent": "Mozilla/5.0"
  5966. }
  5967. },
  5968. {
  5969. "name": "m3u8TV",
  5970. "url": "https://jx.m3u8.tv/jiexi/?url=",
  5971. "type": 0,
  5972. "ext": {
  5973. "flag": [
  5974. "qiyi",
  5975. "imgo",
  5976. "爱奇艺",
  5977. "奇艺",
  5978. "qq",
  5979. "qq 预告及花絮",
  5980. "腾讯",
  5981. "youku",
  5982. "优酷",
  5983. "pptv",
  5984. "PPTV",
  5985. "letv",
  5986. "乐视",
  5987. "leshi",
  5988. "mgtv",
  5989. "芒果",
  5990. "sohu",
  5991. "xigua",
  5992. "fun",
  5993. "风行"
  5994. ]
  5995. },
  5996. "header": {
  5997. "User-Agent": "Mozilla/5.0"
  5998. }
  5999. },
  6000. {
  6001. "name": "听乐",
  6002. "url": "https://jx.dj6u.com/?url=",
  6003. "type": 0,
  6004. "ext": {
  6005. "flag": [
  6006. "qiyi",
  6007. "imgo",
  6008. "爱奇艺",
  6009. "奇艺",
  6010. "qq",
  6011. "qq 预告及花絮",
  6012. "腾讯",
  6013. "youku",
  6014. "优酷",
  6015. "pptv",
  6016. "PPTV",
  6017. "letv",
  6018. "乐视",
  6019. "leshi",
  6020. "mgtv",
  6021. "芒果",
  6022. "sohu",
  6023. "xigua",
  6024. "fun",
  6025. "风行"
  6026. ]
  6027. },
  6028. "header": {
  6029. "User-Agent": "Mozilla/5.0"
  6030. }
  6031. },
  6032. {
  6033. "name": "虾米",
  6034. "url": "https://jx.xmflv.com/?url=",
  6035. "type": 0,
  6036. "ext": {
  6037. "flag": [
  6038. "qiyi",
  6039. "imgo",
  6040. "爱奇艺",
  6041. "奇艺",
  6042. "qq",
  6043. "qq 预告及花絮",
  6044. "腾讯",
  6045. "youku",
  6046. "优酷",
  6047. "pptv",
  6048. "PPTV",
  6049. "letv",
  6050. "乐视",
  6051. "leshi",
  6052. "mgtv",
  6053. "芒果",
  6054. "sohu",
  6055. "xigua",
  6056. "fun",
  6057. "风行"
  6058. ]
  6059. },
  6060. "header": {
  6061. "User-Agent": "Mozilla/5.0"
  6062. }
  6063. },
  6064. {
  6065. "name": "虾米2",
  6066. "url": "https://jx.xmflv.cc/?url=",
  6067. "type": 0,
  6068. "ext": {
  6069. "flag": [
  6070. "qiyi",
  6071. "imgo",
  6072. "爱奇艺",
  6073. "奇艺",
  6074. "qq",
  6075. "qq 预告及花絮",
  6076. "腾讯",
  6077. "youku",
  6078. "优酷",
  6079. "pptv",
  6080. "PPTV",
  6081. "letv",
  6082. "乐视",
  6083. "leshi",
  6084. "mgtv",
  6085. "芒果",
  6086. "sohu",
  6087. "xigua",
  6088. "fun",
  6089. "风行"
  6090. ]
  6091. },
  6092. "header": {
  6093. "User-Agent": "Mozilla/5.0"
  6094. }
  6095. },
  6096. {
  6097. "name": "云析",
  6098. "url": "https://jx.yparse.com/index.php?url=",
  6099. "type": 0,
  6100. "ext": {
  6101. "flag": [
  6102. "qiyi",
  6103. "imgo",
  6104. "爱奇艺",
  6105. "奇艺",
  6106. "qq",
  6107. "qq 预告及花絮",
  6108. "腾讯",
  6109. "youku",
  6110. "优酷",
  6111. "pptv",
  6112. "PPTV",
  6113. "letv",
  6114. "乐视",
  6115. "leshi",
  6116. "mgtv",
  6117. "芒果",
  6118. "sohu",
  6119. "xigua",
  6120. "fun",
  6121. "风行"
  6122. ]
  6123. },
  6124. "header": {
  6125. "User-Agent": "Mozilla/5.0"
  6126. }
  6127. },
  6128. {
  6129. "name": "红狐",
  6130. "url": "https://player.mrgaocloud.com/player/?url=",
  6131. "type": 0,
  6132. "ext": {
  6133. "flag": [
  6134. "qiyi",
  6135. "imgo",
  6136. "爱奇艺",
  6137. "奇艺",
  6138. "qq",
  6139. "qq 预告及花絮",
  6140. "腾讯",
  6141. "youku",
  6142. "优酷",
  6143. "pptv",
  6144. "PPTV",
  6145. "letv",
  6146. "乐视",
  6147. "leshi",
  6148. "mgtv",
  6149. "芒果",
  6150. "sohu",
  6151. "xigua",
  6152. "fun",
  6153. "风行"
  6154. ]
  6155. },
  6156. "header": {
  6157. "User-Agent": "Mozilla/5.0"
  6158. }
  6159. }
  6160. ],
  6161. "flags": [
  6162. "imgo",
  6163. "youku",
  6164. "qq",
  6165. "qq 预告及花絮",
  6166. "iqiyi",
  6167. "qiyi",
  6168. "fun",
  6169. "letv",
  6170. "leshi",
  6171. "sohu",
  6172. "tudou",
  6173. "xigua",
  6174. "cntv",
  6175. "1905",
  6176. "pptv",
  6177. "mgtv",
  6178. "wasu",
  6179. "bilibili",
  6180. "renrenmi"
  6181. ],
  6182. "lives": [
  6183. {
  6184. "name": "范明明V6",
  6185. "type": 0,
  6186. "url": "https://live.fanmingming.com/tv/m3u/ipv6.m3u",
  6187. "playerType": 1,
  6188. "ua": "okhttp/3.15",
  6189. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  6190. "logo": "https://epg.112114.xyz/logo/{name}.png"
  6191. },
  6192. {
  6193. "name": "十四里",
  6194. "type": 0,
  6195. "url": "https://raw.cachefly.998111.xyz/ssili126/tv/main/itvlist.txt",
  6196. "playerType": 1,
  6197. "ua": "okhttp/3.15",
  6198. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  6199. "logo": "https://epg.112114.xyz/logo/{name}.png"
  6200. },
  6201. {
  6202. "name": "华数2",
  6203. "type": 0,
  6204. "url": "file:///storage/emulated/0/easybox/drpy_dzlive/lives/华数2.m3u",
  6205. "playerType": 1,
  6206. "ua": "okhttp/3.15",
  6207. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  6208. "logo": "https://epg.112114.xyz/logo/{name}.png"
  6209. },
  6210. {
  6211. "name": "杭州华数",
  6212. "type": 0,
  6213. "url": "file:///storage/emulated/0/easybox/drpy_dzlive/lives/杭州华数.m3u",
  6214. "playerType": 1,
  6215. "ua": "okhttp/3.15",
  6216. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  6217. "logo": "https://epg.112114.xyz/logo/{name}.png"
  6218. },
  6219. {
  6220. "name": "摸鱼",
  6221. "type": 0,
  6222. "url": "http://我不是.摸鱼儿.top/live.php",
  6223. "playerType": 1,
  6224. "ua": "okhttp/3.15",
  6225. "epg": "http://epg.112114.xyz/?ch={name}&date={date}",
  6226. "logo": "https://epg.112114.xyz/logo/{name}.png"
  6227. }
  6228. ]
  6229. }