01.json 398 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253
  1. {
  2. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/pg.jar;md5;89086276298170179836ca925049e8df",
  3. "logo": "https://p3-pc.douyinpic.com/img/aweme-avatar/tos-cn-i-0813_6e2553f5708c414386eeca88b5f2674a~c5_300x300.jpeg?from=2956013662",
  4. "wallpaper": "https://tv.nxog.top/m//t/",
  5. "sites": [
  6. {
  7. "key": "豆瓣",
  8. "name": "🇹🇼【老王點播專區】🇹🇼",
  9. "type": 3,
  10. "api": "csp_Douban",
  11. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/douban.json",
  12. "searchable": 1,
  13. "quickSearch": 0,
  14. "changeable": 1
  15. },
  16. {
  17. "key": "网盘配置",
  18. "name": "Youtube、网盘、弹幕配置",
  19. "type": 3,
  20. "api": "csp_Config",
  21. "searchable": 1,
  22. "changeable": 0,
  23. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/tokenm.json",
  24. "style": {"type": "rect", "ratio": 1.5}
  25. },
  26. {
  27. "key": "Youtube",
  28. "name": "Youtube",
  29. "type": 3,
  30. "api": "csp_Youtube",
  31. "searchable": 1,
  32. "quickSearch": 0,
  33. "changeable": 0,
  34. "timeout": 240,
  35. "ext": {
  36. "token": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/tokenm.json",
  37. "json": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/youtube.json",
  38. "type": "直播#新闻#剧集#电影#综艺#纪录片#音乐#体育#动物#风光#放松#4K#HDR#movie#music#documentary#bbc documentary#national geographic documentary",
  39. "keywords": "排行榜,HOT,TRENDS,热门话题,热门趋势,热门综艺,热门电影,热门电视剧,小姐姐",
  40. "codecs": "",
  41. "proxy": ""
  42. },
  43. "style": {"type": "rect", "ratio": 1.77}
  44. },
  45. //優選源_分類專區
  46. {
  47. "key": "py_jieyingshi",
  48. "name": "⏭|界影视(沐辰)|PYTHON",
  49. "type": 3,
  50. "api": "https://json.doube.eu.org/python/py_jieyingshi.py",
  51. "searchable": 1,
  52. "quickSearch": 0,
  53. "filterable": 0,
  54. "changeable": 1
  55. },
  56. {
  57. "key": "py_jinpai",
  58. "name": "⏭|金牌影院(沐辰)|PYTHON",
  59. "type": 3,
  60. "api": "https://json.doube.eu.org/python/py_jinpai.py",
  61. "searchable": 1,
  62. "quickSearch": 0,
  63. "filterable": 0,
  64. "changeable": 1
  65. },
  66. {
  67. "key": "py_quickvod",
  68. "name": "⏭|QuickVod(沐辰)|PYTHON",
  69. "type": 3,
  70. "api": "https://json.doube.eu.org/python/py_quickvod.py",
  71. "searchable": 1,
  72. "quickSearch": 0,
  73. "filterable": 0,
  74. "changeable": 1
  75. },
  76. {
  77. "key": "yfsp",
  78. "name": "⏭|愛壹帆|雷蒙",
  79. "type": 3,
  80. "searchable": 1,
  81. "changeable": 1,
  82. "quickSearch":1,
  83. "style": {
  84. "type": "rect",
  85. "ratio": 0.75
  86. },
  87. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/gm.jar;md5;3e59c9c3c50ea1d4609cec9dbee730c3;md5;3e59c9c3c50ea1d4609cec9dbee730c3",
  88. "api": "csp_GM",
  89. "ext": {
  90. "userScript": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/ysfp.user.js",
  91. "debug": false,
  92. "webViewSettings": {
  93. "blockNetworkImage": true,
  94. "blockList": [
  95. "*.png*",
  96. "*.mp3*",
  97. "*.css*",
  98. "https://*.googletagmanager.com/*",
  99. "https://*.google-analytics.com/*"
  100. ]
  101. },
  102. "spider": {
  103. "homeContent": {
  104. "loadUrl": "https://m.yfsp.tv/"
  105. },
  106. "categoryContent": {
  107. "loadUrl": "https://m.yfsp.tv/list/${tid}?type=${index-0:-0}${index-1:-,0}${index-2:-,0}${index-3:-,0}${index-4:-,0}${index-5:-}"
  108. },
  109. "detailContent": {
  110. "loadUrl": "https://m.yfsp.tv/play/${id}"
  111. },
  112. "playerContent": {
  113. "loadUrl": "https://m.yfsp.tv/play/${mediaKey}?id=${episodeKey}"
  114. },
  115. "searchContent": {
  116. "loadUrl": "https://m.yfsp.tv/search"
  117. }
  118. }
  119. }
  120. },
  121. {
  122. "key": "csp_GM_Hi视频",
  123. "name": "⏭|Hi视频|雷蒙",
  124. "type": 3,
  125. "searchable": 1,
  126. "changeable": 1,
  127. "quickSearch": 0,
  128. "style": {
  129. "type": "rect",
  130. "ratio": 0.71
  131. },
  132. "api": "csp_GM",
  133. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/gm.jar;md5;3e59c9c3c50ea1d4609cec9dbee730c3;md5;3e59c9c3c50ea1d4609cec9dbee730c3",
  134. "ext": {
  135. "userScript": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/new_json/JS/hitv.user.js",
  136. "debug": false,
  137. "webViewSettings": {
  138. "blockNetworkImage": true,
  139. "blockList": [
  140. "https://*.google-analytics.com/*"
  141. ]
  142. },
  143. "spider": {
  144. "homeContent": {
  145. "loadUrl": "https://www.upfuhn.com/column/0.html"
  146. },
  147. "categoryContent": {
  148. "loadUrl": "https://www.upfuhn.com/column/${tid}.html"
  149. },
  150. "detailContent": {
  151. "loadUrl": "https://www.upfuhn.com/play/${id}-1-0.html"
  152. },
  153. "searchContent": {
  154. "loadUrl": "https://www.upfuhn.com/search/${key}.html"
  155. }
  156. }
  157. }
  158. },
  159. {
  160. "key": "csp_GM_注视影视",
  161. "name": "⏭|注视影视|雷蒙",
  162. "type": 3,
  163. "searchable": 1,
  164. "changeable": 1,
  165. "quickSearch": 0,
  166. "style": {
  167. "type": "rect",
  168. "ratio": 0.66
  169. },
  170. "api": "csp_GM",
  171. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/gm.jar;md5;3e59c9c3c50ea1d4609cec9dbee730c3",
  172. "ext": {
  173. "userScript": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/new_json/JS/gaze.user.js",
  174. "debug": false,
  175. "webViewSettings": {
  176. "blockNetworkImage": true,
  177. "blockList": [
  178. "https://*.bytecdntp.com/cdn/expire-1-M/font-awesome/*",
  179. "https://*.clarity.ms/*",
  180. "https://gaze.run/visitorslog.php*",
  181. "*.css*"
  182. ]
  183. },
  184. "playUrlMatch": [
  185. "https://dl-b.cloud.189.cn/corp/downloadFile.action?*",
  186. "https://gaze.run/gaze_filey/pb/*.m3u8",
  187. "https://*/obj/tos*"
  188. ],
  189. "spider": {
  190. "homeContent": {
  191. "loadUrl": "https://gaze.run/filter"
  192. },
  193. "categoryContent": {
  194. "loadUrl": "https://gaze.run/filter"
  195. },
  196. "detailContent": {
  197. "loadUrl": "https://gaze.run/play/${id}"
  198. },
  199. "playerContent": {
  200. "loadUrl": "https://gaze.run/play/${mcid}#${path}"
  201. },
  202. "searchContent": {
  203. "loadUrl": "https://gaze.run/filter"
  204. }
  205. }
  206. }
  207. },
  208. {
  209. "key": "hitv",
  210. "name": "⏭|Hi影院",
  211. "type": 3,
  212. "searchable": 1,
  213. "changeable": 1,
  214. "quickSearch":1,
  215. "style": {
  216. "type": "rect",
  217. "ratio": 0.71
  218. },
  219. "api": "csp_GM",
  220. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/gm.jar;md5;3e59c9c3c50ea1d4609cec9dbee730c3;md5;3e59c9c3c50ea1d4609cec9dbee730c3",
  221. "ext": {
  222. "userScript": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/hitv.user.js",
  223. "debug": false,
  224. "webViewSettings": {
  225. "blockNetworkImage": true,
  226. "blockList": [
  227. "https://*.google-analytics.com/*"
  228. ]
  229. },
  230. "spider": {
  231. "homeContent": {
  232. "loadUrl": "https://www.upfuhn.com/column/0.html"
  233. },
  234. "categoryContent": {
  235. "loadUrl": "https://www.upfuhn.com/column/${tid}.html"
  236. },
  237. "detailContent": {
  238. "loadUrl": "https://www.upfuhn.com/play/${id}.html"
  239. },
  240. "searchContent": {
  241. "loadUrl": "https://www.upfuhn.com/search/${key}.html"
  242. }
  243. }
  244. }
  245. },
  246. {
  247. "key": "Net_emby",
  248. "name": "⏭|Net_Emby|PYTHON",
  249. "type": 3,
  250. "api":"https://ghp.ci/https://raw.githubusercontent.com/boly4189/tv1/refs/heads/master/py/py_emby.py",
  251. "searchable": 1,
  252. "quickSearch": 1,
  253. "filterable": 1,
  254. "ext":
  255. {
  256. "server": "http://net.creativeinfo.org:8096",
  257. "username":"ntest",
  258. "password":"ntest123",
  259. "thread": 0,
  260. "proxy":""
  261. },
  262. "changeable": 1
  263. },
  264. {
  265. "key": "py_hitv.py",
  266. "name": "⏭|Hitv_Emby|PYTHON",
  267. "type": 3,
  268. "api": "https://git.acwing.com/ocean2025/ocean/-/raw/main/py/py_hitv.py",
  269. "searchable": 1,
  270. "quickSearch": 1,
  271. "filterable": 1
  272. },
  273. {
  274. "key": "San_emby",
  275. "name": "⏭|San_Emby|PYTHON",
  276. "type": 3,
  277. "api": "https://gh.llkk.cc/https://raw.githubusercontent.com/boly4189/tv1/refs/heads/master/py/py_emby.py",
  278. "searchable": 1,
  279. "quickSearch": 1,
  280. "filterable": 1,
  281. "ext": {
  282. "server": "http://san.creativeinfo.org:8096",
  283. "username": "san",
  284. "password": "san123",
  285. "thread": 0,
  286. "proxy": ""
  287. },
  288. "changeable": 1
  289. },
  290. {
  291. "key": "黑木耳go",
  292. "name": "⏭|黑木耳|GO",
  293. "type": 1,
  294. "api": "http://zhangqun1818.serv00.net:5053",
  295. "searchable": 1,
  296. "quickSearch": 0,
  297. "changeable": 1
  298. },
  299. {
  300. "key": "py_素白白.py",
  301. "name": "⏭|素白白|PYTHON",
  302. "type": 3,
  303. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/素白白.py",
  304. "searchable": 1,
  305. "quickSearch": 1,
  306. "filterable": 1
  307. },
  308. {
  309. "key": "九龙影视",
  310. "name": "⏭|九龙(app)|PYTHON",
  311. "type": 3,
  312. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/九龙影视.py",
  313. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  314. "searchable": 1,
  315. "changeable": 1,
  316. "quickSearch": 1,
  317. "filterable": 1,
  318. "playerType": 2
  319. },
  320. {
  321. "key": "猎手影视",
  322. "name": "⏭|猎手(app)|PYTHON",
  323. "type": 3,
  324. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/猎手影视.py",
  325. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  326. "searchable": 1,
  327. "changeable": 1,
  328. "quickSearch": 0,
  329. "filterable": 1,
  330. "playerType": 2
  331. },
  332. {
  333. "key": "py_hitv",
  334. "name": "⏭|hitv|PYTHON",
  335. "type": 3,
  336. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/py_hitv.py",
  337. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/py.jar;md5;71d846866f2ceb9666ba114e5963983f",
  338. "searchable": 1,
  339. "quickSearch": 0,
  340. "filterable": 0,
  341. "changeable": 1
  342. },
  343. {
  344. "key": "py_电影獵手",
  345. "name": "⏭|電影獵手|PYTHON",
  346. "type": 3,
  347. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/py_电影猎手.py",
  348. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/py.jar;md5;71d846866f2ceb9666ba114e5963983f",
  349. "searchable": 1,
  350. "quickSearch": 0,
  351. "filterable": 0,
  352. "changeable": 1
  353. },
  354. {
  355. "key": "py_映播",
  356. "name": "⏭|映播|PYTHON",
  357. "type": 3,
  358. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/映播.py",
  359. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/py.jar;md5;71d846866f2ceb9666ba114e5963983f",
  360. "searchable": 1,
  361. "quickSearch": 0,
  362. "filterable": 0,
  363. "changeable": 1
  364. },
  365. {
  366. "key": "py_獵手影视",
  367. "name": "⏭|獵手影视|PYTHON",
  368. "type": 3,
  369. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/猎手影视.py",
  370. "searchable": 1,
  371. "quickSearch": 0,
  372. "filterable": 0,
  373. "changeable": 1
  374. },
  375. {
  376. "key": "py_策驰影院",
  377. "name": "⏭|策驰影院|PYTHON",
  378. "type": 3,
  379. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/策驰影院.py",
  380. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/py.jar;md5;71d846866f2ceb9666ba114e5963983f",
  381. "searchable": 1,
  382. "quickSearch": 0,
  383. "filterable": 0,
  384. "changeable": 1
  385. },
  386. {
  387. "key": "py_bilibili",
  388. "name": "⏭|bilibili|PYTHON",
  389. "type": 3,
  390. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/py_bilibili.py",
  391. "searchable": 1,
  392. "quickSearch": 0,
  393. "filterable": 0,
  394. "changeable": 1
  395. },
  396. {
  397. "key": "csp_PTT",
  398. "name": "🥇|PTT視頻",
  399. "type": 3,
  400. "api": "csp_XBPQ",
  401. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  402. "searchable": 1,
  403. "quickSearch": 1,
  404. "filterable": 1,
  405. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/PTT視頻.json"
  406. },
  407. {
  408. "key": "金牌影视",
  409. "name": "🥇|金牌影院",
  410. "type": 3,
  411. "api": "csp_Jpys",
  412. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  413. "playerType": 2,
  414. "searchable": 1,
  415. "quickSearch": 1,
  416. "changeable": 1
  417. },
  418. {
  419. "key": "Auete",
  420. "name": "🥇|銀牌影院",
  421. "type": 3,
  422. "api": "csp_Auete",
  423. "timeout": 15,
  424. "searchable": 1,
  425. "quickSearch": 1,
  426. "changeable": 1,
  427. "ext": "https://auete.pro/",
  428. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b"
  429. },
  430. {
  431. "key": "剧迷TV",
  432. "name": "🥇|銅牌影院",
  433. "type": 3,
  434. "api": "csp_XBPQ",
  435. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  436. "searchable": 1,
  437. "quickSearch": 1,
  438. "filterable": 1,
  439. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/銅牌影院.json"
  440. },
  441. {
  442. "key": "金牌資源",
  443. "name": "🥇|鐵牌影院",
  444. "type": 3,
  445. "api": "csp_XBPQ",
  446. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  447. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/金牌影院.json"
  448. },
  449. {
  450. "key": "py_HeiMuEr",
  451. "name": "🥇|黑木耳|沐辰",
  452. "type": 4,
  453. "api": "https://spider.doube.eu.org/spider?site=HeiMuEr",
  454. "searchable": 1,
  455. "quickSearch": 0,
  456. "filterable": 0,
  457. "changeable": 1
  458. },
  459. {
  460. "key": "Wexduboku",
  461. "name": "🥇|獨播庫|牛二",
  462. "type": 3,
  463. "api": "csp_WexdubokuGuard",
  464. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/wex.jar",
  465. "searchable": 1,
  466. "changeable": 1
  467. },
  468. {
  469. "key": "T4-独播库",
  470. "name": "🥇|獨播庫|唐三",
  471. "type": 4,
  472. "api": "https://tang.hz.cz/power/duboku?token=647c28ca",
  473. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/custom_spider.jar",
  474. "searchable": 1,
  475. "quickSearch": 1,
  476. "filterable": 1,
  477. "changeable": 1
  478. },
  479. {
  480. "key": "T4-欧乐",
  481. "name": "🥇|歐樂|唐三",
  482. "type": 4,
  483. "api": "https://tang.hz.cz/power/olelive?token=647c28ca",
  484. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/custom_spider.jar",
  485. "searchable": 1,
  486. "quickSearch": 1,
  487. "filterable": 1,
  488. "changeable": 1
  489. },
  490. {
  491. "key": "py_OleVod",
  492. "name": "🥇|歐樂|沐辰",
  493. "type": 4,
  494. "api": "https://py.doube.eu.org/spider?site=OleVod",
  495. "searchable": 1,
  496. "quickSearch": 0,
  497. "filterable": 0,
  498. "changeable": 1
  499. },
  500. {
  501. "key": "csp_XBiu歐樂影院ORG",
  502. "name": "🥇|歐樂|老王",
  503. "type": 3,
  504. "api": "csp_XBPQ",
  505. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  506. "searchable": 1,
  507. "quickSearch": 1,
  508. "filterable": 1,
  509. "ext": {
  510. "简介": "content_desc context clearfix\">&&</span>",
  511. "分类url": "https://www.oulevod.org/index.php/vod/show/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  512. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#體育$59#短劇$53"
  513. }
  514. },
  515. {
  516. "key": "py_AiGuaTV",
  517. "name": "🥇|爱瓜TV|沐辰",
  518. "type": 4,
  519. "api": "https://spider.doube.eu.org/spider?site=AiGuaTV",
  520. "searchable": 1,
  521. "quickSearch": 0,
  522. "filterable": 0,
  523. "changeable": 1
  524. },
  525. {
  526. "key": "py_UpFuHn",
  527. "name": "🥇|Hi视频|沐辰",
  528. "type": 4,
  529. "api": "https://py.doube.eu.org/spider?site=UpFuHn",
  530. "searchable": 1,
  531. "quickSearch": 0,
  532. "filterable": 0,
  533. "changeable": 1
  534. },
  535. {
  536. "key": "T4-安博",
  537. "name": "🥇|安博|唐三",
  538. "type": 4,
  539. "api": "https://tang.hz.cz/power/ub18?token=647c28ca",
  540. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/custom_spider.jar",
  541. "searchable": 1,
  542. "quickSearch": 1,
  543. "filterable": 1,
  544. "changeable": 1
  545. },
  546. {
  547. "key": "csp_七味",
  548. "name": "🥇|追劇神器",
  549. "type": 3,
  550. "api": "csp_XBPQ",
  551. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  552. "searchable": 1,
  553. "quickSearch": 1,
  554. "filterable": 1,
  555. "ext": {
  556. "規則名": "七味",
  557. "規則作者": "老王叔叔",
  558. "規則日期": "114.01.23",
  559. "主页url": "https://www.qnmp4.com/",
  560. "分类url":"https://www.qnmp4.com/ms/{cateId}-{area}-{by}------{catePg}---{year}.html",
  561. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  562. "地区": "大陆&香港&台湾&日本&韩国&泰国&美国&英国&法国&德国&印度&丹麦&瑞典&荷兰&加拿大&俄罗斯&意大利&比利时&西班牙&澳大利亚&其他",
  563. "二次截取": "pic-list clearfix\">&&</ul>",
  564. "数组": "<div class=\"li-img&&</a>",
  565. "图片": "src=\"&&\"",
  566. "标题": "title=\"&&\"",
  567. "副标题": "</i>&&</span>",
  568. "链接": "href=\"&&\"",
  569. "影片年代": "year\">(&&)</span>",
  570. "影片地区": "地区:</span>&&</div>",
  571. "影片类型": "类型:</span>&&</div>",
  572. "状态": "otherbox\">*<em>&&</em>",
  573. "导演": "导演:</span>&&</div>",
  574. "主演": "主演:</span>&&</div>",
  575. "简介": "<p class=\"sqjj_a*>&&<span",
  576. "线路二次截取": "<ul class=\"py-tabs&&</ul>",
  577. "线路数组": "<li&&</li>",
  578. "线路标题": ">&&<div",
  579. "播放数组": "<ul class=\"player&&</ul>",
  580. "播放列表": "<li>&&</li>",
  581. "播放标题": ">&&</a>",
  582. "播放链接": "href=\"&&\"",
  583. "跳转播放链接": "urlDecode(var player_*\"url\":\"&&\")",
  584. "搜索url": "/index.php/ajax/suggest?mid=1&wd={wd}&page={pg}&limit=30",
  585. "搜索模式": "1",
  586. "搜索二次截取": "",
  587. "搜索数组": "list",
  588. "搜索标题": "name",
  589. "搜索图片": "pic",
  590. "搜索副标题": "en",
  591. "搜索链接": "'/mv/'+id+'.html'"
  592. }
  593. },
  594. {
  595. "key": "csp_真不卡",
  596. "name": "🥇|真不卡",
  597. "type": 3,
  598. "api": "csp_XBPQ",
  599. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  600. "searchable": 1,
  601. "quickSearch": 1,
  602. "filterable": 1,
  603. "ext": {
  604. "規則名": "真不卡",
  605. "規則作者": "老王叔叔",
  606. "規則日期": "114.01.16",
  607. "主页url": "https://zbkyyy.com/",
  608. "搜索url": "https://zbkyyy.com/qyvodsearch/-------------.html?wd={wd}",
  609. "分类url":"https://www.zbkyyy.com/qyvodshow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  610. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  611. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国||大陆&韩国&香港&台湾&日本&美国&泰国&英国||大陆&港台&日韩&欧美||大陆&日本&欧美&其他"
  612. }
  613. },
  614. {
  615. "key": "csp_流光",
  616. "name": "🥇|流光",
  617. "type": 3,
  618. "api": "csp_XBPQ",
  619. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  620. "searchable": 1,
  621. "quickSearch": 1,
  622. "filterable": 1,
  623. "ext": {
  624. "規則名": "流光",
  625. "規則作者": "老王叔叔",
  626. "規則日期": "114.01.18",
  627. "主页url": "https://www.gyf.lol/",
  628. "数组": "<div class=\"public-list-div public-list-bj\"&&</div>",
  629. "图片": "data-src=\"&&\"",
  630. "标题": "title=\"&&\"",
  631. "副标题": "class=\"public-prt hide o12\">&&</span>",
  632. "链接": "href=\"&&\"",
  633. "简介": "class=\"text cor3\"&&</div>",
  634. "影片年代": "更新 :&&</div>",
  635. "导演": "导演 :</div>&&</div>",
  636. "线路数组": "swiper-slide&&</a>",
  637. "线路标题": "</i>&&<span",
  638. "播放数组": "<ul class=\"anthology-list-play&&</ul>",
  639. "播放列表": "<li&&</li>",
  640. "播放标题": "html\">&&</a>",
  641. "播放链接": "href=\"&&\"",
  642. "搜索url": "https://www.gyf.lol/index.php/vod/search.html?wd={wd}",
  643. "分类url":"https://www.gyf.lol/index.php/vod/show/area/{area}/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html",
  644. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  645. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||内地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||內地&港台&日韩&欧美||大陆&日本&欧美&其他"
  646. }
  647. },
  648. {
  649. "key": "csp_奈飞TV",
  650. "name": "🥇|奈飞TV",
  651. "type": 3,
  652. "changeable": 1,
  653. "searchable": 1,
  654. "quickSearch": 1,
  655. "filterable": 1,
  656. "api": "csp_XBPQ",
  657. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  658. "ext": {
  659. "規則名": "奈飛TV",
  660. "規則作者": "老王叔叔",
  661. "規則日期": "114.01.18",
  662. "主页url": "https://www.naifei1.org/",
  663. "搜索数组":"class=\"video-info-header\">&&</div>",
  664. "搜索标题":"title=\"&&\"",
  665. "搜索副标题":"<div>&&</div>",
  666. "搜索图片":"data-src=\"&&\"",
  667. "搜索链接":"href=\"&&\"",
  668. "搜索链接前缀":"",
  669. "搜索链接后缀":"",
  670. "嗅探词": ".mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  671. "线路数组": "data-dropdown-value=&&</div>",
  672. "线路标题": "<span>&&</small>",
  673. "导演": "导演:&&</div>",
  674. "主演": "主演:&&</div>",
  675. "简介": "class=\"video-info-item video-info-content vod_content\">&&</div>",
  676. "分类url": "https://www.naifei1.org/vodshow/area/{area}/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html",
  677. "分类": "电影$dy#电视剧$juji#综艺$zongyi#动漫$dongman",
  678. "类型":"动作片$dongzuopian#喜剧片$xijupian#爱情片$aiqingpian#犯罪片$fanzuipian#恐怖片$kongbupian#科幻片$kehuanpian#悬疑片$xuanyipian#剧情片$juqingpian#动画片$donghuapian#战争片$zhanzhengpian||国产剧$guochanju#香港剧$xianggangju#台湾剧$taiwanju#欧美剧$oumeiju#日本剧$ribenju#韩国剧$hanguoju#东南亚$dongnanya#其他剧$qitaju||大陆综艺$daluzongyi#港台综艺$gangtaizongyi#日韩综艺$rihanzongyi#欧美综艺$oumeizongyi#其他综艺$qitazongyi||国产动漫$guochandongman#日韩动漫$rihandongman#欧美动漫$oumeidongman#其他动漫$qitadongman",
  679. "地区":"中国&香港&台湾&美国&韩国&法国&英国&日本&德国&泰国&印度&意大利&西班牙&加拿大&其它||中国&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其它||中国&香港&台湾&日本&韩国&欧美&其它||中国&韩国&日本&美国&法国&德国&其它"
  680. }
  681. },
  682. {
  683. "key": "韩小圈",
  684. "name": "🥇|韩小圈",
  685. "type": 3,
  686. "api": "csp_HanXiaoQuan",
  687. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/orgr.jar",
  688. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/orgr.jar",
  689. "searchable": 1,
  690. "quickSearch": 1,
  691. "filterable": 1
  692. },
  693. {
  694. "key": "海纳TV",
  695. "name": "🥇|海纳",
  696. "type": 3,
  697. "api": "csp_XBPQ",
  698. "playerType": 2,
  699. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  700. "searchable": 1,
  701. "quickSearch": 1,
  702. "filterable": 1,
  703. "ext": {
  704. "分类url": "https://www.hainatv.net/index.php/vod/show/area/{area}/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html",
  705. "分类": "电影$1#剧集$2#综艺$3#动漫$4",
  706. "类型": "动作片$43#喜剧片$44#爱情片$45#科幻片$46#恐怖片$47#剧情片$48#战争片$49||国产剧$13#港台剧$14#日韩剧$15#欧美剧$16#泰国剧$28||大陆综艺$50#港台综艺$51#日韩综艺$52#欧美综艺$53||国产动漫$29#日本动漫$30#港台动漫$31#欧美动漫$32",
  707. "地区": "大陆&香港&台湾&美国&英国&日本&韩国&泰国&新马&其他||空||大陆&香港&台湾&韩国&日本&欧美||空"
  708. }
  709. },
  710. {
  711. "key":"苹果",
  712. "name":"🥇|苹果",
  713. "type":3,
  714. "api":"csp_Xpg",
  715. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;eb7676582d076a5505be5f23530e4f4d",
  716. "searchable":1,
  717. "quickSearch":1,
  718. "changeable":1
  719. },
  720. {
  721. "key": "多多",
  722. "name": "🥇|多多",
  723. "type": 3,
  724. "api": "csp_XBPQ",
  725. "playerType": 2,
  726. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  727. "searchable": 1,
  728. "quickSearch": 1,
  729. "filterable": 1,
  730. "ext": {
  731. "简介": "简介:&&<a",
  732. "分类url": "https://www.ddhqw.com/list/{cateId}/area/{area}/page/{catePg}/year/{year}.html",
  733. "分类": "电影$dianying#剧集$dianshiju#综艺$zongyi#动漫$dongmna",
  734. "类型": "动作片$dzp#科幻片$khp#战争片$zzp#恐怖片$kbp#喜剧片$xjp#爱情片$aqp#剧情片$jqp||国产剧$gcj#港台剧$gtj#日韩剧$rhj#海外剧$hwj#热门短剧$rmdj||空||空",
  735. "地区": "中国&大陆&内地&香港&台湾&日本&韩国&俄罗斯&澳大利亚&泰国&新加坡&马来西亚&越南&印度&巴基斯坦&伊朗&菲律宾&美国&英国&德国&丹麦&巴西&西班牙&加拿大&法国&意大利"
  736. }
  737. },
  738. {
  739. "key": "csp_草民影院",
  740. "name": "🥇|草民",
  741. "type": 3,
  742. "api": "csp_XBPQ",
  743. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  744. "ext": {
  745. "请求头": "User-Agent$MOBILE_UA",
  746. "编码": "UTF-8",
  747. "主页url": "https://www.ksksi.com/",
  748. "数组": "class=\"v-pic\"&&</a>",
  749. "标题": "alt=\"&&\"",
  750. "图片": "data-src=\"&&\"",
  751. "副标题": "tips\">&&</span>",
  752. "链接": "href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]",
  753. "播放数组": "class=\"xjn_ul play-list\"&&</ul>",
  754. "播放列表": "<a&&a>",
  755. "播放链接": "href=\"&&\"",
  756. "播放标题": ">&&</",
  757. "线路数组": "<a href=\"javascript:zush&&a>",
  758. "线路标题": ">&&</",
  759. "跳转播放链接": "var player_*\"url\":\"&&\"",
  760. "简介": "简介:&&</div>",
  761. "搜索url": "https://www.ksksi.com/search.html?wd={wd}",
  762. "搜索数组": "class=\"item clearfix\"&&</a>",
  763. "搜索标题": "alt=\"&&\"",
  764. "搜索图片": "src=\"&&\"",
  765. "搜索副标题": "<em>&&</em>",
  766. "搜索链接": "href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]",
  767. "分类url": "https://www.ksksi.com/show/{cateId}-{catePg}/area/{area}/class/{class}/by/{by}/year/{year}.html",
  768. "分类": "电影$movie#连续剧$tv#综艺$varietyshow#动漫$cartoon#短剧$skits"
  769. }
  770. },
  771. {
  772. "key": "csp_奥特影视(PRO)",
  773. "name": "🥇|奥特(PRO)",
  774. "type": 3,
  775. "api": "csp_XBPQ",
  776. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  777. "ext": {
  778. "简介": "<p>◎影片简介:</p>&&</div>",
  779. "分类url": "https://auete.pro/{cateId}/{class}/index{catePg}.html[https://auete.pro/{cateId}/{class}/index.html]",
  780. "筛选": "1",
  781. "剧情": "动作片$dzp#喜剧片$xjp#爱情片$aqp#科幻片$khp#恐怖片$kbp#剧情片$jqp#战争片$zzp#惊悚片$jsp||香港剧$tvbgj#国产剧$neidi#台湾剧$taiju#欧美剧$oumei#日剧$riju#韩剧$hanju#网剧$wangju#泰剧$yataiju||大陆综艺$guozong#日韩综艺$hanzong#欧美综艺$meizong||国产动漫$guoman#日本动漫$riman#欧美动漫$meiman$动画$donghua||记录片$Jlp#经典片$Jdp#经典剧$Jdj#网大电影$wlp#国产老电影$laodianying",
  782. "分类": "电影$Movie#电视剧$Tv#综艺$Zy#动漫$Dm#其他$qita"
  783. }
  784. },
  785. {
  786. "key": "csp_奥特影视(COM)",
  787. "name": "🥇|奥特(COM)",
  788. "type": 3,
  789. "api": "csp_XBPQ",
  790. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  791. "ext": {
  792. "简介": "<p>◎影片简介:</p>&&</div>",
  793. "分类url": "https://auete.com/{cateId}/{class}/index{catePg}.html[https://auete.com/{cateId}/{class}/index.html]",
  794. "筛选": "1",
  795. "分类": "电影$Movie#电视剧$Tv#综艺$Zy#动漫$Dm#其他$qita",
  796. "剧情": "动作片$dzp#喜剧片$xjp#爱情片$aqp#科幻片$khp#恐怖片$kbp#惊悚片$jsp#剧情片$jqp#战争片$zzp||香港剧$tvbgj#国产剧$neidi#台湾剧$taiju#欧美剧$oumei#日剧$riju#韩剧$hanju#网剧$wangju#泰剧$yataiju||大陆综艺$guozong#日韩综艺$hanzong#欧美综艺$meizong||国产动漫$guoman#日本动漫$riman#欧美动漫$meiman$动画$donghua||记录片$Jlp#经典片$Jdp#经典剧$Jdj#网大电影$wlp#国产老电影$laodianying"
  797. }
  798. },
  799. {
  800. "key": "csp_宝片影视",
  801. "name": "🥇|宝片",
  802. "type": 3,
  803. "api": "csp_XBPQ",
  804. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  805. "searchable": 1,
  806. "quickSearch": 1,
  807. "filterable": 1,
  808. "ext": {
  809. "分类url": "https://ibaopian.com/vod/type/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  810. "分类": "电影$1#连续剧$2#动漫$4#综艺$3#纪录片$20#短剧$22"
  811. }
  812. },
  813. {
  814. "key": "csp_界界影视",
  815. "name": "🥇|異界",
  816. "type": 3,
  817. "api": "csp_XBPQ",
  818. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  819. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/異界影視.json"
  820. },
  821. {
  822. "key": "csp_XBPQ_爱电",
  823. "name": "🥇|爱电",
  824. "type": 3,
  825. "api": "csp_XBPQ",
  826. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  827. "searchable": 1,
  828. "quickSearch": 1,
  829. "filterable": 1,
  830. "ext": {
  831. "主页url": "https://www.gs4x7nq4.com",
  832. "简介": "</label>&&</div>",
  833. "影片类型": "tags\">&&director\">",
  834. "影片状态": "bottom\">&&</div>",
  835. "二次截取": "videoList\":\\[&&\\]",
  836. "数组": "{&&}[不包含:伦理剧]",
  837. "图片": "https+://ywxohs.com+obs.gduamoe.com&&\",",
  838. "标题": "vodName\":\"&&\"",
  839. "副标题": "vodRemarks\":\"&&\"",
  840. "链接": "https://www.gs4x7nq4.com/detail/+vodId\":&&,",
  841. "导演": "导演:</div>&&主演",
  842. "主演": "主演:</div>&&别名",
  843. "线路标题": "",
  844. "播放数组": "listitem\">&&info\">",
  845. "嗅探词": ".mp4#.m3u8#.flv#.m3u8?#.mp4?",
  846. "播放列表": "<a&&</a>",
  847. "倒序": "否",
  848. "搜索url": "https://www.gs4x7nq4.com/vod/search/{wd}",
  849. "分类": "电视剧$2#电影$1#动漫$4#综艺$3",
  850. "分类url": "https://www.gs4x7nq4.com/vod/show/id/{cateId}/class/{class}/year/{year}/area/{area}/page/{catePg}"
  851. }
  852. },
  853. {
  854. "key": "CSP_雪糕影视",
  855. "name": "🥇|雪糕",
  856. "type": 3,
  857. "api": "csp_XBPQ",
  858. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  859. "ext":
  860. {
  861. "分类url": "https://www.xgitv.com/vshow/{cateId}--{by}------{catePg}---.html",
  862. "分类": "电影$1#剧集$2#综艺$3#动漫$4",
  863. "类型": "动作片$zilei1#喜剧片$zilei2#爱情片$zilei3#科幻片$zilei4#恐怖片$zilei5#剧情片$zilei6#战争片$zilei7#纪录片$jilupian#其他$qita||国产剧$8#港台剧$9#日韩剧$10#欧美剧$11#海外剧$haiwaiju||空||空"
  864. }
  865. },
  866. {
  867. "key":"drpyS_雪糕TV",
  868. "name":"🥇|雪糕TV",
  869. "type":4,
  870. "api":"http://drpys.aera.eu.org/api/雪糕TV",
  871. "searchable":1,
  872. "filterable":0,
  873. "quickSearch":1,
  874. "ext":""
  875. },
  876. {
  877. "key": "csp_美柏影视",
  878. "name": "🥇|美柏",
  879. "type": 3,
  880. "api": "csp_XBPQ",
  881. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  882. "searchable": 1,
  883. "quickSearch": 1,
  884. "filterable": 1,
  885. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/美柏影视.json"
  886. },
  887. {
  888. "key":"drpyS_瓜子H5",
  889. "name":"🥇|瓜子H5",
  890. "type":4,
  891. "api":"http://drpys.aera.eu.org/api/瓜子H5",
  892. "searchable":1,
  893. "filterable":1,
  894. "quickSearch":1,
  895. "ext":""
  896. },
  897. {
  898. "key": "csp_瓜子",
  899. "name": "🥇|瓜子(要按點播才有東西)",
  900. "api": "csp_Gz360",
  901. "type": 3,
  902. "searchable": 1,
  903. "playerType": 2,
  904. "timeout": 30,
  905. "jar": "https://raw.githubusercontent.com/linfern-mou/linfern/0d3098371b13d9cd9e948aede87957b9eae98307/tvbox/jar/摸鱼儿.jar",
  906. "changeable": 1
  907. },
  908. {
  909. "key": "csp_YCyz",
  910. "name": "🥇|原创",
  911. "type": 3,
  912. "api": "csp_YCyz",
  913. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/moyu.jar",
  914. "timeout": 15,
  915. "playerType": 1,
  916. "searchable": 1,
  917. "quickSearch": 1,
  918. "changeable": 1
  919. },
  920. {
  921. "key": "csp_低端",
  922. "name": "🥇|低端",
  923. "type": 3,
  924. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  925. "searchable": 1,
  926. "quickSearch": 1,
  927. "filterable": 1,
  928. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/低端.js"
  929. },
  930. {
  931. "key": "csp_酷亚",
  932. "name": "🥇|酷亚",
  933. "type": 3,
  934. "api": "csp_XBPQ",
  935. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  936. "ext": {
  937. "分类url": "https://www.kuyavod.com/vodshow/{cateId}/by/{by}/page/{catePg}/year/{year}/",
  938. "分类": "電影$movie#電視劇$drama#綜藝$show#動漫$animation",
  939. "类型": "剧情片$plots#动作片$action#冒险片$adventure#喜剧片$humor#奇幻片$fantasy#纪录片$documentary#恐怖片$horror#悬疑片$mystery#惊悚片$thriller#灾难片$disaster#爱情片$romance#犯罪片$crime#科幻片$sci-fi#动画电影$animated#歌舞片$dancing#战争片$war#经典片$classic#网络电影$web-film#其它片$others#||国产剧$nationalized#港台剧$HK-Taiwan#日韩剧$japanese-korean#歐美剧$EU-USA-drama#馬泰剧$malaysian-thai||内地综艺$chinese#港台综艺$RTHK-variety#日韩综艺$japanese-korean-variety#欧美综艺$EU-USA-variety#新马泰综艺$xinmataizongyi||国产动漫$chinese-animation#日韩动漫$japanese-manga#港台动漫$RTHK-animation#欧美动漫$european-american-cartoons"
  940. }
  941. },
  942. {
  943. "key": "csp_XBiu飞兔影视",
  944. "name": "🥇|飞兔",
  945. "type": 3,
  946. "api": "csp_XBPQ",
  947. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  948. "searchable": 1,
  949. "quickSearch": 1,
  950. "filterable": 1,
  951. "ext": {
  952. "分类url": "https://www.feitu.tv/filter/{cateId}/area/{area}/by/{by}/page/{catePg}/year/{year}/",
  953. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  954. "类型":"空||国产剧$13#欧美剧$16#港剧$14#日剧$15#韩剧$31#台剧$33#泰剧$32#新马剧$34#其它剧$35||国产综艺$39#韩国综艺$38#欧美综艺$36#日本综艺$37#港台综艺$41#演唱会$122#其它综艺$42#音乐MV$125||国产动漫$45#日本动漫$44#港台动漫$48#韩国动漫$46#欧美动漫$43#其它动漫$49",
  955. "地区":"大陆&香港&台湾&欧美&日本&韩国&新马&泰国&其它||空||空||空"
  956. }
  957. },
  958. {
  959. "key": "csp_XBPQ_fxzcjy",
  960. "name": "🥇|柴姬",
  961. "type": 3,
  962. "api": "csp_XBPQ",
  963. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  964. "ext": {
  965. "站名": "Cally",
  966. "请求头": "User-Agent$MOBILE_UA",
  967. "编码": "UTF-8",
  968. "图片代理": "0",
  969. "直接播放": "0",
  970. "免嗅": "1",
  971. "嗅探词": ".mp4#.m3u8#.flv",
  972. "主页url": "https://cally66.icu",
  973. "首页": "120",
  974. "起始页": "1",
  975. "分类url": "/vod/list.html?area_id={area}&cate_id={class}&lang_id={lang}&page={catePg}&type_id={cateId}&year_id={year};;rc",
  976. "分类": "电影&剧集&综艺&动漫&短剧",
  977. "分类值": "1&2&3&4&39",
  978. "数组": "/vod/detail&&</a>",
  979. "标题": "alt=\"&&\"",
  980. "图片": "data-original=\"&&\"",
  981. "副标题": "✨HD+module-item-note\">&&</div>",
  982. "链接": "/vod/detail.+.&&\"[替换:amp;>>空]",
  983. "影片年代": "module-info-tag-link\">&&</div>",
  984. "影片地区": "</div><div class=\"module-info-tag-link\">&&</div>",
  985. "影片类型": "content=\"影视,*,&&,2",
  986. "状态": "更新:&&</div>",
  987. "导演": "导演:&&</div>",
  988. "主演": "主演:&&</div>",
  989. "简介": "show-desc*>&&</p>",
  990. "线路数组": "data-dropdown-value=&&>",
  991. "线路标题": "💕播放👉+\"&&\"",
  992. "播放数组": "module-play-list\">&&</div>",
  993. "倒序": "0",
  994. "播放列表": "<a&&/a>",
  995. "播放标题": "<span>&&</span>",
  996. "播放链接": "https://cally66.icu/openapi/playline/+line_id=&&\\&",
  997. "跳转播放链接": "file\":\"&&\"",
  998. "搜索请求头": "User-Agent$MOBILE_UA",
  999. "搜索url": "/public/auto/search1.html?keyword={wd}&page={pg}",
  1000. "搜索模式": "1",
  1001. "搜索数组": "module-item\">&&</a>",
  1002. "搜索标题": "alt=\"&&\"",
  1003. "搜索图片": "data-original=\"&&\"",
  1004. "搜索副标题": "module-item-note\">&&</div>",
  1005. "搜索链接": "href=\"&&\"",
  1006. "筛选": "1",
  1007. "剧情": "动作片$98#喜剧片$10#爱情片$11#恐怖片$12#剧情片$13#科幻片$14#惊悚片$15#奇幻片$16#动画片$17#悬疑片$18#冒险片$19#纪录片$20#战争片$21#经典片$49#犯罪片$50#灾难片$51#网络电影$52||国产剧$22#港台剧$23#欧美剧$25#日韩剧$26#泰国剧$28#其他剧$29||大陆综艺$30#港台综艺$31#日韩综艺$32#欧美综艺$33#海外综艺$34||国产动漫$35#日韩动漫$36#欧美动漫$37#其它动漫$38||穿越$40#重生$41#古装$42#仙侠$43#都市$44#爽剧$45#恋爱$46#逆袭$47#其它$48",
  1008. "地区": "大陆&港台&日本&韩国&美国&泰国&英国&法国&德国&印度&俄国&欧美&其它",
  1009. "地区值": "22&23&24&25&26&27&28&29&30&31&32&33&34",
  1010. "年份": "2025&2024&2023&2022&2021&2020&15至19&10至14&05至09&00至04&更早",
  1011. "年份值": "2&3&5&6&7&8&9&10&11&12",
  1012. "语言": "国语&英语&粤语&日语&韩语&闽南语&其它",
  1013. "语言值": "14&15&16&17&18&19&20"
  1014. }
  1015. },
  1016. {
  1017. "key": "-追影影视1",
  1018. "name": "🥇|追影",
  1019. "type": 3,
  1020. "api": "csp_XBPQ",
  1021. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1022. "searchable": 1,
  1023. "quickSearch": 1,
  1024. "filterable": 1,
  1025. "ext": {
  1026. "请求头": "User-Agent@Mozilla/5.0 (Windows NT 10.0;; Win64;; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36",
  1027. "编码": "UTF-8",
  1028. "首页": "120",
  1029. "起始页": "1",
  1030. "主页url": "https://m.zjuys.com",
  1031. "二次截取": "list\":\\[&&\\]",
  1032. "数组": "{&&}",
  1033. "标题": "vodName\":\"&&\"",
  1034. "副标题": "vodRemarks\":\"&&\"+vodVersion\":\"&&\"",
  1035. "图片": "https://obs.gduamoe.com/+https://obs.gduamoe.com/&&\"+?x-image-process=image/resize,w_260,h_357/quality,q_65/format,webp",
  1036. "链接": "https://m.zjuys.com/detail/+vodId\":&&,\"",
  1037. "线路二次截取": "episodeList\":&&likeData",
  1038. "线路数组": "[&&]",
  1039. "线路标题": "追影播放器",
  1040. "播放请求头": "User-Agent@Mozilla/5.0 (Linux;; Android 12;; PEHM00 Build/SKQ1.210216.001;; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/127.0.6533.103 Mobile Safari/537.36",
  1041. "播放二次截取": "episodeList\":&&likeData[替换:nid\":>>nid\":/1/]",
  1042. "播放数组": "\\[&&\\]",
  1043. "播放列表": "{&&}",
  1044. "播放链接": "nid\":&&,\"",
  1045. "播放链接前缀": "https://m.zjuys.com/vod/play/+/play/&&/",
  1046. "播放标题": "name\":\"&&\"",
  1047. "搜索模式": "1",
  1048. "搜索url": "https://m.zjuys.com/vod/search/{wd}",
  1049. "搜索二次截取": "result*list\":\\[&&\\]",
  1050. "搜索数组": "{&&}",
  1051. "搜索标题": "vodName\":\"&&\"",
  1052. "搜索副标题": "vodRemarks\":\"&&\"+vodVersion\":\"&&\"",
  1053. "搜索图片": "https://obs.gduamoe.com/+https://obs.gduamoe.com/&&\"+?x-image-process=image/resize,w_260,h_357/quality,q_65/format,webp",
  1054. "搜索链接": "https://m.zjuys.com/detail/+vodId\":&&,\"",
  1055. "简介": "</label>&&</div>",
  1056. "分类url": "https://www.zjuys.com/vod/show/id/{cateId}/area/{area}/year/{year}/page/{catePg};;mrcWR",
  1057. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  1058. "类型": "喜剧片$1/type/22#动作片$1/type/23#科幻片$1/type/30#爱情片$1/type/26#悬疑片$1/type/27#奇幻片$1/type/87#剧情片$1/type/37#恐怖片$1/type/36#犯罪片$1/type/35#动画片$1/type/33#惊悚片$1/type/34#战争片$1/type/25#冒险片$1/type/31#灾难片$1/type/81#理论片$1/type/83#其他片$1/type/43||国产剧$2/type/14#欧美剧$2/type/15#港台剧$2/type/16#日韩剧$2/type/62#其他剧$2/type/68||国产综艺$3/type/69#港台综艺$3/type/70#日韩综艺$3/type/72#欧美综艺$3/type/73#其他综艺$3/type/74||国产动漫$4/type/75#日韩动漫$4/type/76#欧美动漫$4/type/77",
  1059. "地区": "中国大陆&中国香港&中国台湾&美国&日本&韩国&印度&泰国&其他||中国大陆&中国香港&中国台湾&日本&韩国&美国&泰国&其他||中国大陆&中国香港&中国台湾&日本&韩国&美国&其他||中国大陆&日本&美国&其他"
  1060. }
  1061. },
  1062. {
  1063. "key": "-草民影院",
  1064. "name": "🥇|草民",
  1065. "type": 3,
  1066. "api": "csp_XBPQ",
  1067. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1068. "ext": {
  1069. "请求头": "User-Agent$MOBILE_UA",
  1070. "编码": "UTF-8",
  1071. "主页url": "https://www.ksksi.com/",
  1072. "数组": "class=\"v-pic\"&&</a>",
  1073. "标题": "alt=\"&&\"",
  1074. "图片": "data-src=\"&&\"",
  1075. "副标题": "tips\">&&</span>",
  1076. "链接": "href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]",
  1077. "播放数组": "class=\"xjn_ul play-list\"&&</ul>",
  1078. "播放列表": "<a&&a>",
  1079. "播放链接": "href=\"&&\"",
  1080. "播放标题": ">&&</",
  1081. "线路数组": "<a href=\"javascript:zush&&a>",
  1082. "线路标题": ">&&</",
  1083. "跳转播放链接": "var player_*\"url\":\"&&\"",
  1084. "简介": "简介:&&</div>",
  1085. "搜索url": "https://www.ksksi.com/search.html?wd={wd}",
  1086. "搜索数组": "class=\"item clearfix\"&&</a>",
  1087. "搜索标题": "alt=\"&&\"",
  1088. "搜索图片": "src=\"&&\"",
  1089. "搜索副标题": "<em>&&</em>",
  1090. "搜索链接": "href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]",
  1091. "分类url": "https://www.ksksi.com/show/{cateId}-{catePg}/area/{area}/class/{class}/by/{by}/year/{year}.html",
  1092. "分类": "电影$movie#连续剧$tv#综艺$varietyshow#动漫$cartoon#短剧$skits"
  1093. }
  1094. },
  1095. {
  1096. "key": "xbpq_高清剧场",
  1097. "name": "🥇|看高清",
  1098. "type": 3,
  1099. "api": "csp_XBPQ",
  1100. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1101. "ext": {
  1102. "副标题": "✨HD+pic-text text-right\"&&</span>",
  1103. "分类url": "https://www.kanbd.com/s/{cateId}-{area}-{by}------{catePg}---{year}.html",
  1104. "分类": "高清剧场$documentary#电影$movie#连续剧$series#动漫$anime#综艺$variety#网络短剧$skit#体育$sports",
  1105. "嗅探词": ".m3u8#.m3u8?#v3.huoshanvod.com#v3-dy-o.zjcdn#sf16-sg.larksuitecdn.com#v.kd1.qq.com#.mp4#video_mp4",
  1106. "过滤词": "/hls/#php"
  1107. }
  1108. },
  1109. {
  1110. "key": "csp_XBPQ_观影台",
  1111. "name": "🥇|观影台",
  1112. "type": 3,
  1113. "api": "csp_XBPQ",
  1114. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1115. "searchable": 1,
  1116. "quickSearch": 1,
  1117. "filterable": 1,
  1118. "ext": {
  1119. "分类url": "https://guanyingtai.com/{cateId}-{area}-{by}------{catePg}---{year}/",
  1120. "分类": "电影$pianku-dianying#电视剧$pianku-dianshiju#综艺$pianku-zongyi#动漫$pianku-dongman#福利$pianku-lunlipian",
  1121. "地区":"大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙||大陆&内地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他||空",
  1122. "数组": "class=\"stui-vodlist__box\">&&</a>",
  1123. "图片": "original=\"&&\"",
  1124. "标题": "title=\"&&\"",
  1125. "链接": "href=\"&&\"",
  1126. "嗅探词": ".m3u8",
  1127. "过滤词": "",
  1128. "副标题": "class=\"pic-text text-right\">&&</span>",
  1129. "搜索模式": "1",
  1130. "搜索url": "https://guanyingtai1.com/search-{wd}-------------/",
  1131. "搜索数组": "class=\"stui-vodlist__box\">&&</li>",
  1132. "搜索图片": "original=\"&&\"",
  1133. "搜索标题": "title=\"&&\"",
  1134. "搜索副标题": "class=\"pic-text text-right\">&&</span>",
  1135. "搜索链接": "href=\"&&\"",
  1136. "状态": "",
  1137. "导演": "导演:&&</li>",
  1138. "主演": "主演:&&</li>",
  1139. "简介": "yp_context\">&&</p>",
  1140. "线路二次截取": "class=\"tab-top&&</ul>",
  1141. "线路标题": ">&&</a>",
  1142. "播放数组": "class=\"stui-play__list&&</ul>",
  1143. "播放列表": "<a&&/a>",
  1144. "播放标题": ">&&<",
  1145. "播放链接": "href=\"&&\"",
  1146. "免嗅": "0"
  1147. }
  1148. },
  1149. {
  1150. "key": "csp_moxmi",
  1151. "name": "🥇|乐美",
  1152. "type": 1,
  1153. "api": "http://mi.moxmi.top:81/api.php/provide/vod/?ac=list",
  1154. "playUrl": "json:http://iid.moxmi.top:81/gg.php?url=",
  1155. "searchable": 1,
  1156. "quickSearch": 1,
  1157. "filterable": 1,
  1158. "jar": "https://raw.githubusercontent.com/cpu170/bf/0b1b3e305fd4ac2e206d3589cd1ca3e70cf7b28e/n/g/jars/林中的小屋.jar",
  1159. "categories": [
  1160. "电影",
  1161. "剧集",
  1162. "综艺",
  1163. "动漫",
  1164. "短剧"
  1165. ]
  1166. },
  1167. {
  1168. "key":"闹闹",
  1169. "name":"🥇|闹闹",
  1170. "type":3,
  1171. "api":"csp_Xdai",
  1172. "searchable":1,
  1173. "changeable":1,
  1174. "ext":"caHR0cDovLzExMC40Mi4zLjE5NTo4OTg5fEQ2cTdoamI4N0ZKMDlGNzd8RDZxN2hqYjg3RkowOUY3Nw",
  1175. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/qj.jar;md5;ab2b0ddad5e1f7fa6bd2b295eea6d0d5"
  1176. },
  1177. {
  1178. "key": "热播",
  1179. "name": "🥇|热播",
  1180. "type": 3,
  1181. "api": "csp_AppTT",
  1182. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/moyu.jar;md5;80d71eea61b5ed4a25481b66a9106879",
  1183. "playerType": 2,
  1184. "searchable": 1,
  1185. "quickSearch": 1,
  1186. "changeable": 1,
  1187. "ext": "AO7TcBkd8I/B5wQc4Qma+pU="
  1188. },
  1189. {
  1190. "key": "糯米",
  1191. "name": "🥇|糯米",
  1192. "type": 3,
  1193. "api": "csp_Nmyswv",
  1194. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/moyu.jar;md5;80d71eea61b5ed4a25481b66a9106879",
  1195. "timeout": 15,
  1196. "searchable": 1,
  1197. "quickSearch": 1,
  1198. "changeable": 1
  1199. },
  1200. {
  1201. "key": "萌米",
  1202. "name": "🥇|萌米",
  1203. "type": 3,
  1204. "api": "csp_AppTT",
  1205. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/moyu.jar;md5;80d71eea61b5ed4a25481b66a9106879",
  1206. "playerType": 2,
  1207. "searchable": 1,
  1208. "quickSearch": 1,
  1209. "changeable": 1,
  1210. "ext": "AO7TcBkd8Iifux0Y8Qze6tVlMg=="
  1211. },
  1212. {
  1213. "key": "五五影视",
  1214. "name": "🥇|呜呜",
  1215. "type": 3,
  1216. "api": "csp_XBPQ",
  1217. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1218. "searchable": 1,
  1219. "quickSearch": 1,
  1220. "filterable": 1,
  1221. "ext":
  1222. {
  1223. "作者": "荷城茶秀",
  1224. "站名": "55影视",
  1225. "主页url": "https://www.5555kan.com/",
  1226. "简介": "+<p class=\"col-pd\"&&</p>",
  1227. "导演": "导演:&&</p>",
  1228. "主演": "主演:&&</p>",
  1229. "线路数组": "<h3 class=\"title\">&&/h3>",
  1230. "线路标题": ">&&<",
  1231. "分类url": "https://www.5555kan.com/show/{cateId}-{area}-{by}------{catePg}---{year}.html;;ak",
  1232. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  1233. }
  1234. },
  1235. {
  1236. "key":"饺子",
  1237. "name":"🥇|饺子",
  1238. "type":3,
  1239. "api":"csp_Jiaozi",
  1240. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;eb7676582d076a5505be5f23530e4f4d",
  1241. "searchable":1,
  1242. "changeable":1
  1243. },
  1244. {
  1245. "key": "站长影视",
  1246. "name": "🥇|站長|APP",
  1247. "type": 3,
  1248. "api": "csp_AppGetApp",
  1249. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1250. "searchable": 1,
  1251. "quickSearch": 0,
  1252. "filterable": 0,
  1253. "ext": "w7TClcK8w5rDrcKYwoPCmcKkw57ClcK0wpvCnF9SwoPCmcOtw5jDj8Orw6ZValLCmMOtw6fDqsOswrRiX8KdacOcw57CrMKxw6DCqmbCnmPDpsKow6XCsMKywpRhYMKUwqfDl8Ozw7LDtGVewpPCn8Omwq3Cr8KvwrJsX8KRwqDDosKhw6rDocOqVVxSecOnw5zDrsOQw6nCpcKUUmrCm8KVwqbCm8OuwpzCoFJqwpvDjuWHv+mFoeaQn+WQllzlhpzkvYflkbDCreW/q+iov+i2vua7g+esicKNUsKlwpXCu8Oew61+wpXCqVLCs8KVw57DssOzwq3CpMKmwpHDqcOcw5vDqcOqwqzCqcKUwqPCm8KfwpzCusOfwqZ5wqZSwrPClcOew7LDs8KtwqTCpsKRw6nDnMObw6nDqsKswqnClMKjwpvDsA=="
  1254. },
  1255. {
  1256. "key": "HG影视",
  1257. "name": "🥇|HG影视|APP",
  1258. "type": 3,
  1259. "api": "csp_AppYsV2",
  1260. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1261. "searchable": 1,
  1262. "quickSearch": 1,
  1263. "filterable": 1,
  1264. "ext": "https://cs.hgyx.vip/api2/api.php/app/"
  1265. },
  1266. {
  1267. "key": "木头",
  1268. "name": "🥇|木头|App",
  1269. "type": 3,
  1270. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1271. "api": "csp_Shark",
  1272. "searchable": 1,
  1273. "quickSearch": 1,
  1274. "filterable": 1,
  1275. "ext": "saHR0cDovL21pdG8ubWlub3R2LmNuL3xhYXNzZGR3d3h4bGxzeDF4fGJic3NxZGJic3NsbDI1c3g="
  1276. },
  1277. {
  1278. "key": "雨滴",
  1279. "name": "🥇|雨滴|App",
  1280. "type": 3,
  1281. "api": "csp_Xdai",
  1282. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1283. "searchable": 1,
  1284. "quickSearch": 1,
  1285. "filterable": 1,
  1286. "ext": "jaHR0cDovL2M4dzJvdjd1NXdnMnoxbzhwMjFjLmFsaXl1bmNzLmNsaWNrfGs5bzNwMmM4YjdtM3owbzh8azlvM3AyYzhiN20zejBvOHwxMDA="
  1287. },
  1288. {
  1289. "key": "优质",
  1290. "name": "🥇|优质|App",
  1291. "type": 3,
  1292. "api": "csp_Xdai",
  1293. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1294. "searchable": 1,
  1295. "quickSearch": 1,
  1296. "filterable": 1,
  1297. "ext": "jaHR0cHM6Ly9hcGlhcHBkeXl6dHZ5eWRzcXdkeS42OC5neTo1Njg5fGR5eXp0dmFwaWFwcHl5ZHN8ZHl5enR2YXBpYXBweXlkc3wxMDA="
  1298. },
  1299. {
  1300. "key": "蝴蝶",
  1301. "name": "🥇|蝴蝶|App",
  1302. "type": 3,
  1303. "api": "csp_Hudie",
  1304. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1305. "playerType": 2,
  1306. "searchable": 1,
  1307. "quickSearch": 0,
  1308. "filterable": 1,
  1309. "ext": "eaHR0cHM6Ly9kLmRjbW92aWUudG9w"
  1310. },
  1311. {
  1312. "key": "洽洽影视",
  1313. "name": "🥇|洽洽|APP",
  1314. "type": 3,
  1315. "api": "csp_AppGZ",
  1316. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/配置中心.jar",
  1317. "searchable": 1,
  1318. "quickSearch": 0,
  1319. "filterable": 1
  1320. },
  1321. {
  1322. "key": "忍者影视",
  1323. "name": "🥇|忍者|APP",
  1324. "type": 3,
  1325. "api": "csp_AppRZ",
  1326. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/配置中心.jar",
  1327. "searchable": 1,
  1328. "quickSearch": 1,
  1329. "filterable": 1
  1330. },
  1331. {
  1332. "key":"凡人",
  1333. "name":"🥇|凡人(篩選失效,搜尋用)",
  1334. "type":3,
  1335. "api":"csp_Xdai",
  1336. "searchable":1,
  1337. "changeable":1,
  1338. "ext":"jaHR0cHM6Ly9hcGlhcHBkeXl6dHZ5eWRzcXdkeS42OC5neTo1Njg5fGR5eXp0dmFwaWFwcHl5ZHN8ZHl5enR2YXBpYXBweXlkcw",
  1339. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;eb7676582d076a5505be5f23530e4f4d"
  1340. },
  1341. {
  1342. "key": "寒思",
  1343. "name": "🥇|寒思",
  1344. "type": 3,
  1345. "api": "csp_AppRB",
  1346. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/配置中心.jar",
  1347. "searchable": 1,
  1348. "quickSearch": 1,
  1349. "filterable": 1
  1350. },
  1351. {
  1352. "key": "临渊影视",
  1353. "name": "🥇|临渊",
  1354. "type": 3,
  1355. "api": "csp_AppRZ",
  1356. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/配置中心.jar",
  1357. "searchable": 1,
  1358. "quickSearch": 1,
  1359. "filterable": 1
  1360. },
  1361. {
  1362. "key": "饺子影视",
  1363. "name": "🥇|饺子",
  1364. "type": 3,
  1365. "api": "csp_Jiaozi",
  1366. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1367. "searchable": 1,
  1368. "quickSearch": 1,
  1369. "filterable": 1
  1370. },
  1371. {
  1372. "key": "csp_Xlys",
  1373. "name": "🥇|滴滴",
  1374. "api": "csp_Xlys",
  1375. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  1376. "type": 3,
  1377. "playerType": 2
  1378. },
  1379. {
  1380. "key": "真心影视",
  1381. "name": "🥇|真心",
  1382. "type": 3,
  1383. "api": "csp_WebGZ",
  1384. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1385. "searchable": 1,
  1386. "quickSearch": 1,
  1387. "filterable": 1
  1388. },
  1389. {
  1390. "key": "快看影视",
  1391. "name": "🥇|快看",
  1392. "type": 3,
  1393. "api": "csp_Kuaikan",
  1394. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/配置中心.jar",
  1395. "searchable": 1,
  1396. "quickSearch": 1,
  1397. "filterable": 1
  1398. },
  1399. {
  1400. "key": "面包影视",
  1401. "name": "🥇|面包",
  1402. "type": 3,
  1403. "api": "csp_XBPQ",
  1404. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1405. "ext":
  1406. {
  1407. "请求头": "User-Agent$MOBILE_UA",
  1408. "编码": "UTF-8",
  1409. "分类url": "https://v.aiwule.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  1410. "分类": "电影$20#电视剧$21#动漫$23#综艺$22#短剧$47",
  1411. "简介": "简介:&&"
  1412. }
  1413. },
  1414. {
  1415. "key": "星辰xBPQ",
  1416. "name": "🥇|星辰",
  1417. "type": 3,
  1418. "api": "csp_XBPQ",
  1419. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1420. "searchable": 1,
  1421. "quickSearch": 1,
  1422. "filterable": 1,
  1423. "ext":
  1424. {
  1425. "分类url": "https://citytv.cc/tv/dianying/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}",
  1426. "分类": "电视剧$dianshiju#电影$dianying#动漫$dongman#综艺$zongyi#短剧$duanju",
  1427. "简介": "class=\"detail-sketch\">&&</span>",
  1428. "线路数组": "#playlist&&</li>",
  1429. "线路标题": ">&&</a>[排序:神马云播>阿里云播>]",
  1430. "播放标题": ">&&<"
  1431. }
  1432. },
  1433. {
  1434. "key": "567影视",
  1435. "name": "🥇|567影视",
  1436. "type": 3,
  1437. "api": "csp_XBPQ",
  1438. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar",
  1439. "searchable": 1,
  1440. "quickSearch": 1,
  1441. "filterable": 1,
  1442. "ext": {
  1443. "简介": "<div class=\"stui-pannel_bd\"&&</div>",
  1444. "分类url": "https://www.567dyy.com/list/{cateId}/area/{area}/by/{by}/class/{class}/page/{catePg}/year/{year}.html",
  1445. "分类": "电影$1#电视剧$2#动漫$4#综艺$3#短剧$5"
  1446. }
  1447. },
  1448. {
  1449. "key": "糯米弹幕",
  1450. "name": "🥇|糯米|弹幕",
  1451. "type": 3,
  1452. "api": "csp_Nmys",
  1453. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1454. "searchable": 1,
  1455. "quickSearch": 1,
  1456. "filterable": 1,
  1457. "ext": {
  1458. "danmu": true
  1459. }
  1460. },
  1461. {
  1462. "key": "文才弹幕",
  1463. "name": "🥇|文才|弹幕",
  1464. "type": 3,
  1465. "api": "csp_Jpys",
  1466. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1467. "searchable": 1,
  1468. "quickSearch": 1,
  1469. "filterable": 1,
  1470. "ext": {
  1471. "danmu": true
  1472. }
  1473. },
  1474. {
  1475. "key": "浪酷弹幕",
  1476. "name": "🥇|浪酷|弹幕",
  1477. "type": 3,
  1478. "api": "csp_TianTian",
  1479. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar",
  1480. "searchable": 1,
  1481. "quickSearch": 1,
  1482. "filterable": 1,
  1483. "ext": {
  1484. "danmu": true,
  1485. "site": "aHR0cDovL3YubGt1eXMuY24="
  1486. }
  1487. },
  1488. {
  1489. "key": "天天弹幕",
  1490. "name": "🥇|天天|弹幕",
  1491. "type": 3,
  1492. "api": "csp_TianTian",
  1493. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar",
  1494. "searchable": 1,
  1495. "quickSearch": 1,
  1496. "filterable": 1,
  1497. "ext": {
  1498. "danmu": true,
  1499. "site": "aHR0cDovL29wLnlzZHFqcy5jbg=="
  1500. }
  1501. },
  1502. {
  1503. "key": "热播弹幕",
  1504. "name": "🥇|热播|弹幕",
  1505. "type": 3,
  1506. "api": "csp_TianTian",
  1507. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar",
  1508. "searchable": 1,
  1509. "quickSearch": 1,
  1510. "filterable": 1,
  1511. "ext": {
  1512. "danmu": true,
  1513. "site": "aHR0cDovL3YucmJvdHYuY24="
  1514. }
  1515. },
  1516. {
  1517. "key": "立播弹幕",
  1518. "name": "🥇|立播|弹幕",
  1519. "type": 3,
  1520. "api": "csp_Libvio",
  1521. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  1522. "searchable": 1,
  1523. "filterable": 1,
  1524. "changeable": 1,
  1525. "ext": {
  1526. "token": "http://127.0.0.1:9978/file/TVBox/token.txt",
  1527. "cookie": "http://127.0.0.1:9978/file/TVBox/quark.txt",
  1528. "uc_cookie": "http://127.0.0.1:9978/file/TVBox/uc.txt",
  1529. "site": "https://www.libvio.cc",
  1530. "danmu": true
  1531. }
  1532. },
  1533. {
  1534. "key": "csp_Wwys",
  1535. "name": "🥈|理想",
  1536. "type": 3,
  1537. "playerType": 2,
  1538. "changeable": 0,
  1539. "api": "csp_Wwys",
  1540. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/csp_JPYY.jar",
  1541. "ext": "https://www.wwgz.cn/"
  1542. },
  1543. {
  1544. "key": "hipy_js_小宝影院",
  1545. "name": "🥈|小宝",
  1546. "type": 3,
  1547. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  1548. "searchable": 1,
  1549. "quickSearch": 1,
  1550. "filterable": 1,
  1551. "order_num": 0,
  1552. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/小宝影院.js"
  1553. },
  1554. {
  1555. "key": "墨白影视",
  1556. "name": "🥈|墨白",
  1557. "type": 1,
  1558. "api": "https://nm.xxxc137.top/api.php/provide/vod/",
  1559. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1560. "searchable": 1,
  1561. "quickSearch": 1
  1562. },
  1563. {
  1564. "key": "zj",
  1565. "name": "🥈|8K影院",
  1566. "type": 3,
  1567. "api": "csp_XBPQ",
  1568. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1569. "ext": {
  1570. "分类url": "https://www.8q8k.com/vodshow/{cateId}--------{catePg}---.html",
  1571. "分类": "电影$dy#电视剧$dsj#综艺$zy#动漫$dm"
  1572. }
  1573. },
  1574. {
  1575. "key": "csp_SuBaiBai_FM",
  1576. "name": "🥈|素白白",
  1577. "type": 3,
  1578. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  1579. "api": "csp_SuBaiBai",
  1580. "ext": "http://subaibai.com"
  1581. },
  1582. {
  1583. "key": "csp_nyys",
  1584. "name": "🥈|纽约影院",
  1585. "type": 3,
  1586. "api": "csp_XBPQ",
  1587. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1588. "searchable": 1,
  1589. "quickSearch": 1,
  1590. "filterable": 1,
  1591. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/紐約影院.json"
  1592. },
  1593. {
  1594. "key": "zy_闪电资源",
  1595. "name": "🥈|闪电资源",
  1596. "type": 1,
  1597. "api": "https://xsd.sdzyapi.com/api.php/provide/vod/",
  1598. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  1599. "searchable": 1,
  1600. "quickSearch": 1,
  1601. "playerType": 2,
  1602. "categories": [
  1603. "国产剧" , "韩国剧" , "国产动漫", "欧美剧" , "香港剧" , "台湾剧" , "日剧" , "海外剧" ,
  1604. "日本动漫", "欧美动漫", "港台动漫", "海外动漫", "动作片" , "喜剧片" , "科幻片" , "恐怖片" , "爱情片" ,
  1605. "剧情片" , "战争片" , "纪录片" , "犯罪片" , "其他片" , "悬疑片" , "奇幻片" , "动画片" , "大陆综艺",
  1606. "港台综艺", "日韩综艺", "欧美综艺"
  1607. ]
  1608. },
  1609. {
  1610. "key": "csp_XBiu廠長影院",
  1611. "name": "🥈|廠長影院|(網頁死)",
  1612. "type": 3,
  1613. "api": "csp_XBPQ",
  1614. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1615. "searchable": 1,
  1616. "quickSearch": 1,
  1617. "filterable": 1,
  1618. "ext": {
  1619. "分类url": "https://www.tz2yj.com/list/{cateId}___{year}__addtime_{catePg}.html",
  1620. "分类": "電視劇$dianshiju#電影$dianying#動漫$dongman#綜藝$zongyi#微電影$weidianying"
  1621. }
  1622. },
  1623. {
  1624. "key": "csp_奇優影院(新)",
  1625. "name": "🥈|奇優影院(新)",
  1626. "type": 3,
  1627. "api": "csp_XBPQ",
  1628. "searchable": 1,
  1629. "quickSearch": 1,
  1630. "filterable": 1,
  1631. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1632. "ext": {
  1633. "分类url": "https://www.qyvod.com/qyshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  1634. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#纪录片$21"
  1635. }
  1636. },
  1637. {
  1638. "key": "hipy_js_低端",
  1639. "name": "🥈|低端",
  1640. "type": 3,
  1641. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  1642. "searchable": 1,
  1643. "quickSearch": 1,
  1644. "filterable": 1,
  1645. "order_num": 0,
  1646. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/低端.js"
  1647. },
  1648. {
  1649. "key": "追剧很卷",
  1650. "name": "🥈|追剧資源",
  1651. "type": 3,
  1652. "api": "csp_XBPQ",
  1653. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1654. "searchable": 1,
  1655. "quickSearch": 1,
  1656. "filterable": 1,
  1657. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/追劇資源.json"
  1658. },
  1659. {
  1660. "key": "vs資源",
  1661. "name": "🥈|vs資源",
  1662. "type": 3,
  1663. "api": "csp_XBPQ",
  1664. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1665. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/VS資源.json"
  1666. },
  1667. {
  1668. "key": "zj",
  1669. "name": "🥈|8K影院",
  1670. "type": 3,
  1671. "api": "csp_XBPQ",
  1672. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1673. "ext": {
  1674. "分类url": "https://www.8q8k.com/vodshow/{cateId}--------{catePg}---.html",
  1675. "分类": "电影$dy#电视剧$dsj#综艺$zy#动漫$dm"
  1676. }
  1677. },
  1678. {
  1679. "key": "VidHub",
  1680. "name": "🥈|VidHub",
  1681. "type": 3,
  1682. "api": "csp_XBPQ",
  1683. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1684. "searchable": 1,
  1685. "quickSearch": 1,
  1686. "filterable": 1,
  1687. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/vidhub.json"
  1688. },
  1689. {
  1690. "key": "csp_XBiuNIVODvip",
  1691. "name": "🥈|泥視頻(VIP)",
  1692. "type": 3,
  1693. "api": "csp_XBPQ",
  1694. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1695. "searchable": 1,
  1696. "quickSearch": 1,
  1697. "filterable": 1,
  1698. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/泥視頻VIP.json"
  1699. },
  1700. {
  1701. "key": "csp_XBiuNIVOD1",
  1702. "name": "🥈|泥視頻(粉絲復活)",
  1703. "type": 3,
  1704. "api": "csp_XBPQ",
  1705. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1706. "searchable": 1,
  1707. "quickSearch": 1,
  1708. "filterable": 1,
  1709. "ext": {
  1710. "简介": "简介:&&</div>",
  1711. "分类url": "https://nivodi.com/index.php/vod/show/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  1712. "分类": "電影$1#電視劇$2#動漫$48#綜藝$3#紀錄片$21"
  1713. }
  1714. },
  1715. {
  1716. "key": "csp_XBiuMomoVod",
  1717. "name": "🥈|MomoVod",
  1718. "type": 3,
  1719. "api": "csp_XBPQ",
  1720. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1721. "searchable": 1,
  1722. "quickSearch": 1,
  1723. "filterable": 1,
  1724. "ext": {
  1725. "分类url": "https://momovod.app/show/{cateId}/area/{area}/by/{by}/page/{catePg}/year/{year}.html",
  1726. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  1727. "类型": "动作片&喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#紀錄片$20#微電影$21#動畫片$22||国产剧$13#港剧$14#台剧$15#日剧$16#韩剧$23#美剧$24#海外剧$25||内地综艺$36#港台综艺$34#日韩综艺$35#欧美综艺$37||国产动漫$31#日韩动漫$30#港台动漫$29#欧美动漫$32#海外动漫$33"
  1728. }
  1729. },
  1730. {
  1731. "key": "csp_XBiuMiniJJ",
  1732. "name": "🥈|小雞暴走影院",
  1733. "type": 3,
  1734. "api": "csp_XBPQ",
  1735. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1736. "searchable": 1,
  1737. "quickSearch": 1,
  1738. "filterable": 1,
  1739. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/小雞暴走影院.json"
  1740. },
  1741. {
  1742. "key": "meiyida",
  1743. "name": "🥈|美益達影视",
  1744. "type": 3,
  1745. "api": "csp_XBPQ",
  1746. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1747. "ext":
  1748. {
  1749. "分类url": "https://www.mydys1.com/vodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  1750. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4短劇5"
  1751. }
  1752. },
  1753. {
  1754. "key": "csp_XBiu播王",
  1755. "name": "🥈|播王|(XB)",
  1756. "type": 3,
  1757. "api": "csp_XBPQ",
  1758. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1759. "searchable": 1,
  1760. "quickSearch": 1,
  1761. "filterable": 1,
  1762. "ext": {
  1763. "分类url": "https://bowang.su/show/{cateId}/area/{area}/by/{by}/class/{class}/page/{catePg}/year/{year}.html",
  1764. "分类": "電影$1#電視劇$2#動漫$3#綜藝$4",
  1765. "地区": "大陸&香港&台灣&美國&法國&英國&日本&韓國&德國&泰國&印度&意大利&西班牙&加拿大&其他"
  1766. }
  1767. },
  1768. {
  1769. "key": "csp_XBiu小鴨影音TV",
  1770. "name": "🥈|小鴨影音|TV",
  1771. "type": 3,
  1772. "api": "csp_XBPQ",
  1773. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1774. "searchable": 1,
  1775. "quickSearch": 1,
  1776. "filterable": 1,
  1777. "ext": {
  1778. "分类url": "https://777tv.ai/vod/show/area/{area}/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html",
  1779. "分类": "電視劇$2#電影$1#動漫$30#綜藝$29",
  1780. "地区": "美國&歐美&韓國&國大中陸&大陸&內地&日本&臺灣&香港&泰國&英國&新加坡&其他"
  1781. }
  1782. },
  1783. {
  1784. "key": "csp_劇迷_PttPlay",
  1785. "name": "🥈|劇迷|PTTPLAY",
  1786. "type": 3,
  1787. "api": "csp_XBPQ",
  1788. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1789. "searchable": 1,
  1790. "quickSearch": 1,
  1791. "filterable": 1,
  1792. "ext": {
  1793. "线路数组": "class=\"playlist-mobile playlist layout-box clearfix\">&&</div>",
  1794. "简介": "details-content-all\">&&</span>",
  1795. "分类url": "https://pttplay.co/show/{cateId}/page/{catePg}/year/{year}.html",
  1796. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  1797. }
  1798. },
  1799. {
  1800. "key":"csp_剧迷_jagcys",
  1801. "name":"🥈|劇迷|jagcys",
  1802. "type":3,
  1803. "api":"csp_XBPQ",
  1804. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1805. "searchable":1,
  1806. "quickSearch":1,
  1807. "filterable":1,
  1808. "ext":
  1809. {
  1810. "分类url":"https://www.jagcys.com/vodshow/{cateId}/area/{area}/page/{catePg}/year/{year}.html",
  1811. "分类":"电影$dianying#电视剧$dsj#动漫$dongman#综艺$zongyi#短劇$remenduanju",
  1812. "类型": "喜剧片$xijupian#动作片$dongzuopian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#剧情片$juqingpian#战争片$zhanzhengpian#悬疑片$xuanyipian#犯罪片$fanzuipian#冒险片$maoxianpian#动画片$donghuapian#惊悚片$jingsongpian#奇幻片$qihuanpian#纪录片$jilupian||国产剧$guochanju#欧美剧$oumeiju#日剧$riju#韩剧$hanju#港剧$gangju#台剧$taiju#泰剧$taiju#海外剧$haiwaiju#爽文短剧$shuangwenduanju||空||国产动漫$guochandongman#日韩动漫$rihandongman#欧美动漫$oumeidongman#港台动漫$gangtaidongman#海外动漫$haiwaidongman||空",
  1813. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||空||内地&港台&日韩&欧美||国产&日本&欧美&其他||空"
  1814. }
  1815. },
  1816. {
  1817. "key": "csp_楓林網",
  1818. "name": "🥈|楓林網|(XB)",
  1819. "type": 3,
  1820. "api": "csp_XBPQ",
  1821. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1822. "searchable": 1,
  1823. "quickSearch": 1,
  1824. "filterable": 1,
  1825. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/楓林網(XB).json"
  1826. },
  1827. {
  1828. "key": "csp_Imaple8TV",
  1829. "name": "🥈|楓林網|TV(XB)",
  1830. "type": 3,
  1831. "api": "csp_XBPQ",
  1832. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1833. "searchable": 1,
  1834. "quickSearch": 1,
  1835. "filterable": 1,
  1836. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/楓林網TV(XB).json"
  1837. },
  1838. {
  1839. "key": "csp_JUMITV",
  1840. "name": "🥈|劇迷|TV(XB)",
  1841. "type": 3,
  1842. "api": "csp_XBPQ",
  1843. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1844. "searchable": 1,
  1845. "quickSearch": 1,
  1846. "filterable": 1,
  1847. "ext": {
  1848. "分类url": "https://jumi.tv/show/{cateId}/area/{area}/by/{by}/page/{catePg}/year/{year}.html",
  1849. "分类":"電影$1#電視劇$2#綜藝$3#動漫$4",
  1850. "类型":"動作片$6#喜劇片$7#愛情片$8#科幻片$9#恐怖片$10#劇情片$11#戰爭片$12#紀錄片$20||陸劇$13#港劇$14#台劇$22#日劇$15#韓劇$23#美劇$16#海外劇$24||空||空",
  1851. "地区":"大陸&香港&台灣&美國&法國&英國&日本&韓國&德國&泰國&印度&意大利&西班牙&加拿大||大陸&韓國&香港&台灣&日本&美國&泰國&英國&新加坡&其他||大陸&香港&台灣&美國&法國&英國&日本&韓國&德國&泰國&印度&意大利&西班牙&加拿大&其他||大陸&香港&台灣&美國&法國&英國&日本&韓國&德國&泰國&印度&意大利&西班牙&加拿大&其他"
  1852. }
  1853. },
  1854. {
  1855. "key": "csp_GimyCC",
  1856. "name": "🥈|劇迷|CC(XB)",
  1857. "type": 3,
  1858. "api": "csp_XBPQ",
  1859. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1860. "searchable": 1,
  1861. "quickSearch": 1,
  1862. "filterable": 1,
  1863. "ext": {
  1864. "分类url": "https://gimy.cc/filter/{cateId}---time/page/{catePg}.html",
  1865. "分类" : "電視劇$2#電影$1#動漫$4#綜藝$3"
  1866. }
  1867. },
  1868. {
  1869. "key": "csp_GimyTW",
  1870. "name": "🥈|劇迷|TW(XB)",
  1871. "type": 3,
  1872. "api": "csp_XBPQ",
  1873. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1874. "searchable": 1,
  1875. "quickSearch": 1,
  1876. "filterable": 1,
  1877. "ext": {
  1878. "分类url": "https://gimytw.cc/{cateId}/?country={area}&year={year}&order_by=-aired&page={catePg}",
  1879. "分类": "電視劇$drama#電影$movie#動漫$anime#綜藝$variety",
  1880. "地区":"大陸$cn#美國$us#韓國$kr#日本$jp#臺灣$tw#香港$hk#英國$gb||大陸$cn#美國$us#韓國$kr#日本$jp#臺灣$tw#香港$hk#英國$gb#其他$other||大陸$cn#韓國$kr#臺灣$tw#歐美$west#日本$jp||大陸$cn#韓國$kr#歐美$west#日本$jp"
  1881. }
  1882. },
  1883. {
  1884. "key": "drpyS_皮皮虾[优]",
  1885. "name": "🥈|皮皮虾|道長源",
  1886. "type": 4,
  1887. "api": "https://drpy-node-mauve.vercel.app/api/皮皮虾[优]",
  1888. "searchable": 2,
  1889. "filterable": 1,
  1890. "quickSearch": 0,
  1891. "ext": ""
  1892. },
  1893. {
  1894. "key": "drpyS_人人视频",
  1895. "name": "🥈|人人视频|道長源",
  1896. "type": 4,
  1897. "api": "https://drpy-node-mauve.vercel.app/api/人人视频",
  1898. "searchable": 1,
  1899. "filterable": 1,
  1900. "quickSearch": 0,
  1901. "ext": ""
  1902. },
  1903. {
  1904. "key": "drpyS_素白白",
  1905. "name": "🥈|素白白|道長源",
  1906. "type": 4,
  1907. "api": "https://drpy-node-mauve.vercel.app/api/素白白",
  1908. "searchable": 2,
  1909. "filterable": 1,
  1910. "quickSearch": 0,
  1911. "ext": ""
  1912. },
  1913. {
  1914. "key": "drpyS_雪糕TV",
  1915. "name": "🥈|雪糕TV|道長源",
  1916. "type": 4,
  1917. "api": "https://drpy-node-mauve.vercel.app/api/雪糕TV",
  1918. "searchable": 2,
  1919. "filterable": 0,
  1920. "quickSearch": 0,
  1921. "ext": ""
  1922. },
  1923. {
  1924. "key": "bilimd",
  1925. "name": "🥈|bilbil",
  1926. "type": 3,
  1927. "api": "csp_Bilimd",
  1928. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xmbjm.jar",
  1929. "searchable": 1,
  1930. "quickSearch": 0,
  1931. "filterable": 1,
  1932. "style": {"type": "rect","ratio": 1.433},
  1933. "ext": {"cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt"},
  1934. "timeout": 10
  1935. },
  1936. {
  1937. "key": "bili",
  1938. "name": "🥈|bilbil合集",
  1939. "type": 3,
  1940. "api": "csp_Bili",
  1941. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xmbjm.jar",
  1942. "searchable": 1,
  1943. "quickSearch": 0,
  1944. "filterable": 1,
  1945. "style": {"type": "rect","ratio": 1.433},
  1946. "ext":
  1947. {
  1948. "cookie": "http://127.0.0.1:9978/file/tvbox/bili_cookie.txt",
  1949. "json": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/哔哩合集.json"
  1950. },
  1951. "timeout": 20
  1952. },
  1953. {
  1954. "key": "哔哩直播",
  1955. "name": "🥈|bilbile直播",
  1956. "type": 3,
  1957. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  1958. "searchable": 1,
  1959. "quickSearch": 0,
  1960. "filterable": 1,
  1961. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/blzb.js"
  1962. },
  1963. {
  1964. "key": "py_BaHaoTV",
  1965. "name": "🥉|八号影院|沐辰",
  1966. "type": 4,
  1967. "api": "https://py.doube.eu.org/spider?site=BaHaoTV",
  1968. "searchable": 1,
  1969. "quickSearch": 0,
  1970. "filterable": 0,
  1971. "changeable": 1
  1972. },
  1973. {
  1974. "key": "drpyS_专享影视",
  1975. "name": "🥉|专享影视",
  1976. "type": 4,
  1977. "api": "http://drpys.aera.eu.org/api/专享影视",
  1978. "searchable": 1,
  1979. "filterable": 0,
  1980. "quickSearch": 0,
  1981. "ext": ""
  1982. },
  1983. {
  1984. "key": "csp_奇侠",
  1985. "name": "🥉|奇侠",
  1986. "type": 3,
  1987. "api": "csp_XBPQ",
  1988. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  1989. "searchable": 1,
  1990. "quickSearch": 1,
  1991. "filterable": 1,
  1992. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/奇侠.json"
  1993. },
  1994. {
  1995. "key": "csp_CN影院",
  1996. "name": "🥉|CN影院(超慢,但播放OK)",
  1997. "type": 3,
  1998. "api": "csp_XBPQ",
  1999. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2000. "searchable": 1,
  2001. "quickSearch": 1,
  2002. "filterable": 1,
  2003. "ext": {
  2004. "分类url": "https://cnys.tv/vodshow-{cateId}/area/{area}/by/{by}/page/{catePg}/year/{year}.html",
  2005. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  2006. "地区": "内地&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||内地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他"
  2007. }
  2008. },
  2009. {
  2010. "key": "hipy_js_无忧影视",
  2011. "name": "🥉|无忧",
  2012. "type": 3,
  2013. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  2014. "searchable": 1,
  2015. "quickSearch": 1,
  2016. "filterable": 1,
  2017. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/无忧影视.js"
  2018. },
  2019. {
  2020. "key": "csp_XBiu考拉TV",
  2021. "name": "🥉|考拉TV|廣告多",
  2022. "type": 3,
  2023. "api": "csp_XBPQ",
  2024. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2025. "searchable": 1,
  2026. "quickSearch": 1,
  2027. "filterable": 1,
  2028. "ext": {
  2029. "分类url": "https://www.ikaola.tv/vodshow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  2030. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#動畫片$24#紀錄片$27"
  2031. }
  2032. },
  2033. {
  2034. "key": "csp_xbpq_映播",
  2035. "name": "🥉|映播(不要選最前面的全部)",
  2036. "type": 3,
  2037. "api": "csp_XBPQ",
  2038. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2039. "playerType": 1,
  2040. "searchable": 1,
  2041. "quickSearch": 1,
  2042. "filterable": 1,
  2043. "ext": {
  2044. "数组": "public-list-div public-list-bj&&</div>",
  2045. "图片": "data-original=\"&&\"",
  2046. "标题": "alt=\"&&\"",
  2047. "副标题": "public-list-prb hide ft2\">&&<",
  2048. "链接": "href=\"&&\"",
  2049. "搜索url": "https://www.ingbo.tv/search/index.html?keyword={wd}&page={pg}",
  2050. "搜索图片": "data-original=\"&&\"",
  2051. "搜索标题": "alt=\"&&\"",
  2052. "搜索链接": "href=\"&&\"",
  2053. "影片类型": "<span>&&</span>",
  2054. "导演": "导演:</strong>&&</div>",
  2055. "主演": "演员:</strong>&&</div>",
  2056. "简介": "描述:</strong>&&</div>",
  2057. "线路数组": "<a class=\"radius1&&</a>",
  2058. "线路标题": "title=\"&&\"",
  2059. "播放数组": "<ul class=\"anthology-list-play&&</ul>",
  2060. "播放列表": "<li class&&</li>",
  2061. "播放标题": "class=\"hide\">&&<",
  2062. "播放链接": "href=\"&&\"",
  2063. "分类url": "https://www.ingbo.tv/vod/list/{catePg}/{cateId}/{class}/{year}/{area}/0/0/0",
  2064. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  2065. "剧情": "全部$0#动作片$9#喜剧片$10#爱情片$11#恐怖片$12#剧情片$13#科幻片$14#惊悚片$15#奇幻片$16#动画片$17#悬疑片$18#冒险片$19#纪录片$20#战争片$21#其他片$39||全部$0#国产剧$22#香港剧$23#台湾剧$24#欧美剧$25#日本剧$26#韩国剧$27#泰国剧$28#其他剧$29||全部$0#大陆综艺$30#港台综艺$31#日韩综艺$32#欧美综艺$33#其他综艺$34||全部$0#国产动漫$35#日韩动漫$36#欧美动漫$37#其他动漫$38",
  2066. "地区":"全部$0#大陆$23#香港$24#台湾$25#澳门$26#韩国$27#日本$28#泰国$29#新马$30#印度$31#俄罗斯$36#美国$32#英国$33#德国$34#法国$35#巴西$37#加拿大$38#意大利$39#西班牙$40#澳大利亚$41",
  2067. "年份":"全部$0#2024$3#2023$4#2022$5#2021$6#2020$7#2019$8#2018$9#2017$10#2016$11#2015$12#2014$13#2013$14#2012$15#2011$16#2010$17#00年代$18#90年代$19#80年代$20#更早$21"
  2068. }
  2069. },
  2070. {
  2071. "key": "csp_94i影城",
  2072. "name": "🥉|94i影城|(XB)",
  2073. "type": 3,
  2074. "api": "csp_XBPQ",
  2075. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2076. "searchable": 1,
  2077. "quickSearch": 1,
  2078. "filterable": 1,
  2079. "ext": {
  2080. "分类url": "https://94itv.app/vod-show-area-{area}-by-{by}-id-{cateId}-page-{catePg}-year-{year}.html",
  2081. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  2082. "地区":"美國&台灣&大陸&香港&日本&韓國&法國&英國&德國&泰國&印度&意大利&西班牙&俄羅斯&其他||台灣&韓國&日本&大陸&香港&美國&法國&英國&泰國&其他||大陸&香港&台灣&美國&日本&韓國||大陸&香港&台灣&美國&日本&韓國"
  2083. }
  2084. },
  2085. {
  2086. "key": "csp_99i影城",
  2087. "name": "🥉|99i影城|(XB)",
  2088. "type": 3,
  2089. "api": "csp_XBPQ",
  2090. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2091. "searchable": 1,
  2092. "quickSearch": 1,
  2093. "filterable": 1,
  2094. "ext": {
  2095. "分类url": "https://99itv.net/show/{cateId}-{area}-{by}------{catePg}---{year}.html",
  2096. "分类": "電影$1movie#電視劇$drama#綜藝$variety#動漫$anime",
  2097. "地区": "美國&台灣&大陸&香港&日本&韓國&法國&英國&德國&泰國&印度&意大利&西班牙&俄羅斯&其他||台灣&韓國&日本&大陸&香港&美國&法國&英國&泰國&其他||大陸&香港&台灣&美國&日本&韓國||大陸&香港&台灣&美國&日本&韓國"
  2098. }
  2099. },
  2100. {
  2101. "key": "csp_99i影城CDN",
  2102. "name": "🥉|99i影城|CDN(XB)",
  2103. "type": 3,
  2104. "api": "csp_XBPQ",
  2105. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2106. "searchable": 1,
  2107. "quickSearch": 1,
  2108. "filterable": 1,
  2109. "ext": {
  2110. "分类url": "https://cdn.99itv.net/show/{cateId}-{area}-{by}------{catePg}---{year}.html",
  2111. "分类": "電影$movie#電視劇$drama#綜藝$variety#動漫$anime",
  2112. "地区": "美國&台灣&大陸&香港&日本&韓國&法國&英國&德國&泰國&印度&意大利&西班牙&俄羅斯&其他||台灣&韓國&日本&大陸&香港&美國&法國&英國&泰國&其他||大陸&香港&台灣&美國&日本&韓國||大陸&香港&台灣&美國&日本&韓國"
  2113. }
  2114. },
  2115. {
  2116. "key": "csp_唐人街影院COM",
  2117. "name": "🥉|唐人街影院COM(XB)",
  2118. "type": 3,
  2119. "api": "csp_XBPQ",
  2120. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2121. "searchable": 1,
  2122. "quickSearch": 1,
  2123. "filterable": 1,
  2124. "ext": {
  2125. "简介": "+display:none;\">&&</span>",
  2126. "分类url": "https://www.trjvod.com/index.php/vod/show/area/{area}/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html",
  2127. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4#短劇$53",
  2128. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||内地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他||空"
  2129. }
  2130. },
  2131. {
  2132. "key": "csp_唐人街影视",
  2133. "name": "🥉|唐人街影视FILM(XB)",
  2134. "type": 3,
  2135. "api": "csp_XBPQ",
  2136. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2137. "searchable": 1,
  2138. "quickSearch": 1,
  2139. "filterable": 1,
  2140. "ext": {
  2141. "简介": "+hl-col-xs-12 blurb\">&&</li>",
  2142. "分类url": "https://www.chinatownfilm.com/vodshow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  2143. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  2144. "地区": "大陆&香港&台湾&欧美&日本&韩国&新马&泰国&其它||大陆&韩国&香港&台湾&日本&欧美&新马&泰国&其它||大陆&韩国&香港&台湾&日本&欧美&泰国&其它||大陆&韩国&香港&台湾&日本&欧美&其它"
  2145. }
  2146. },
  2147. {
  2148. "key": "csp_YLSP",
  2149. "name": "🥉|永樂影視",
  2150. "type": 3,
  2151. "api": "csp_XBPQ",
  2152. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2153. "searchable": 1,
  2154. "quickSearch": 1,
  2155. "filterable": 1,
  2156. "ext": {
  2157. "简介": "video-info-item video-info-content vod_content\">&&</span>",
  2158. "分类url": "https://ylsp.tv/vodshow/{cateId}-{area}-{by}------{cateIPg}---{year}/",
  2159. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  2160. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他"
  2161. }
  2162. },
  2163. {
  2164. "key": "csp_神馬影院",
  2165. "name": "🥉|神馬影院(連續劇混短劇)",
  2166. "type": 3,
  2167. "api": "csp_XBPQ",
  2168. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2169. "searchable": 1,
  2170. "quickSearch": 1,
  2171. "filterable": 1,
  2172. "ext": {
  2173. "简介": "module-info-introduction-content\">&&</div>",
  2174. "分类url": "https://www.smyy93.com/vodshow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  2175. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4#紀錄片$5",
  2176. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||大陆&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他||空"
  2177. }
  2178. },
  2179. {
  2180. "key": "csp_XBiuSMYYvip",
  2181. "name": "🥉|神馬電影網",
  2182. "type": 3,
  2183. "api": "csp_XBPQ",
  2184. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2185. "searchable": 1,
  2186. "quickSearch": 1,
  2187. "filterable": 1,
  2188. "ext": {
  2189. "分类url": "https://v.shenmayy.vip/shenmashow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  2190. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  2191. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大||大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&越南||内地&港台&日韩&欧美||大陆&美国&日本&台湾"
  2192. }
  2193. },
  2194. {
  2195. "key": "csp_多瑙影視海外",
  2196. "name": "🥉|多瑙影視(XB)",
  2197. "type": 3,
  2198. "api": "csp_XBPQ",
  2199. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2200. "searchable": 1,
  2201. "quickSearch": 1,
  2202. "filterable": 1,
  2203. "ext": {
  2204. "分类url": "https://t.duonaovod.com/index.php/vod/show/area/{area}/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  2205. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4#短劇$60",
  2206. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||內地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他||空"
  2207. }
  2208. },
  2209. {
  2210. "key": "csp_多瑙影視",
  2211. "name": "🥉|多瑙影視(org)",
  2212. "type": 3,
  2213. "api": "csp_XBPQ",
  2214. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2215. "searchable": 1,
  2216. "quickSearch": 1,
  2217. "filterable": 1,
  2218. "ext": {
  2219. "分类url": "https://www.dnvods.com/index.php/vod/show/area/{area}/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  2220. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#短劇$60",
  2221. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||內地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他||空"
  2222. }
  2223. },
  2224. {
  2225. "key": "csp_XBiuKuyaNet",
  2226. "name": "🥉|酷亞影院(NET)",
  2227. "type": 3,
  2228. "api": "csp_XBPQ",
  2229. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2230. "searchable": 1,
  2231. "quickSearch": 1,
  2232. "filterable": 1,
  2233. "ext": {
  2234. "分类url": "https://kuyatv.net/vodshow/{cateId}/area/{area}/by/{by}/page/{catePg}/year/{year}/",
  2235. "分类": "電影$movies#電視劇$tvshows#綜藝$shows#動漫$animation#短劇$short-drama#紀錄片$documentary",
  2236. "地区": "大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙||內地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||国产&日本&欧美&其他||空||空",
  2237. "简介": "display: none;\">&&</span>"
  2238. }
  2239. },
  2240. {
  2241. "key":"csp_獨播庫",
  2242. "name":"🥉|獨播庫(偽站)",
  2243. "type":3,
  2244. "api":"csp_XBPQ",
  2245. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2246. "searchable":1,
  2247. "quickSearch":1,
  2248. "filterable":1,
  2249. "ext":
  2250. {
  2251. "图片":"data-original=\"&&\"",
  2252. "标题":"title=\"&&\"",
  2253. "简介":"class=\"sketch content\"&&</span>",
  2254. "线路数组":"class=\"myui-panel__head active&&</div>",
  2255. "线路标题":"class=\"title titlego\">&&</h3",
  2256. "分类url":"https://www.dubokuz.com/vodtype/{cateId}.html?year={year}&country={area}&genre={class}&page={catePg}",
  2257. "分类":"电影$movie#剧集$tv#综艺$show#动漫$anime",
  2258. "类型":"空||陸劇$tv-cn#日韓劇$tv-krjp#英美劇$tv-usgb#港台劇$tv-twhk||空||空",
  2259. "剧情":"劇情$ju-qing#喜劇$xi-ju#愛情$ai-qing#動作$dong-zuo#科幻$ke-huan#恐怖$kong-bu#戰爭$zhan-zheng||悬疑$xuan-yi#科幻$ke-huan#爱情$ai-qing#古装$gu-zhuang#战争$zhan-zheng#青春$qing-chun#喜剧$xi-ju#家庭$jia-ting#犯罪$fan-zui#奇幻$qi-huan#剧情$ju-qing#动作$dong-zuo#历史$li-shi#搞笑$gao-xiao#推理$tui-li#人性$ren-xing||真人秀$zhen-ren-xiu#選秀$xuan-xiu#音樂$yin-le#美食$mei-shi#旅行$lv-xing#脫口秀$tuo-kou-xiu#搞笑$gao-xiao#文化$wen-hua#歌舞$ge-wu||空",
  2260. "地区":"大陸$cn#韓國$kr#日本$jp#美國$us#英國$gb#台灣$tw#香港$hk||空||內地$cn#日韓$krjp#港台$hktw#歐美$usgb||日本$jp#國產$cn#歐美$usgb",
  2261. "年份":"2025&2024&2023&2022&2021&2020&2019&2018&2017&2016&2015&2014&2013&2012&2011&2010"
  2262. }
  2263. },
  2264. {
  2265. "key": "csp_555电影",
  2266. "name": "🥉|555",
  2267. "type": 3,
  2268. "api": "csp_XBPQ",
  2269. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2270. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/555電影.json"
  2271. },
  2272. {
  2273. "key": "csp_Bttoo",
  2274. "name": "🥉|两个BT|雷蒙",
  2275. "type": 3,
  2276. "api": "csp_Bttwoo",
  2277. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  2278. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  2279. "searchable": 1,
  2280. "quickSearch": 1,
  2281. "changeable": 1
  2282. },
  2283. {
  2284. "key": "csp_Uvod",
  2285. "name": "🥉|优视频|雷蒙",
  2286. "type": 3,
  2287. "api": "csp_Uvod",
  2288. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  2289. "searchable": 1,
  2290. "quickSearch": 1,
  2291. "changeable": 1
  2292. },
  2293. {
  2294. "key": "csp_PTT",
  2295. "name": "🥉|PTT|雷蒙",
  2296. "type": 3,
  2297. "api": "csp_PTT",
  2298. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  2299. "searchable": 1,
  2300. "quickSearch": 1,
  2301. "filterable": 1
  2302. },
  2303. {
  2304. "key": "csp_Nmvod_QJ",
  2305. "name": "🥉|柠檬|雷蒙",
  2306. "type": 3,
  2307. "api": "csp_Nmvod",
  2308. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  2309. "playerType": 2,
  2310. "ext": "eaHR0cHM6Ly92aXAud3dnei5jbjo1MjAwL25tcGxheS93ZWJjbG91ZC9yZWxheS5waHA/dXJsPQ=="
  2311. },
  2312. {
  2313. "key": "csp_Hudie_QJ",
  2314. "name": "🥉|蝴蝶|雷蒙",
  2315. "type": 3,
  2316. "api": "csp_Hudie",
  2317. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/lem0118.jar",
  2318. "playerType": 2,
  2319. "ext": "eaHR0cHM6Ly9kLmRjbW92aWUudG9w"
  2320. },
  2321. //XBPQ_自建站源專區
  2322. {
  2323. "key": "csp_Jianpian",
  2324. "name": "荐片",
  2325. "type": 3,
  2326. "api": "csp_Jianpian",
  2327. "searchable": 1,
  2328. "quickSearch": 1,
  2329. "filterable": 1,
  2330. "jar": "https://jihulab.com/Nostalgia/TVbox/-/raw/master/Yoursmile.jar;md5;C6BB658C79DBF1B220A5004B3FB05326",
  2331. "ext": "https://github.moeyy.xyz/https://raw.githubusercontent.com/yoursmile66/TVBox/main/sub/jianpian.json"
  2332. },
  2333. {
  2334. "key": "贱贱",
  2335. "name": "🎥|贱贱",
  2336. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  2337. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  2338. "playerType": 2,
  2339. "type": 3,
  2340. "searchable": 1,
  2341. "quickSearch": 1,
  2342. "changeable": 1,
  2343. "api": "https://gitlab.com/fantaiying/ext/-/raw/main/drpy2.min.js",
  2344. "ext": "https://gitlab.com/fantaiying/ext/-/raw/main/jp.js"
  2345. },
  2346. {
  2347. "key": "CSP_理理影院",
  2348. "name": "🎥|理理",
  2349. "type": 3,
  2350. "api": "csp_XBPQ",
  2351. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2352. "searchable": 1,
  2353. "quickSearch": 1,
  2354. "filterable": 1,
  2355. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/理理影院.json"
  2356. },
  2357. {
  2358. "key": "csp_韩迷TV",
  2359. "name": "🎥|韩迷TV",
  2360. "type": 3,
  2361. "api": "csp_XBPQ",
  2362. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2363. "searchable": 1,
  2364. "quickSearch": 1,
  2365. "filterable": 1,
  2366. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/韓迷TV.json"
  2367. },
  2368. {
  2369. "key": "xbpq_龙影视",
  2370. "name": "🎥|龙影视",
  2371. "type": 3,
  2372. "api": "csp_XBPQ",
  2373. "jar": "https://gh.llkk.cc/https://raw.githubusercontent.com/gggwang/gggdeng/master/JAR/xmbjm.jar",
  2374. "searchable": 1,
  2375. "quickSearch": 1,
  2376. "filterable": 1,
  2377. "changeable": 1,
  2378. "ext": {
  2379. "主页url": "http://103.242.3.90:565/",
  2380. "请求头": "User-Agent$Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15",
  2381. "搜索url": "index.php/vod/search.html?wd={wd}",
  2382. "线路数组": "class=\"module-tab-item tab-item&&/div>",
  2383. "线路标题": "<span>&&</span>+[共+<small>&&</small>+集]",
  2384. "分类url": "/index.php/vod/show/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html;;ak",
  2385. "剧情": "[替换:伦理>>空]",
  2386. "分类": "电影$1#剧集$2#综艺$5#动漫$3#短剧$4#十八禁$6"
  2387. }
  2388. },
  2389. {
  2390. "key": "CSP_青檸影视",
  2391. "name": "🎥|青檸",
  2392. "type": 3,
  2393. "api": "csp_XBPQ",
  2394. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2395. "ext":
  2396. {
  2397. "请求头": "User-Agent$MOBILE_UA",
  2398. "编码": "UTF-8",
  2399. "分类url": "https://www.hspf520.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  2400. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  2401. "简介": "<p>&&<p>"
  2402. }
  2403. },
  2404. {
  2405. "key": "csp_人人影視",
  2406. "name": "🎥|人人影視",
  2407. "type": 3,
  2408. "api": "csp_XBPQ",
  2409. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2410. "searchable": 1,
  2411. "quickSearch": 1,
  2412. "filterable": 1,
  2413. "ext": {
  2414. "线路数组": "class=\"details-play-title clearfix&&</span>",
  2415. "简介": "col-xs-1 detail-info hidden-xs\">&&</div>",
  2416. "分类url": "https://www.rrentv.com/vodlist/{cateId}__{area}_{year}__{by}_{catePg}.html",
  2417. "分类": "電影$dianying#電視劇$dianshiju#動漫$dongman#綜藝$zongyi",
  2418. "类型":"动作片$dongzuopian#喜剧片$xijupian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#战争片$zhanzhengpian#剧情片$juqingpian#悬疑片$xuanyipian||国产剧$guocanju#香港剧$xianggangju#欧美剧$oumeiju#日本剧$ribenju#韩国剧$hanguoju#台湾剧$taiwanju#泰国剧$taiguoju#海外剧$haiwaiju||空||空",
  2419. "地区":"中国$China#港台$Gangtai#日韩$Rihan#欧美$Oumei#大陆$dalu#香港$HongKong#台湾$taiwan#美国$USA#韩国$Hanguo#日本$Japan#泰国$Thailand#新加坡$Singapore#马来西亚$Malaysia#印度$India#英国$England#法国$France#加拿大$Canada#其它$Qita",
  2420. "排序":"按时间$addtime#按人气$hits#按評分$gold"
  2421. }
  2422. },
  2423. {
  2424. "key": "自由影视",
  2425. "name": "🎥|自由影视",
  2426. "type": 3,
  2427. "api": "csp_XBPQ",
  2428. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2429. "ext": {
  2430. "请求头": "User-Agent$MOBILE_UA",
  2431. "编码": "UTF-8",
  2432. "主页url": "https://www.freeys.cc",
  2433. "数组": "class=\"hl-item-thumb hl-lazy\"&&</a>",
  2434. "副标题": "remarks\">&&</span>",
  2435. "标题": "title=\"&&\"",
  2436. "图片": "data-original=\"&&\"",
  2437. "链接": "href=\"&&\"",
  2438. "播放数组": "class=\"hl-plays-list hl-sort-list&&</ul>",
  2439. "播放列表": "<a&&a>",
  2440. "播放链接": "href=\"&&\"",
  2441. "播放标题": ">&&</",
  2442. "线路数组": "class=\"hl-tabs-btn hl-slide-swiper&&</a>",
  2443. "线路标题": "alt=\"&&\"",
  2444. "跳转播放链接": "var player_*\"url\":\"&&\"",
  2445. "简介": "简介:</em>&&</li>",
  2446. "分类": "电影$dianying#连续剧$lianxuju#综艺$zongyi#动漫$dongman#短剧$duanju",
  2447. "搜索url": "http://www.freeys.cc/vodsearch/{wd}----------{pg}---/",
  2448. "分类url": "http://www.freeys.cc/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}/"
  2449. }
  2450. },
  2451. {
  2452. "key": "韩剧之家",
  2453. "name": "🎥|韩剧之家",
  2454. "type": 3,
  2455. "api": "csp_XBPQ",
  2456. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2457. "searchable": 1,
  2458. "quickSearch": 1,
  2459. "filterable": 1,
  2460. "ext": {
  2461. "请求头": "User-Agent$MOBILE_UA",
  2462. "编码": "UTF-8",
  2463. "主页url": "https://hjzj1.com/",
  2464. "简介": "description\" content=\"&&\">",
  2465. "数组": "默认--class=\"pic\"&&class=\"s5 animate||搜索--class=\"pic\"&&</li>",
  2466. "图片": "默认--data-src=\"&&\"||搜索--data-src=\"&&\"",
  2467. "标题": "默认--title=\"&&\"||搜索--title=\"&&\"",
  2468. "副标题": "默认--s4\">&&<b||搜索--state\"><span>&&<b",
  2469. "链接": "默认--href=\"&&\"[替换:video>>play#.html>>-1-1.html]||搜索--href=\"&&\"[替换:video>>play#.html>>-1-1.html]",
  2470. "播放数组": "class=\"jisu\"&&class=\"xianlu\"",
  2471. "播放列表": "<a&&a>",
  2472. "播放链接": "href=\"&&\"",
  2473. "播放标题": "\">&&</",
  2474. "线路数组": "<a&&</a>",
  2475. "线路标题": "\">&&<small>",
  2476. "多线二次截取": "xianlu\"> &&</div>",
  2477. "多线数组": "<a&&</a>",
  2478. "多线链接": "href=\"&&\"",
  2479. "跳转播放链接": "var player_*\"url\":\"&&\"",
  2480. "搜索url": "https://hjzj1.com/search/{wd}----------{pg}---.html",
  2481. "分类url": "https://hjzj1.com/all/{cateId}-{class}-{area}-{year}-{by}-{catePg}.html;;rcaRCA",
  2482. "分类": "电影$21#剧集$20#动漫$22#短剧$23"
  2483. }
  2484. },
  2485. {
  2486. "key": " fxzds ",
  2487. "name": "🎥|袋鼠",
  2488. "type": 3,
  2489. "api": "csp_XBPQ",
  2490. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2491. "ext": {
  2492. "简介": "<p>&&</p>",
  2493. "线路标题": ">蓝光专线</a>",
  2494. "线路数组": "data-parent=&&</a>[不包含:蓝光专线3]",
  2495. "播放数组": "<ul class=\"playlistlink&&</ul>",
  2496. "图片": "data-original=\"&&\"",
  2497. "标题": "title=\"&&\"",
  2498. "副标题": "✨HD+note textbg\">&&</span>",
  2499. "数组": "videopic lazy\"&&</a>",
  2500. "分类url": "https://dsdytv.com",
  2501. "分类数组": "tabbar visible-xs\">&&</div}"
  2502. }
  2503. },
  2504. {
  2505. "key": "shiju影视",
  2506. "name": "🎥|视觉",
  2507. "type": 3,
  2508. "api": "csp_XBPQ",
  2509. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2510. "ext": {
  2511. "数组": "lazy lazyloaded&&</a",
  2512. "图片": "data-src=\"&&\"",
  2513. "标题": "title=\"&&\"",
  2514. "副标题": "✨HD+video-class\">&&</span>",
  2515. "链接": "href=\"&&\"",
  2516. "简介": "vod_content\">&&<a",
  2517. "线路数组": "module-tab-item tab-item&&</div",
  2518. "线路标题": "💕播放👉+span>&&</span",
  2519. "播放数组": "<div class=\"module-blocklist&&</div",
  2520. "跳转播放链接": "urlDecode(var player_*\"url\":\"&&\")",
  2521. "搜索模式": "1",
  2522. "搜索数组": "lazy lazyload&&</h3",
  2523. "搜索图片": "data-src=\"&&\"",
  2524. "搜索标题": "title=\"&&\"",
  2525. "搜索副标题": "video-serial\" href=*>&&</a >",
  2526. "搜索链接": "href=\"&&\"",
  2527. "搜索url": "https://6080z.com/vodsearch/{wd}----------{pg}---.html",
  2528. "搜索后缀": "/voddetail/",
  2529. "分类url": "https://6080z.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  2530. "分类": "电影$1#剧集$2#综艺$3#动漫$4#短剧$39#体育$34#解说$40"
  2531. }
  2532. },
  2533. {
  2534. "key": "csp_蛙蛙",
  2535. "name": "🎥|蛙蛙",
  2536. "type": 3,
  2537. "api": "csp_XBPQ",
  2538. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2539. "searchable": 1,
  2540. "quickSearch": 1,
  2541. "filterable": 1,
  2542. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/蛙蛙.json"
  2543. },
  2544. {
  2545. "key": "csp_VSYY",
  2546. "name": "🎥|VS",
  2547. "type": 3,
  2548. "api": "csp_XBPQ",
  2549. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2550. "searchable": 1,
  2551. "quickSearch": 1,
  2552. "filterable": 1,
  2553. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/VS影院.json"
  2554. },
  2555. {
  2556. "key": "csp_子子",
  2557. "name": "🎥|子子",
  2558. "type": 3,
  2559. "api": "csp_XBPQ",
  2560. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2561. "searchable": 1,
  2562. "quickSearch": 1,
  2563. "filterable": 1,
  2564. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/子子影视2.json"
  2565. },
  2566. {
  2567. "key": "csp_白嫖者联盟",
  2568. "name": "🎥|嫖者盟",
  2569. "type": 3,
  2570. "api": "csp_XBPQ",
  2571. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2572. "searchable": 1,
  2573. "quickSearch": 1,
  2574. "filterable": 1,
  2575. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/白嫖者联盟.json"
  2576. },
  2577. {
  2578. "key": "csp_新6V电影",
  2579. "name": "🎥|新6V",
  2580. "type": 3,
  2581. "api": "csp_XBPQ",
  2582. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2583. "searchable": 1,
  2584. "quickSearch": 1,
  2585. "filterable": 1,
  2586. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/新6V电影.json"
  2587. },
  2588. {
  2589. "key": "csp_圣城影视",
  2590. "name": "🎥|圣城",
  2591. "type": 3,
  2592. "api": "csp_XBPQ",
  2593. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2594. "searchable": 1,
  2595. "quickSearch": 1,
  2596. "filterable": 1,
  2597. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/圣城影视.json"
  2598. },
  2599. {
  2600. "key": "csp_乐万家影院",
  2601. "name": "🎥|万家",
  2602. "type": 3,
  2603. "api": "csp_XBPQ",
  2604. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2605. "searchable": 1,
  2606. "quickSearch": 1,
  2607. "filterable": 1,
  2608. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/乐万家影院.json"
  2609. },
  2610. {
  2611. "key": "csp_臻品电影网",
  2612. "name": "🎥|臻品",
  2613. "type": 3,
  2614. "api": "csp_XBPQ",
  2615. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2616. "searchable": 1,
  2617. "quickSearch": 1,
  2618. "filterable": 1,
  2619. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/臻品电影网.json"
  2620. },
  2621. {
  2622. "key": "csp_七新影视",
  2623. "name": "🎥|七新",
  2624. "type": 3,
  2625. "api": "csp_XBPQ",
  2626. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2627. "searchable": 1,
  2628. "quickSearch": 1,
  2629. "filterable": 1,
  2630. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/七新影视.json"
  2631. },
  2632. {
  2633. "key": "csp_威士影视",
  2634. "name": "🎥|威士",
  2635. "type": 3,
  2636. "api": "csp_XBPQ",
  2637. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2638. "searchable": 1,
  2639. "quickSearch": 1,
  2640. "filterable": 1,
  2641. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/威士影视.json"
  2642. },
  2643. {
  2644. "key": "csp_超前影视",
  2645. "name": "🎥|超前",
  2646. "type": 3,
  2647. "api": "csp_XBPQ",
  2648. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2649. "searchable": 1,
  2650. "quickSearch": 1,
  2651. "filterable": 1,
  2652. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/超前B站.json"
  2653. },
  2654. {
  2655. "key": "csp_iysdq",
  2656. "name": "🎥|爱玩",
  2657. "type": 3,
  2658. "api": "csp_XBPQ",
  2659. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2660. "searchable": 1,
  2661. "quickSearch": 1,
  2662. "filterable": 1,
  2663. "ext": {
  2664. "分类url": "https://www.iysdq.cc/vodshow/1-----------/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  2665. "分类": "国产剧$21#香港剧$22#台湾剧$23#韩国剧$24#日本剧$25#欧美剧$26#泰国剧$27#海外剧$28#电影$1#动漫$4#综艺$3"
  2666. }
  2667. },
  2668. {
  2669. "key": "csp_kimivod",
  2670. "name": "🎥|柯觅",
  2671. "type": 3,
  2672. "api": "csp_XBPQ",
  2673. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2674. "searchable": 1,
  2675. "quickSearch": 1,
  2676. "filterable": 1,
  2677. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/柯覓.json"
  2678. },
  2679. {
  2680. "key": "csp_buxiutv",
  2681. "name": "️🎥|不休",
  2682. "type": 3,
  2683. "api": "csp_XBPQ",
  2684. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2685. "searchable": 1,
  2686. "quickSearch": 1,
  2687. "filterable": 0,
  2688. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/buxiutv.json"
  2689. },
  2690. {
  2691. "key": "csp_七夕影视",
  2692. "name": "🎥|七夕",
  2693. "type": 3,
  2694. "api": "csp_XBPQ",
  2695. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2696. "searchable": 1,
  2697. "quickSearch": 1,
  2698. "filterable": 1,
  2699. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/七夕.json"
  2700. },
  2701. {
  2702. "key": "csp_子子影视",
  2703. "name": "🎥|子子",
  2704. "type": 3,
  2705. "api": "csp_XBPQ",
  2706. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2707. "searchable": 1,
  2708. "quickSearch": 1,
  2709. "filterable": 1,
  2710. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/子子.json"
  2711. },
  2712. {
  2713. "key": "csp_永乐视频",
  2714. "name": "🎥|永樂",
  2715. "type": 3,
  2716. "api": "csp_XBPQ",
  2717. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2718. "searchable": 1,
  2719. "quickSearch": 1,
  2720. "filterable": 1,
  2721. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/永樂視頻.json"
  2722. },
  2723. {
  2724. "key": "csp_好影快看",
  2725. "name": "🎥|好影",
  2726. "type": 3,
  2727. "api": "csp_XBPQ",
  2728. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2729. "searchable": 1,
  2730. "changeable": 1,
  2731. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/好影快看.json"
  2732. },
  2733. {
  2734. "key": "csp_老王影视",
  2735. "name": "🎥|老王",
  2736. "type": 3,
  2737. "api": "csp_XBPQ",
  2738. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2739. "ext": {
  2740. "简介": "video-info-contentvod_content\">&&</div>",
  2741. "线路数组": "module-tab-itemtab-item&&</div>",
  2742. "线路标题": "<span>&&</span>",
  2743. "播放数组": "module-blocklist\">&&</div>",
  2744. "分类url": "https://www.laowang.co/vodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
  2745. "分类": "短剧$duanju#电视剧$tv#电影$movie#动漫$animation#综艺$tvshow"
  2746. }
  2747. },
  2748. {
  2749. "key": "csp_利伍蓝光",
  2750. "name": "🎥|利伍",
  2751. "type": 3,
  2752. "api": "csp_XBPQ",
  2753. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2754. "searchable": 1,
  2755. "quickSearch": 1,
  2756. "filterable": 1,
  2757. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/策驰影视.json"
  2758. },
  2759. {
  2760. "key": "csp_没事影院",
  2761. "name": "🎥|没事",
  2762. "type": 3,
  2763. "api": "csp_XBPQ",
  2764. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2765. "searchable": 1,
  2766. "quickSearch": 1,
  2767. "filterable": 1,
  2768. "ext": {
  2769. "分类url": "https://www.yu992.com/lys/{cateId}/area/{area}/by/{by}/class/{class}/page/{catePg}/year/{year}.html",
  2770. "分类": "剧集$juji#电影$dianying#综艺$zongyi#动漫$dongman#短剧$duanju"
  2771. }
  2772. },
  2773. {
  2774. "key": "csp_雨见视频",
  2775. "name": "🎥|雨见",
  2776. "type": 3,
  2777. "api": "csp_XBPQ",
  2778. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2779. "searchable": 1,
  2780. "quickSearch": 1,
  2781. "filterable": 1,
  2782. "ext": {
  2783. "影片类型": "类型:&&</li>",
  2784. "简介": "简介:&&</div>",
  2785. "分类url": "http://yjsp.mxys8.com/index.php/vod/show/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  2786. "分类": "电影$1#连续剧$2#动漫$4#综艺$3#纪录片$27"
  2787. }
  2788. },
  2789. {
  2790. "key": "csp_哈皮TV",
  2791. "name": "🎥|哈皮",
  2792. "type": 3,
  2793. "api": "csp_XBPQ",
  2794. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2795. "changeable": 1,
  2796. "searchable": 1,
  2797. "quickSearch": 1,
  2798. "filterable": 1,
  2799. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/哈皮TV.json"
  2800. },
  2801. {
  2802. "key": "csp_看片狂人",
  2803. "name": "🎥|片狂",
  2804. "type": 3,
  2805. "api": "csp_XBPQ",
  2806. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2807. "searchable": 1,
  2808. "quickSearch": 1,
  2809. "filterable": 1,
  2810. "ext": {
  2811. "免嗅": "1",
  2812. "线路数组": "class=\"fed-drop-btns fed-padding&&</li>",
  2813. "搜索url": "https://www.kpkuang.fun/vodsearch/-------------.html?wd={wd}",
  2814. "分类url": "https://www.kpkuang.fun/vodshow/{cateId}-{area}-time------{catePg}---{year}--.html[https://www.kpkuang.one/vodtype/{cateId}/]",
  2815. "分类": "国产剧$13#电影$1#连续剧$2#综艺$3#动漫$4"
  2816. }
  2817. },
  2818. {
  2819. "key": "csp_红狐狸影院",
  2820. "name": "🎥|红狐",
  2821. "type": 3,
  2822. "api": "csp_XBPQ",
  2823. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2824. "ext": {
  2825. "简介": "+line-height: 20px;\">&&</div>",
  2826. "分类url": "https://honghuli.com/leibiao/{cateId}-{area}--{class}----{catePg}---{year}.html",
  2827. "分类": "短剧$35#电影$1#连续剧$2#动漫$4#综艺$3"
  2828. }
  2829. },
  2830. {
  2831. "key": "csp_飞流影视",
  2832. "name": "🎥|飛流",
  2833. "type": 3,
  2834. "api": "csp_XBPQ",
  2835. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2836. "searchable": 1,
  2837. "quickSearch": 1,
  2838. "filterable": 1,
  2839. "ext":
  2840. {
  2841. "分类url":"https://www.flixflop.com/explore/{cateId}?page={catePg}&year={year}&sort=recently_updated",
  2842. "分类": "電視劇$151438147794763777#電影$151438147786375168#動漫$151438147807346690#綜藝$151438147807346691#體育$151438147807346693#短劇$331153971999670710"
  2843. }
  2844. },
  2845. {
  2846. "key": "csp_神马影视",
  2847. "name": "🎥|神马",
  2848. "type": 3,
  2849. "api": "csp_XBPQ",
  2850. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2851. "searchable": 1,
  2852. "quickSearch": 1,
  2853. "filterable": 1,
  2854. "ext": {
  2855. "分类url": "https://www.18ys.cc/vodshow/1-------/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  2856. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$30#纪录片$40"
  2857. }
  2858. },
  2859. {
  2860. "key": "csp_茶杯狐",
  2861. "name": "🎥|茶狐",
  2862. "type": 3,
  2863. "api": "csp_XBPQ",
  2864. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2865. "searchable": 1,
  2866. "quickSearch": 1,
  2867. "filterable": 1,
  2868. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/茶杯狐.json"
  2869. },
  2870. {
  2871. "key": "csp_爱看影视",
  2872. "name": "🎥|爱看",
  2873. "type": 3,
  2874. "api": "csp_XBPQ",
  2875. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  2876. "searchable": 1,
  2877. "quickSearch": 1,
  2878. "filterable": 1,
  2879. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/愛看.json"
  2880. },
  2881. {
  2882. "key": "csp_黑夜影视",
  2883. "name": "🎥|黑夜",
  2884. "type": 3,
  2885. "api": "csp_XBPQ",
  2886. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2887. "ext": {
  2888. "线路标题": "[不包含:海外看资源#高清云播放器]",
  2889. "分类url": "https://darkvod.com/video/{cateId}/area/{area}/class/{class}/page/{catePg}/year/{year}/",
  2890. "分类": "短剧$shuangwenduanju#电影$dianying#电视剧$lianxuju#综艺$zongyi#动漫$dongman"
  2891. }
  2892. },
  2893. {
  2894. "key": "csp_电影驿站",
  2895. "name": "🎥|驿站",
  2896. "type": 3,
  2897. "api": "csp_XBPQ",
  2898. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2899. "searchable": 1,
  2900. "quickSearch": 1,
  2901. "filterable": 1,
  2902. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/電影驛站.json"
  2903. },
  2904. {
  2905. "key": "csp_网飞TV",
  2906. "name": "🎥|网飞",
  2907. "type": 3,
  2908. "api": "csp_XBPQ",
  2909. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2910. "ext": {
  2911. "简介": "line-height:20px;\">&&</div>",
  2912. "线路数组": "module-tab-itemtab-item\"&&</div>",
  2913. "分类url": "https://www.wangfei.tv/vodshow/area/{area}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  2914. "分类": "国产剧$guochanju#电影$dy#电视剧$juji#综艺$zongyi#动漫$dongman"
  2915. }
  2916. },
  2917. {
  2918. "key": "csp_酷吧影视",
  2919. "name": "🎥|酷吧",
  2920. "type": 3,
  2921. "api": "csp_XBPQ",
  2922. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2923. "searchable": 1,
  2924. "changeable": 1,
  2925. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/酷吧影视.json"
  2926. },
  2927. {
  2928. "key": "csp_影视大全",
  2929. "name": "🎥|聚合",
  2930. "type": 3,
  2931. "api": "csp_XBPQ",
  2932. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2933. "searchable": 1,
  2934. "quickSearch": 1,
  2935. "filterable": 1,
  2936. "ext": {
  2937. "影片地区": "圥忈制作",
  2938. "影片年代": "<p class=\"module-info-item-content&&</p>",
  2939. "分类url": "https://www.ysdq.me/vodshow/{cateId}-{class}-{by}-{area}-{lang}--{catePg}-{year}.html",
  2940. "分类": "电影$1#电视剧$2#动漫$5#综艺$4#短剧$3"
  2941. }
  2942. },
  2943. {
  2944. "key": "csp_纤纤影视",
  2945. "name": "🎥|纤纤",
  2946. "type": 3,
  2947. "api": "csp_XBPQ",
  2948. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2949. "playerType": 2,
  2950. "searchable": 1,
  2951. "quickSearch": 1,
  2952. "filterable": 1,
  2953. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/芊芊影視.json"
  2954. },
  2955. {
  2956. "key": "csp_影视森林",
  2957. "name": "🎥|森林",
  2958. "type": 3,
  2959. "api": "csp_XBPQ",
  2960. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2961. "searchable": 1,
  2962. "quickSearch": 1,
  2963. "filterable": 1,
  2964. "ext": {
  2965. "请求头": "User-Agent$MOBILE_UA",
  2966. "编码": "UTF-8",
  2967. "主页url": "https://www.ncshdxx.com/",
  2968. "分类url": "https://www.ncshdxx.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}/",
  2969. "分类": "电影$dianying#电视剧$dsj#综艺$zongyi#动漫$dongman#爽文短剧$shuangwenduanju#4k电影$4kdianying#体育赛事$tiyusaishi",
  2970. "类型": "喜剧片$xijupian#动作片$dongzuopian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#剧情片$juqingpian#战争片$zhanzhengpian#悬疑片$xuanyipian#犯罪片$fanzuipian#冒险片$maoxianpian#动画片$donghuapian#惊悚片$jingsongpian#奇幻片$qihuanpian#纪录片$jilupian#武侠片$wuxiapian||国产剧$guochanju#欧美剧$oumeiju#日剧$riju#韩剧$hanju#港剧$gangju#台剧$taiju#泰剧$taiju#海外剧$haiwaiju||空||国产动漫$guochandongman#日韩动漫$rihandongman#欧美动漫$oumeidongman#港台动漫$gangtaidongman#海外动漫$haiwaidongman||空||空||空"
  2971. }
  2972. },
  2973. {
  2974. "key": "csp_乐鱼TV",
  2975. "name": "🎥|乐鱼",
  2976. "type": 3,
  2977. "api": "csp_XBPQ",
  2978. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2979. "ext": {
  2980. "简介": "tjuqing\">&&</div>",
  2981. "线路数组": "<li&&</li>",
  2982. "线路二次截取": "<ulid=\"play\">&&</ul>",
  2983. "线路标题": ">&&<",
  2984. "分类url": "https://www.yu992.com/lys/ly{cateId}/area/{area}/class/{class}/page/{catePg}/year/{year}.html",
  2985. "分类": "电影$Movie#电视剧$Tv#综艺$Variety#动漫$Cartoon"
  2986. }
  2987. },
  2988. {
  2989. "key": "csp_优优影视",
  2990. "name": "🎥|优优",
  2991. "type": 3,
  2992. "api": "csp_XBPQ",
  2993. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  2994. "searchable": 1,
  2995. "quickSearch": 1,
  2996. "filterable": 1,
  2997. "ext": {
  2998. "影片地区": "圥忈制作",
  2999. "影片年代": "<div class=\"module-info-tag\">&&</div>",
  3000. "影片状态": "备注:&&</div>",
  3001. "影片类型": "module-info-tag\">&&立即播放",
  3002. "线路数组": "data-dropdown-value=&&</div>",
  3003. "线路标题": "<span>&&</small>[替换:</span><small>>>共]+集",
  3004. "分类url": "https://nuu.su/x/id/{cateId}-{area}-{by}-{class}-{catePg}-{year}.html",
  3005. "分类": "电影$1#剧集$2#动漫$4#综艺$3#爽剧$5#记录$6"
  3006. }
  3007. },
  3008. {
  3009. "key": "csp_麦田影视",
  3010. "name": "🎥|麦田",
  3011. "type": 3,
  3012. "api": "csp_XBPQ",
  3013. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3014. "searchable": 1,
  3015. "quickSearch": 1,
  3016. "filterable": 1,
  3017. "ext": {
  3018. "图片": "data-src=\"&&\"",
  3019. "线路数组": "<a class=\"swiper-slide\"&&</a>",
  3020. "线路标题": "</i>&nbsp;&&</a>+集",
  3021. "搜索url": "https://www.mtyy1.com/vodsearch/-------------.html?wd={wd}",
  3022. "分类url": "https://www.mtyy1.com/vodshow/1-----------/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  3023. "分类": "电视剧$1#电影$2#动漫$4#综艺$3#短剧$5#纪录片$6"
  3024. }
  3025. },
  3026. {
  3027. "key": "csp_鹊桥影院",
  3028. "name": "🎥|鹊橋",
  3029. "type": 3,
  3030. "api": "csp_XBPQ",
  3031. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3032. "searchable": 1,
  3033. "quickSearch": 1,
  3034. "filterable": 1,
  3035. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/鹊橋影院.json"
  3036. },
  3037. {
  3038. "key": "csp_开心影院",
  3039. "name": "🎥|开心",
  3040. "type": 3,
  3041. "api": "csp_XBPQ",
  3042. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3043. "searchable": 1,
  3044. "quickSearch": 1,
  3045. "filterable": 1,
  3046. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/開心影院.json"
  3047. },
  3048. {
  3049. "key": "csp_皮皮影院",
  3050. "name": "🎥|皮皮",
  3051. "type": 3,
  3052. "api": "csp_XBPQ",
  3053. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3054. "ext": {
  3055. "请求头": "User-Agent$MOBILE_UA",
  3056. "编码": "UTF-8",
  3057. "主页url": "https://www.xzweiheng.com/",
  3058. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3059. "分类url": "https://www.xzweiheng.com/vodshow/{cateId}-{area}-{by}--{lang}-{letter}---{catePg}---{year}.html",
  3060. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$34",
  3061. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23#午夜剧场$33||国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22||空||空||空"
  3062. }
  3063. },
  3064. {
  3065. "key": "csp_久播影视",
  3066. "name": "🎥|久播",
  3067. "type": 3,
  3068. "api": "csp_XBPQ",
  3069. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3070. "searchable": 1,
  3071. "quickSearch": 1,
  3072. "filterable": 1,
  3073. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/久播影視.json"
  3074. },
  3075. {
  3076. "key": "csp_樱花影视",
  3077. "name": "🎥|樱花",
  3078. "type": 3,
  3079. "api": "csp_XBPQ",
  3080. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3081. "searchable": 1,
  3082. "quickSearch": 1,
  3083. "filterable": 1,
  3084. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/櫻花影視.json"
  3085. },
  3086. {
  3087. "key": "csp_琥珀影院",
  3088. "name": "🎥|琥珀",
  3089. "type": 3,
  3090. "api": "csp_XBPQ",
  3091. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3092. "searchable": 1,
  3093. "quickSearch": 1,
  3094. "filterable": 1,
  3095. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/琥珀影院.json"
  3096. },
  3097. {
  3098. "key": "csp_全民影院",
  3099. "name": "🎥|全民",
  3100. "type": 3,
  3101. "api": "csp_XBPQ",
  3102. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3103. "searchable": 1,
  3104. "quickSearch": 1,
  3105. "filterable": 1,
  3106. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/全民影院.json"
  3107. },
  3108. {
  3109. "key": "csp_速影TV",
  3110. "name": "🎥|速影",
  3111. "type": 3,
  3112. "api": "csp_XBPQ",
  3113. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3114. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/速影TV.json"
  3115. },
  3116. {
  3117. "key": "csp_新可可影视",
  3118. "name": "🎥|可可",
  3119. "type": 3,
  3120. "api": "csp_XBPQ",
  3121. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3122. "searchable": 1,
  3123. "quickSearch": 1,
  3124. "filterable": 1,
  3125. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/新可可影視-直連.json"
  3126. },
  3127. {
  3128. "key": "新可可影视③",
  3129. "name": "🎥|可可③",
  3130. "type": 3,
  3131. "api": "csp_XBPQ",
  3132. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3133. "searchable": 1,
  3134. "quickSearch": 1,
  3135. "filterable": 1,
  3136. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/新可可影視3.json"
  3137. },
  3138. {
  3139. "key": "大海影视①",
  3140. "name": "🎥|大海1站",
  3141. "type": 3,
  3142. "api": "csp_XBPQ",
  3143. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3144. "searchable": 1,
  3145. "quickSearch": 1,
  3146. "filterable": 1,
  3147. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/大海1號.json"
  3148. },
  3149. {
  3150. "key": "大海影视③",
  3151. "name": "🎥|大海3站",
  3152. "type": 3,
  3153. "api": "csp_XBPQ",
  3154. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3155. "searchable": 1,
  3156. "quickSearch": 1,
  3157. "filterable": 1,
  3158. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/大海3號.json"
  3159. },
  3160. {
  3161. "key": "大海影视⑦",
  3162. "name": "🎥|大海4站",
  3163. "type": 3,
  3164. "api": "csp_XBPQ",
  3165. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3166. "searchable": 1,
  3167. "quickSearch": 1,
  3168. "filterable": 1,
  3169. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/大海4號.json"
  3170. },
  3171. {
  3172. "key": "夕云影视",
  3173. "name": "🎥|夕云",
  3174. "type": 3,
  3175. "api": "csp_XBPQ",
  3176. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3177. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/夕雲.json"
  3178. },
  3179. {
  3180. "key": "csp_酷猫电影网",
  3181. "name": "🎥|酷猫",
  3182. "type": 3,
  3183. "api": "csp_XBPQ",
  3184. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3185. "searchable": 1,
  3186. "quickSearch": 1,
  3187. "filterable": 1,
  3188. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/酷貓電影網.json"
  3189. },
  3190. {
  3191. "key": "csp_自由影视",
  3192. "name": "🎥|自由",
  3193. "type": 3,
  3194. "api": "csp_XBPQ",
  3195. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3196. "ext": {
  3197. "请求头": "User-Agent$MOBILE_UA",
  3198. "编码": "UTF-8",
  3199. "主页url": "https://www.freeys.cc",
  3200. "数组": "class=\"hl-item-thumb hl-lazy\"&&</a>",
  3201. "副标题": "remarks\">&&</span>",
  3202. "标题": "title=\"&&\"",
  3203. "图片": "data-original=\"&&\"",
  3204. "链接": "href=\"&&\"",
  3205. "播放数组": "class=\"hl-plays-list hl-sort-list&&</ul>",
  3206. "播放列表": "<a&&a>",
  3207. "播放链接": "href=\"&&\"",
  3208. "播放标题": ">&&</",
  3209. "线路数组": "class=\"hl-tabs-btn hl-slide-swiper&&</a>",
  3210. "线路标题": "alt=\"&&\"",
  3211. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3212. "简介": "简介:</em>&&</li>",
  3213. "分类": "电影$dianying#连续剧$lianxuju#综艺$zongyi#动漫$dongman#短剧$duanju",
  3214. "搜索url": "http://www.freeys.cc/vodsearch/{wd}----------{pg}---/",
  3215. "分类url": "http://www.freeys.cc/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}/"
  3216. }
  3217. },
  3218. {
  3219. "key": "csp_追影影视",
  3220. "name": "🎥|追影",
  3221. "type": 3,
  3222. "api": "csp_XBPQ",
  3223. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3224. "searchable": 1,
  3225. "quickSearch": 1,
  3226. "filterable": 1,
  3227. "ext": {
  3228. "站名": "追影影视",
  3229. "请求头": "User-Agent@Mozilla/5.0 (Windows NT 10.0;; Win64;; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36",
  3230. "编码": "UTF-8",
  3231. "首页": "120",
  3232. "起始页": "1",
  3233. "主页url": "https://m.zjuys.com",
  3234. "二次截取": "list\":\\[&&\\]",
  3235. "数组": "{&&}",
  3236. "标题": "vodName\":\"&&\"",
  3237. "副标题": "vodRemarks\":\"&&\"+vodVersion\":\"&&\"",
  3238. "图片": "https://obs.gduamoe.com/+https://obs.gduamoe.com/&&\"+?x-image-process=image/resize,w_260,h_357/quality,q_65/format,webp",
  3239. "链接": "https://m.zjuys.com/detail/+vodId\":&&,\"",
  3240. "线路二次截取": "episodeList\":&&likeData",
  3241. "线路数组": "[&&]",
  3242. "线路标题": "追影播放器",
  3243. "播放请求头": "User-Agent@Mozilla/5.0 (Linux;; Android 12;; PEHM00 Build/SKQ1.210216.001;; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/127.0.6533.103 Mobile Safari/537.36",
  3244. "播放二次截取": "episodeList\":&&likeData[替换:nid\":>>nid\":/1/]",
  3245. "播放数组": "\\[&&\\]",
  3246. "播放列表": "{&&}",
  3247. "播放链接": "nid\":&&,\"",
  3248. "播放链接前缀": "https://m.zjuys.com/vod/play/+/play/&&/",
  3249. "播放标题": "name\":\"&&\"",
  3250. "搜索模式": "1",
  3251. "搜索url": "https://m.zjuys.com/vod/search/{wd}",
  3252. "搜索二次截取": "result*list\":\\[&&\\]",
  3253. "搜索数组": "{&&}",
  3254. "搜索标题": "vodName\":\"&&\"",
  3255. "搜索副标题": "vodRemarks\":\"&&\"+vodVersion\":\"&&\"",
  3256. "搜索图片": "https://obs.gduamoe.com/+https://obs.gduamoe.com/&&\"+?x-image-process=image/resize,w_260,h_357/quality,q_65/format,webp",
  3257. "搜索链接": "https://m.zjuys.com/detail/+vodId\":&&,\"",
  3258. "简介": "</label>&&</div>",
  3259. "分类url": "/vod/show/id/{cateId}/class/{class}/area/{area}/year/{year}/lang/{lang}/page/{catePg};;mrcWR",
  3260. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  3261. "筛选": "1",
  3262. "类型": "喜剧片$1/type/22#动作片$1/type/23#科幻片$1/type/30#爱情片$1/type/26#悬疑片$1/type/27#奇幻片$1/type/87#剧情片$1/type/37#恐怖片$1/type/36#犯罪片$1/type/35#动画片$1/type/33#惊悚片$1/type/34#战争片$1/type/25#冒险片$1/type/31#灾难片$1/type/81#其他片$1/type/43||国产剧$2/type/14#欧美剧$2/type/15#港台剧$2/type/16#日韩剧$2/type/62#其他剧$2/type/68||国产综艺$3/type/69#港台综艺$3/type/70#日韩综艺$3/type/72#欧美综艺$3/type/73#其他综艺$3/type/74||国产动漫$4/type/75#日韩动漫$4/type/76#欧美动漫$4/type/77",
  3263. "剧情": "空||古装&战争&喜剧&家庭&犯罪&动作&奇幻&剧情&历史&短片||真人秀&音乐&脱口秀||喜剧&科幻&热血&冒险&动作&运动&战争&儿童",
  3264. "剧情值": "*",
  3265. "地区": "中国大陆&中国香港&中国台湾&美国&日本&韩国&印度&泰国&其他||中国大陆&中国香港&中国台湾&日本&韩国&美国&泰国&其他||中国大陆&中国香港&中国台湾&日本&韩国&美国&其他||中国大陆&日本&美国&其他",
  3266. "地区值": "*",
  3267. "语言": "国语&英语&粤语&韩语&日语&其他||普通话&英语&粤语&韩语&日语&泰语&其他||国语&英语&粤语&韩语&日语&其他||国语&英语&日语&其他",
  3268. "语言值": "*"
  3269. }
  3270. },
  3271. {
  3272. "key": "csp_四海影院",
  3273. "name": "🎥|四海",
  3274. "type": 3,
  3275. "api": "csp_XBPQ",
  3276. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3277. "ext": {
  3278. "请求头": "User-Agent$MOBILE_UA",
  3279. "编码": "UTF-8",
  3280. "主页": "https://www.lngwyw.com/",
  3281. "数组": "默认--/img/lazyload&&</p||首页--/img/lazyload&&</p",
  3282. "标题": "默认--alt=\"&&\"||首页--name\">*\">&&<",
  3283. "图片": "src=\"&&\"",
  3284. "副标题": "默认--rgba1\">&&<||首页--rgba1 ba-r\">&&</",
  3285. "链接": "href=\"&&\"",
  3286. "播放数组": "<div id=\"stab_11\" class=\"stab_list\"&&</div>",
  3287. "播放列表": "<a&&a>",
  3288. "播放链接": "href=\"&&\"",
  3289. "播放标题": ">&&</",
  3290. "线路数组": "ptit clearfix\">&&</div>",
  3291. "线路标题": "\">&&</p>",
  3292. "搜索url": "https://www.lngwyw.com/search/{wd}----------{pg}---.html",
  3293. "简介": "<p>&&</p>",
  3294. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3295. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$33",
  3296. "分类url": "https://www.lngwyw.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  3297. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23||国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22||大陆综艺$25#日韩综艺$26#港台综艺$27#欧美综艺$28||国产动漫$29#日韩动漫$30#欧美动漫$31#其它动漫$32||女频恋爱$34#反转爽剧$35#古装仙侠$36#年代穿越$37#脑洞悬疑$38#现代都市$39"
  3298. }
  3299. },
  3300. {
  3301. "key": "csp_白羊影院",
  3302. "name": "🎥|白羊影院",
  3303. "type": 3,
  3304. "api": "csp_XBPQ",
  3305. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3306. "ext": {
  3307. "请求头": "User-Agent$MOBILE_UA",
  3308. "编码": "UTF-8",
  3309. "主页url": "https://txdzby.com/",
  3310. "二次截取": "module-items\"&&id=\"page[替换:module-footer>>module-item]",
  3311. "数组": "默认--module-item-cover&&module-item\"||搜索--class=\"module-item-pic\"&&<h3>",
  3312. "链接": "默认--href=\"&&\"||搜索--href=\"&&\"",
  3313. "图片": "默认--data-original=\"&&\"||搜索--data-original=\"&&\"",
  3314. "标题": "默认--title=\"&&\"||搜索--title=\"&&\"",
  3315. "副标题": "默认--text\">&&</div>||搜索--\">&&</a>",
  3316. "简介": "剧情:</span>&&</div>",
  3317. "播放数组": "scroll-content&&</div>",
  3318. "播放列表": "<a&&a>",
  3319. "播放链接": "href=\"&&\"",
  3320. "播放标题": ">&&</span>",
  3321. "线路数组": "module-tab-item tab-item&&</div>",
  3322. "线路标题": "value=\"&&\"[不包含:秒播]",
  3323. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3324. "搜索模式": "1",
  3325. "搜索url": "https://txdzby.com/xunbosc/{wd}----------{pg}---.html",
  3326. "分类url": "https://txdzby.com/xunbosw/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}",
  3327. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$5",
  3328. "类型": "喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#纪录片$13#悬疑片$14#犯罪片$15#奇幻片$16#动画片$31#预告片$32||国产剧$17#港台剧$18#日韩剧$20#欧美剧$21#海外剧$22||大陆综艺$23#日韩综艺$24#欧美综艺$25#港台综艺$26||国产动漫$27#日韩动漫$28#欧美动漫$29#其他动漫$30||空"
  3329. }
  3330. },
  3331. {
  3332. "key": "csp_白羊電影",
  3333. "name": "🎥|白羊電影",
  3334. "type": 3,
  3335. "api": "csp_XBPQ",
  3336. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3337. "searchable": 1,
  3338. "quickSearch": 1,
  3339. "filterable": 1,
  3340. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/白羊影院.json"
  3341. },
  3342. {
  3343. "key": "csp_七味影院",
  3344. "name": "🎥|七味",
  3345. "type": 3,
  3346. "api": "csp_XBPQ",
  3347. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3348. "searchable": 1,
  3349. "quickSearch": 1,
  3350. "filterable": 1,
  3351. "ext": {
  3352. "请求头": "User-Agent$MOBILE_UA",
  3353. "编码": "UTF-8",
  3354. "防走丢": "https://www.qwmkv.com/",
  3355. "主页url": "https://www.pkmp4.xyz/",
  3356. "二次截取": "class=\"pic-list clearfix\"&&</ul>",
  3357. "数组": "<li>&&</li>",
  3358. "标题": "title=\"&&\"",
  3359. "图片": "src=\"&&\"",
  3360. "副标题": "</i>&&</span>",
  3361. "链接": "href=\"&&\"",
  3362. "播放数组": "class=\"player\"&&</ul>",
  3363. "播放链接": "href=\"&&\"",
  3364. "播放列表": "<a&&a>",
  3365. "播放标题": ">&&</",
  3366. "线路数组": "<option&&option>",
  3367. "线路标题": ">&&</",
  3368. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3369. "分类url": "https://www.pkmp4.xyz/ms/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  3370. "分类": "电影$1#剧集$2#综艺$3#动漫$4#短剧$30"
  3371. }
  3372. },
  3373. {
  3374. "key": "csp_中畅影院",
  3375. "name": "🎥|中畅",
  3376. "type": 3,
  3377. "api": "csp_XBPQ",
  3378. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3379. "ext": {
  3380. "请求头": "User-Agent$MOBILE_UA",
  3381. "编码": "UTF-8",
  3382. "主页url": "https://szdy168.com/",
  3383. "数组": "默认--lazyload\"&&</a>||搜索--lazyload\"&&</a>",
  3384. "标题": "默认--title=\"&&\"||搜索--title=\"&&\"",
  3385. "图片": "默认--data-original=\"&&\"||搜索--data-original=\"&&\"",
  3386. "副标题": "默认--right\">&&</span>||搜索--right\">&&</span>",
  3387. "链接": "默认--href=\"&&\"||搜索--href=\"&&\"",
  3388. "播放数组": "playlist clearfix&&</ul>",
  3389. "播放列表": "<a&&a>",
  3390. "播放链接": "href=\"&&\"",
  3391. "播放标题": ">&&</",
  3392. "线路数组": "more text-muted pull-right&&</div>",
  3393. "线路标题": "title\">&&</",
  3394. "简介": "learfix\"><p>&&</p>",
  3395. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3396. "搜索url": "https://szdy168.com/sousuoye/{wd}----------{pg}---.html",
  3397. "分类url": "https://szdy168.com/show/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  3398. "分类": "电影&电视剧&动漫&综艺",
  3399. "分类值": "dianying&dianshiju&dongman&zongyi"
  3400. }
  3401. },
  3402. {
  3403. "key": "csp_电视狗影视",
  3404. "name": "🎥|电视狗",
  3405. "type": 3,
  3406. "api": "csp_XBPQ",
  3407. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3408. "searchable": 1,
  3409. "quickSearch": 1,
  3410. "filterable": 1,
  3411. "ext": {
  3412. "请求头": "User-Agent$MOBILE_UA",
  3413. "编码": "UTF-8",
  3414. "主页url": "https://tvgoo.top/",
  3415. "数组": "<li>&&</li>",
  3416. "标题": "title=\"&&\"",
  3417. "图片": "src=\"&&\"",
  3418. "链接": "href=\"&&\"",
  3419. "简介": "class=\"description\">&&</div>",
  3420. "播放数组": "<div class=\"playlist\">&&</div>",
  3421. "播放列表": "<li&&</li>",
  3422. "播放链接": "href=\"&&\"",
  3423. "播放标题": "title=\"&&\"",
  3424. "线路二次截取": "class=\"description\"&&class=\"list mb\"",
  3425. "线路数组": "class=\"box p15\"&&class=\"t_line\"",
  3426. "线路标题": "<h5&&</h5>",
  3427. "搜索模式": "1",
  3428. "搜索url": "https://tvgoo.top/search.php?page={pg}&searchword={wd}&searchtype=",
  3429. "搜索数组": "<li>&&</li>",
  3430. "搜索标题": "title=\"&&\"",
  3431. "搜索图片": "alt=\"&&\"",
  3432. "跳转播放链接": "urlDecode(ar now=unescape(\"&&\"))",
  3433. "分类url": "https://tvgoo.top/fdagtm/{cateId}-{catePg}.html",
  3434. "分类": "电影$1#电视剧$2#综艺$4#动漫$3#福利片$15",
  3435. "类型": "动作片$5#喜剧片$6#爱情片$7#科幻片$8#恐怖片$9#战争片$10#剧情片$11#纪录片$12#网络电影$13#动画片$14#解说$27||国产剧$16#网络剧$17#港剧$18#台剧$19#日剧$20#韩剧$21#美剧$22#英剧$23#泰剧$24#海外剧$25||空||空||空"
  3436. }
  3437. },
  3438. {
  3439. "key": "csp_策驰影院",
  3440. "name": "🎥|策驰",
  3441. "type": 3,
  3442. "api": "csp_XBPQ",
  3443. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3444. "searchable": 1,
  3445. "quickSearch": 1,
  3446. "filterable": 1,
  3447. "ext": {
  3448. "作者": "乐哥/241202/",
  3449. "站名": "策驰影院",
  3450. "请求头": "User-Agent$MOBILE_UA",
  3451. "编码": "UTF-8",
  3452. "图片代理": "0",
  3453. "直接播放": "0",
  3454. "播放请求头": "",
  3455. "主页url": "https://www.ccy1.com",
  3456. "首页": "120",
  3457. "起始页": "1",
  3458. "分类url": "https://www.ccy1.com/vod/list/{catePg}/{cateId}/{class}/{year}/0/0/0/0",
  3459. "分类": "电影$77/0/0#电视剧$78/0/0#综艺$79/0/0#动漫$80/0/0#短剧$165/0/0#体育$166/0/0#演唱会$170/0/0#4k电影$164/0/0",
  3460. "数组": "public-list-bj&&</a>",
  3461. "标题": "alt=\"&&\"",
  3462. "图片": "data-src=\"&&\"",
  3463. "副标题": "ft2\">&&<",
  3464. "链接": "href=\"&&\"",
  3465. "影片年代": "remarks\">&&<",
  3466. "状态": "豆瓣 :&&</div>",
  3467. "导演": "导演 :&&</div>",
  3468. "主演": "演员 :&&</div",
  3469. "简介": "check selected\">&&</div>",
  3470. "线路数组": "fa ds-dianying&&/a>",
  3471. "线路标题": "</i>&&<",
  3472. "播放二次截取": "",
  3473. "播放数组": "list-play&&</ul>",
  3474. "倒序": "",
  3475. "播放列表": "<a&&/a>",
  3476. "播放标题": ">&&<",
  3477. "播放链接": "",
  3478. "解析": "",
  3479. "跳转播放链接": "",
  3480. "跳转解析": "",
  3481. "搜索请求头": "User-Agent$MOBILE_UA",
  3482. "搜索url": "/search/index.html?keyword={wd}&page={pg}",
  3483. "筛选": "1",
  3484. "类型": "动作片$77/85/0/0#喜剧片$77/86/0/0#爱情片$77/87/0/0#恐怖片$77/88/0/0#剧情片$77/89/0/0#科幻片$77/90/0/0#惊悚片$77/91/0/0#奇幻片$77/92/0/0#动画片$77/93/0/0#悬疑片$77/94/0/0#冒险片$77/95/0/0#纪录片$77/96/0/0#战争片$77/97/0/0#影视解说$77/162/0/0||国产剧$78/98/0/0#香港剧$78/99/0/0#台湾剧$78/100/0/0#欧美剧$78/101/0/0#日本剧$78/102/0/0#韩国剧$78/103/0/0#泰国剧$78/104/0/0#海外剧$78/105/0/0||大陆综艺$79/106/0/0#港台综艺$79/107/0/0#日韩综艺$79/108/0/0#欧美综艺$79/109/0/0#海外综艺$79/110/0/0||国产动漫$80/111/0/0#日本动漫$80/112/0/0#欧美动漫$80/113/0/0#海外动漫$80/114/0/0||空||篮球$166/167/0/0#足球$166/168/0/0#斯诺克$166/169/0/0#网球$166/180/0/0||空||空||空"
  3485. }
  3486. },
  3487. {
  3488. "key": "csp_旺旺影视",
  3489. "name": "🎥|旺旺",
  3490. "type": 3,
  3491. "api": "csp_XBPQ",
  3492. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3493. "searchable": 1,
  3494. "quickSearch": 1,
  3495. "filterable": 1,
  3496. "ext": {
  3497. "请求头": "User-Agent$MOBILE_UA",
  3498. "编码": "UTF-8",
  3499. "主页url": "https://www.wwgz.cn/",
  3500. "二次截取": "resize_list\"&&</ul>",
  3501. "数组": "<li&&/li>",
  3502. "标题": "title=\"&&\"",
  3503. "图片": "src=\"&&\"",
  3504. "副标题": "<span>&&</em>",
  3505. "链接": "href=\"&&\"",
  3506. "播放数组": "class=\"numList\"&&</ul>",
  3507. "播放列表": "<a&&a>",
  3508. "播放链接": "href=\"&&\"",
  3509. "播放标题": ">&&</",
  3510. "线路数组": "<li><a href=\"javascript:;&&</li>",
  3511. "线路标题": "\">&&</a>",
  3512. "分类url": "https://www.wwgz.cn/vod-list-id-{cateId}-pg-{catePg}-order--by-{by}-class-{class}-year-{year}-letter-{letter}-area-{area}-lang-{lang}.html",
  3513. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$26",
  3514. "类型": "动作片$5#喜剧片$6#爱情片$7#科幻片$8#恐怖片$9#剧情片$10#战争片$11#惊悚片$16#奇幻片$17||国产剧#12港台泰#13日韩剧#14欧美剧#15||空||动漫剧#18动漫片#19||空"
  3515. }
  3516. },
  3517. {
  3518. "key": "hipy_js_茶杯狐",
  3519. "name": "🎥|茶杯狐",
  3520. "type": 3,
  3521. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  3522. "searchable": 1,
  3523. "quickSearch": 1,
  3524. "filterable": 1,
  3525. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/茶杯狐.js"
  3526. },
  3527. {
  3528. "key": "hipy_js_电影先生",
  3529. "name": "🎥|电影先生",
  3530. "type": 3,
  3531. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  3532. "searchable": 1,
  3533. "quickSearch": 1,
  3534. "filterable": 1,
  3535. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/电影先生.js"
  3536. },
  3537. {
  3538. "key": "csp_花姐影院",
  3539. "name": "🎥|花姐",
  3540. "type": 3,
  3541. "api": "csp_XBPQ",
  3542. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3543. "searchable": 1,
  3544. "quickSearch": 1,
  3545. "filterable": 1,
  3546. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/花姐影院.json"
  3547. },
  3548. {
  3549. "key": "csp_即看影视",
  3550. "name": "🎥|即看",
  3551. "type": 3,
  3552. "api": "csp_XBPQ",
  3553. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3554. "searchable": 1,
  3555. "quickSearch": 1,
  3556. "filterable": 1,
  3557. "ext": {
  3558. "请求头": "User-Agent$MOBILE_UA",
  3559. "编码": "UTF-8",
  3560. "主页url": "https://www.jkv.app/",
  3561. "数组": "lazyload\"&&</a>",
  3562. "标题": "title=\"&&\"",
  3563. "图片": "data-background-image=\"&&\"",
  3564. "副标题": "class=\"xszxj text_right\">&&</span>",
  3565. "简介": "\"display:none;\"><span>&&</span>",
  3566. "链接": "href=\"&&\"",
  3567. "播放数组": "playlist list_scroll clearfix&&</ul>",
  3568. "播放列表": "<li>&&</li>",
  3569. "播放链接": "href=\"&&\"",
  3570. "播放标题": ">&&</a>",
  3571. "线路数组": "<a href=\"javascript:void(0);\"&&</a>",
  3572. "线路标题": "alt=\"&&\"",
  3573. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3574. "搜索url": "https://www.jkv.app/search/{wd}----------{pg}---.html",
  3575. "分类url": "https://www.jkv.app/show/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  3576. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$53#儿童$58",
  3577. "类型": "动作$6#灾难$32#惊悚$31#悬疑$30#剧情$11#奇幻$28#喜剧$7#犯罪$29#战争$12#恐怖$10#爱情$8#枪战$36#冒险$38#科幻$9#魔幻$37#古装$49#武侠$35#西部$41#历史$33#青春$40#家庭$39#动画$43#音乐$46#纪录片$34#儿童$42#传记$47#歌舞$54||国产剧$13#欧美剧$16#港台剧$14#日韩剧$15#泰国剧$44#海外剧$45||空||番剧(B站)$50#国创(B站)$51||空||空",
  3578. "剧情": "喜剧&爱情&恐怖&冒险&枪战&惊悚&悬疑&动作&科幻&剧情&谍战&战争&警匪&犯罪&动画&搞笑&奇幻&武侠&经典&青春&文艺&古装&历史&运动&农村&儿童&网络电影||偶像&喜剧&搞笑&家庭&古风&校园&犯罪&复仇&动作&奇幻&剧情&历史&谍战&短剧&古装&仙侠&穿越&战争&青春&霸总&玄幻&爽文&异能&热血&神豪&重生&灵异&虐恋&甜宠&豪门&逆袭&战神&经典&乡村&情景&商战&网剧||真人秀&选秀&搞笑&情亲&情感&访谈&播报&旅游&音乐&美食&纪实&曲艺&生活&游戏互动&财经&求职||科幻&热血&推理&搞笑&冒险&剧情&动作&动画&悬疑&奇幻&萝莉&校园&动作&机战&运动&战争&少年&少女&社会&原创&亲子&益智&励志&情感&其他||霸总&玄幻&异能&热血&神豪&重生&灵异&虐恋&豪门&逆袭&战神&爱情&复仇&喜剧&甜宠&悬疑&互动&古风&校园||认知&启蒙&教育&儿歌&故事&学英语&卡通&百科&国学&手工&运动&识字&数学&美术&舞蹈&音乐&诗词&运动&口才&其他",
  3579. "剧情值": "*",
  3580. "排序": "最新上映$time#超高人气$hits#全网热播$up#高分好评$score"
  3581. }
  3582. },
  3583. {
  3584. "key": "csp_nu",
  3585. "name": "🎥|Nuu",
  3586. "type": 3,
  3587. "api": "csp_XBPQ",
  3588. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3589. "ext": {
  3590. "分类url": "https://nuu.su/x/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  3591. "分类" : "电影$1#电视剧$2#综艺$3#动漫$4#短剧$5#紀錄$6"
  3592. }
  3593. },
  3594. {
  3595. "key": "csp_420kvm",
  3596. "name": "🎥|420",
  3597. "type": 3,
  3598. "api": "csp_XBPQ",
  3599. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3600. "searchable": 1,
  3601. "changeable": 1,
  3602. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/420影视.json"
  3603. },
  3604. {
  3605. "key": "csp_If101",
  3606. "name": "️🎥|If101",
  3607. "type": 3,
  3608. "api": "csp_XBPQ",
  3609. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3610. "searchable": 1,
  3611. "quickSearch": 1,
  3612. "filterable": 1,
  3613. "ext": {
  3614. "简介": "content_desc context clearfix\">&&</span>",
  3615. "分类url": "https://www.olehdtv.com/index.php/vod/show/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  3616. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  3617. }
  3618. },
  3619. {
  3620. "key": "csp_一个G",
  3621. "name": "🎥|一個G",
  3622. "type": 3,
  3623. "api": "csp_XBPQ",
  3624. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3625. "searchable": 1,
  3626. "quickSearch": 1,
  3627. "filterable": 1,
  3628. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/一個G.json"
  3629. },
  3630. {
  3631. "key": "csp_一起看影院",
  3632. "name": "🎥|一起看影院",
  3633. "type": 3,
  3634. "api": "csp_XBPQ",
  3635. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3636. "ext": {
  3637. "线路数组": "sb-ico-playerico-Azhan\">&&</li>",
  3638. "分类url": "https://www.cpldq.com/cptype/{cateId}-{catePg}.html",
  3639. "分类": "短剧$30#电视剧$2#国产剧$13#香港剧$14#台湾剧$32#韩剧$16#日剧$33#欧美剧$15#电影$1#动作片$5#爱情片&科幻片$7#恐怖片$8#战争片$9#喜剧片$10#剧情片$12#动漫$4#综艺$3"
  3640. }
  3641. },
  3642. {
  3643. "key": "csp_一起看電影",
  3644. "name": "🎥|一起看電影",
  3645. "type": 3,
  3646. "api": "csp_XBPQ",
  3647. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3648. "searchable": 1,
  3649. "quickSearch": 1,
  3650. "filterable": 1,
  3651. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/一起看.json"
  3652. },
  3653. {
  3654. "key": "csp_片庫網",
  3655. "name": "🎥|片庫網",
  3656. "type": 3,
  3657. "api": "csp_XBPQ",
  3658. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3659. "searchable": 1,
  3660. "quickSearch": 1,
  3661. "filterable": 1,
  3662. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/片庫網.json"
  3663. },
  3664. {
  3665. "key": "csp_大尺度",
  3666. "name": "🎥|大尺度",
  3667. "type": 3,
  3668. "api": "csp_XBPQ",
  3669. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3670. "searchable": 1,
  3671. "quickSearch": 1,
  3672. "filterable": 1,
  3673. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/大尺度.json"
  3674. },
  3675. {
  3676. "key": "csp_暖影院",
  3677. "name": "🎥|暖影院",
  3678. "type": 3,
  3679. "api": "csp_XBPQ",
  3680. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3681. "ext": {
  3682. "副标题": "hl-lc-1remarks\">*&nbsp;|&nbsp;&&</span>",
  3683. "分类url": "https://www.nuantv.com/vodshow/{cateId}/area/{area}/class/{class}/page/{catePg}/year/{year}/",
  3684. "分类": "国产剧$lj#电视剧$dsj#电影$dy#动漫$dm"
  3685. }
  3686. },
  3687. {
  3688. "key": "csp_Y3电影",
  3689. "name": "🎥|Y3电影",
  3690. "type": 3,
  3691. "api": "csp_XBPQ",
  3692. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3693. "searchable": 1,
  3694. "quickSearch": 1,
  3695. "filterable": 1,
  3696. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/Y3電影.json"
  3697. },
  3698. {
  3699. "key": "csp_统一影視",
  3700. "name": "🎥|统一影視",
  3701. "type": 3,
  3702. "api": "csp_XBPQ",
  3703. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3704. "searchable": 1,
  3705. "quickSearch": 1,
  3706. "filterable": 1,
  3707. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/統一影視.json"
  3708. },
  3709. {
  3710. "key": "csp_飄花影院",
  3711. "name": "🎥|飄花影院",
  3712. "type": 3,
  3713. "api": "csp_XBPQ",
  3714. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3715. "searchable": 1,
  3716. "quickSearch": 1,
  3717. "filterable": 1,
  3718. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/飄花影視.json"
  3719. },
  3720. {
  3721. "key": "csp_泰劇網",
  3722. "name": "🎥|🇹🇭泰劇",
  3723. "type": 3,
  3724. "api": "csp_XBPQ",
  3725. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3726. "searchable": 1,
  3727. "quickSearch": 1,
  3728. "filterable": 1,
  3729. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/泰劇.json"
  3730. },
  3731. {
  3732. "key": "csp_XBiu小鴨影音CC",
  3733. "name": "🎥|小鴨影音",
  3734. "type": 3,
  3735. "api": "csp_XBPQ",
  3736. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3737. "searchable": 1,
  3738. "quickSearch": 1,
  3739. "filterable": 1,
  3740. "ext": {
  3741. "分类url": "https://777drama.cc/list/{cateId}/{catePg}",
  3742. "分类" : "電視劇$tv#電影$movie#動漫$anime"
  3743. }
  3744. },
  3745. {
  3746. "key": "csp_樂游影院",
  3747. "name": "🎥|樂游影院",
  3748. "type": 3,
  3749. "api": "csp_XBPQ",
  3750. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3751. "searchable": 1,
  3752. "quickSearch": 1,
  3753. "filterable": 1,
  3754. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/樂遊影院.json"
  3755. },
  3756. {
  3757. "key": "csp_星辰影院",
  3758. "name": "🎥|星辰影院(CI)",
  3759. "type": 3,
  3760. "api": "csp_XBPQ",
  3761. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3762. "searchable": 1,
  3763. "quickSearch": 1,
  3764. "filterable": 1,
  3765. "ext": {
  3766. "播放标题": ">&&<[不包含:1080P]",
  3767. "分类url": "https://citytv.cc/tv/dianying/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}",
  3768. "分类": "电影$dianying#电视剧$dianshiju#动漫$dongman#综艺$zongyi#短剧$duanju"
  3769. }
  3770. },
  3771. {
  3772. "key": "csp_星辰影院GY",
  3773. "name": "🎥|星辰影院(GY)",
  3774. "type": 3,
  3775. "api": "csp_XBPQ",
  3776. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3777. "searchable": 1,
  3778. "quickSearch": 1,
  3779. "filterable": 1,
  3780. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/星辰影院.json"
  3781. },
  3782. {
  3783. "key": "csp_星辰影院ZH",
  3784. "name": "🎥|星辰影院(ZH)",
  3785. "type": 3,
  3786. "api": "csp_XBPQ",
  3787. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3788. "searchable": 1,
  3789. "quickSearch": 1,
  3790. "filterable": 1,
  3791. "ext": {
  3792. "分类url": "http://m.gyxlgs.com/{cateId}/index___{year}__addtime_{{catePg}}.html",
  3793. "分类": "電視劇$dianshiju#電影$dianying#動漫$dongman#綜藝$zongyi"
  3794. }
  3795. },
  3796. {
  3797. "key": "csp_咕咚電影網",
  3798. "name": "🎥|咕咚電影",
  3799. "type": 3,
  3800. "api": "csp_XBPQ",
  3801. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3802. "searchable": 1,
  3803. "quickSearch": 1,
  3804. "filterable": 1,
  3805. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/咕咚電影.json"
  3806. },
  3807. {
  3808. "key": "csp_電影先生1",
  3809. "name": "🎥|電影先生",
  3810. "type": 3,
  3811. "api": "csp_XBPQ",
  3812. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3813. "searchable": 1,
  3814. "quickSearch": 1,
  3815. "filterable": 1,
  3816. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/電影先生.json"
  3817. },
  3818. {
  3819. "key": "csp_萬博劇院",
  3820. "name": "🎥|萬博劇院",
  3821. "type": 3,
  3822. "api": "csp_XBPQ",
  3823. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3824. "searchable": 1,
  3825. "quickSearch": 1,
  3826. "filterable": 1,
  3827. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/萬博劇院.json"
  3828. },
  3829. {
  3830. "key": "csp_8號影院",
  3831. "name": "🎥|8號影院",
  3832. "type": 3,
  3833. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  3834. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_database/8号影院.js"
  3835. },
  3836. {
  3837. "key": "csp_酷云七七",
  3838. "name": "🎥|酷云七七",
  3839. "type": 3,
  3840. "api": "csp_XBPQ",
  3841. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3842. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/酷雲七七.json"
  3843. },
  3844. {
  3845. "key": "csp_影视工厂",
  3846. "name": "🎥|影视工厂",
  3847. "type": 3,
  3848. "api": "csp_XBPQ",
  3849. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3850. "searchable": 1,
  3851. "quickSearch": 1,
  3852. "filterable": 1,
  3853. "ext": {
  3854. "搜索图片": "https://vf.keke02.cn/vod_h5_static_kkdy/v20463/img/brand/splash_image.jpg",
  3855. "分类url": "https://www.ysgc8.cc/vodshow/1-----------/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  3856. "分类": "电影$1#电视剧$2#动漫$4#综艺$3"
  3857. }
  3858. },
  3859. {
  3860. "key": "csp_SKY影视",
  3861. "name": "🎥|SKY影视",
  3862. "type": 3,
  3863. "api": "csp_XBPQ",
  3864. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3865. "searchable": 1,
  3866. "quickSearch": 1,
  3867. "filterable": 1,
  3868. "ext": {
  3869. "请求头": "User-Agent$MOBILE_UA",
  3870. "编码": "UTF-8",
  3871. "主页url": "https://www.skyinnovationgroup.com/",
  3872. "数组": "fed-lazy&&</li>",
  3873. "标题": "html\">&&</a>",
  3874. "图片": "data-original=\"&&\"",
  3875. "副标题": "center\">&&</span>",
  3876. "链接": "href=\"&&\"",
  3877. "简介": "简介:&&</p>",
  3878. "线路数组": "<span id&&span>",
  3879. "线路标题": "\">&&</",
  3880. "播放数组": "ulNumList clearfix list&&</ul>",
  3881. "倒序": "0",
  3882. "播放列表": "<a&&a>",
  3883. "播放标题": ">&&</",
  3884. "播放链接": "href=\"&&\"",
  3885. "跳转播放链接": "var now=\"&&\"",
  3886. "搜索模式": "1",
  3887. "搜索url": "https://www.skyinnovationgroup.com/search.php?page={pg}&searchword={wd}&searchtype=",
  3888. "分类url": "https://www.skyinnovationgroup.com/search.php?page={catePg}&searchtype=5&order={by}&tid={cateId}&area={area}&year={year}&letter={letter}&yuyan={lang}&state=&money=&ver=&jq={class}",
  3889. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#解说$37",
  3890. "类型": "动作片$5#爱情片$6#科幻片$7#恐怖片$8#战争片$9#喜剧片$10#纪录片$11#剧情片$12#惊悚片$38#悬疑片$39#犯罪片$40#奇幻片$41#纪实片$42||电视剧$13#港剧$14#美剧$15#韩剧$16#日剧$25#台剧$28#泰剧$29#短剧$30||综艺$26||樱花动漫$27#动漫电影$31#日韩动漫$32#国产动漫$34#欧美动漫$35#港台动漫$36||解说$33",
  3891. "排序": "按时间$time#按人气$hit#按推荐$commend"
  3892. }
  3893. },
  3894. {
  3895. "key": "csp_全视频TV",
  3896. "name": "🎥|视频TV",
  3897. "type": 3,
  3898. "api": "csp_XBPQ",
  3899. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3900. "searchable": 1,
  3901. "quickSearch": 1,
  3902. "filterable": 1,
  3903. "ext": {
  3904. "请求头": "User-Agent$MOBILE_UA",
  3905. "编码": "UTF-8",
  3906. "数组": "class=\"hl-item-thumb hl-lazy\"&&</a>",
  3907. "标题": "title=\"&&\"",
  3908. "图片": "data-original=\"&&\"",
  3909. "副标题": "remarks\">&&</span>",
  3910. "链接": "href=\"&&\"",
  3911. "播放数组": "class=\"hl-plays-list&&</ul>",
  3912. "播放列表": "<a&&a>",
  3913. "播放链接": "href=\"&&\"",
  3914. "播放标题": ">&&</",
  3915. "线路数组": "class=\"hl-tabs-btn&&a>",
  3916. "线路标题": "alt=\"&&\"",
  3917. "跳转播放链接": "var player_*\"url\":\"&&\"",
  3918. "主页url": "http://www.scycjc.com/",
  3919. "分类url": "http://www.scycjc.com/dtype/{cateId}-{catePg}.html",
  3920. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  3921. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动漫电影$21#电影片$22||国产剧$13#港台剧$14#韩剧$15#美剧$16#日剧$19#泰剧$20||空||空"
  3922. }
  3923. },
  3924. {
  3925. "key": "csp_飯糰影視",
  3926. "name": "🎥|飯糰影視",
  3927. "type": 3,
  3928. "api": "csp_XBPQ",
  3929. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3930. "searchable": 1,
  3931. "quickSearch": 1,
  3932. "filterable": 1,
  3933. "ext": {
  3934. "分类url": "https://www.fwdq.cc/vshow/{cateId}--time------{catePg}---.html",
  3935. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  3936. }
  3937. },
  3938. {
  3939. "key": "csp_影視工廠",
  3940. "name": "🎥|影視工廠",
  3941. "type": 3,
  3942. "api": "csp_XBPQ",
  3943. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3944. "searchable": 1,
  3945. "quickSearch": 1,
  3946. "filterable": 1,
  3947. "ext": {
  3948. "分类url": "https://www.ysgctv.com/vodshow/{cateId}--time------{catePg}---.html",
  3949. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  3950. }
  3951. },
  3952. {
  3953. "key": "csp_星空影院②",
  3954. "name": "🎥|星空②",
  3955. "type": 3,
  3956. "api": "csp_XBPQ",
  3957. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3958. "searchable": 1,
  3959. "quickSearch": 1,
  3960. "filterable": 1,
  3961. "ext": {
  3962. "请求头": "User-Agent$MOBILE_UA",
  3963. "编码": "UTF-8",
  3964. "主页url": "https://ixkw.cc/",
  3965. "数组": "img-box cover-md&&</a>",
  3966. "标题": "alt=\"&&\"",
  3967. "图片": "data-src=\"&&\"",
  3968. "副标题": "truncate\">&&</span>",
  3969. "链接": "默认--href=\"&&\"[替换:video>>play#.html>>/1.html]||搜索--href=\"&&\"[替换:video>>play#.html>>/1.html]",
  3970. "播放数组": "<div class=\"row gutter-20\">&&</section>",
  3971. "播放列表": "<a&&a>",
  3972. "播放链接": "href=\"&&\"",
  3973. "播放标题": "title=\"&&\"",
  3974. "线路数组": "class=\"swiper-slide&&div>",
  3975. "线路标题": "orgin-btn\">&&</",
  3976. "搜索url": "https://ixkw.cc/search/{wd}/page/{pg}/",
  3977. "分类url": "https://ixkw.cc/all/{cateId}-{class}-{year}-{by}/page/{catePg}/",
  3978. "分类": "电影$3#国产剧$27360#美剧$1#动漫$23120#日剧$27358#综艺$4#韩剧$27363#港剧$27361#泰剧$27364#台剧$27362#海外剧$27365",
  3979. "剧情": "剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931||剧情$130712#喜剧$130713#爱情$130739#动作$130754#惊悚$130760#动画$137907#悬疑$130720#犯罪$131047#恐怖$130771#科幻$130721#奇幻$130968#家庭$130842#冒险$130753#古装$140022#历史$131263#战争$131618#真人秀$131259#传记$130896#同性$131012#短片$135141#音乐$130897#纪录片$130709#武侠$154676#儿童$132591#运动$130833#歌舞$131711#西部$133191#脱口秀$153159#灾难$130819#戏曲$168979#黑色电影$169931",
  3980. "排序": "最近更新$空#最多观看$hits#最佳口碑$score#最高点赞$like"
  3981. }
  3982. },
  3983. {
  3984. "key": "csp_vodimg资源",
  3985. "name": "🎥|vodimg",
  3986. "type": 1,
  3987. "api": "https://cj.vodimg.top/api.php/provide/vod/&type=2&mid=1",
  3988. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3989. "searchable": 1,
  3990. "changeable": 1,
  3991. "categories": []
  3992. },
  3993. {
  3994. "key": "csp_XBiu大師兄影視",
  3995. "name": "🎥|大師兄影視(XB)",
  3996. "type": 3,
  3997. "api": "csp_XBPQ",
  3998. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  3999. "searchable": 1,
  4000. "quickSearch": 1,
  4001. "filterable": 1,
  4002. "ext": {
  4003. "分类url": "https://dsxys.pro/vodshow/{cateId}--time------{catePg}---{year}.html",
  4004. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4005. }
  4006. },
  4007. {
  4008. "key": "csp_XBiu橘猫影視",
  4009. "name": "🎥|橘猫影視(XB)",
  4010. "type": 3,
  4011. "api": "csp_XBPQ",
  4012. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4013. "searchable": 1,
  4014. "quickSearch": 1,
  4015. "filterable": 1,
  4016. "ext": {
  4017. "分类url": "https://www.ie3.cc/index.php/vod/show/id/{cateId}/page/{catePg}/year/{year}.html",
  4018. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$20#動畫片$22#短劇$24"
  4019. }
  4020. },
  4021. {
  4022. "key": "csp_XBiu139YS",
  4023. "name": "🎥|139影視(XB)",
  4024. "type": 3,
  4025. "api": "csp_XBPQ",
  4026. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4027. "searchable": 1,
  4028. "quickSearch": 1,
  4029. "filterable": 1,
  4030. "ext": {
  4031. "分类url": "https://www.139ys.com/vodshow/{cateId}--time------{catePg}---{year}.html",
  4032. "分类": "電視劇$lianxuju#電影$dianying#動漫$dongman#綜藝$zongyi"
  4033. }
  4034. },
  4035. {
  4036. "key": "csp_XBiu子子影視",
  4037. "name": "🎥|子子影視(XB)",
  4038. "type": 3,
  4039. "api": "csp_XBPQ",
  4040. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4041. "searchable": 1,
  4042. "quickSearch": 1,
  4043. "filterable": 1,
  4044. "ext": {
  4045. "线路数组": "module-tab-item tab-item\">&&</span>",
  4046. "简介": "video-info-item video-info-content vod_content\">&&</span>",
  4047. "分类url": "https://www.ziziys.com/vodshow/{cateId}--time------{catePg}---{year}.html",
  4048. "分类": "電視劇$2#電影$1#動漫$3#綜藝$46#動畫片$23#紀錄片$29"
  4049. }
  4050. },
  4051. {
  4052. "key": "csp_XBiu春華影院",
  4053. "name": "🎥|春華影院(XB)",
  4054. "type": 3,
  4055. "api": "csp_XBPQ",
  4056. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4057. "searchable": 1,
  4058. "quickSearch": 1,
  4059. "filterable": 1,
  4060. "ext": {
  4061. "分类url": "https://chuavod.com/index.php/vod/show/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  4062. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$105#體育$104#兒童$107"
  4063. }
  4064. },
  4065. {
  4066. "key": "csp_XBiu555影視",
  4067. "name": "🎥|555電影網(XB)",
  4068. "type": 3,
  4069. "api": "csp_XBPQ",
  4070. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4071. "searchable": 1,
  4072. "quickSearch": 1,
  4073. "filterable": 1,
  4074. "ext": {
  4075. "分类url": "https://www.555zxdy.com/vod/show/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html",
  4076. "分类": "電視劇$2#電影$1#動漫$3#綜藝$4#短劇$45"
  4077. }
  4078. },
  4079. {
  4080. "key": "csp_XBiu海兔影院",
  4081. "name": "🎥|海兔影院(XB)",
  4082. "type": 3,
  4083. "api": "csp_XBPQ",
  4084. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4085. "searchable": 1,
  4086. "quickSearch": 1,
  4087. "filterable": 1,
  4088. "ext": {
  4089. "分类url": "https://www.haituu.tv/vodshow/{cateId}--time---------{year}.html",
  4090. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#短劇$42"
  4091. }
  4092. },
  4093. {
  4094. "key": "csp_XBiu大米星球CN",
  4095. "name": "🎥|大米星球CN(XB)",
  4096. "type": 3,
  4097. "api": "csp_XBPQ",
  4098. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4099. "searchable": 1,
  4100. "quickSearch": 1,
  4101. "filterable": 1,
  4102. "ext": {
  4103. "分类url": "https://www.ifblog.cn/vtshow/{cateId}--time------{catePg}---{year}.html",
  4104. "分类": "電視劇$2#電影$1#動漫$38#綜藝$3#短劇$48"
  4105. }
  4106. },
  4107. {
  4108. "key": "csp_XBiu奈落影院",
  4109. "name": "🎥|奈落影院(XB)",
  4110. "type": 3,
  4111. "api": "csp_XBPQ",
  4112. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4113. "searchable": 1,
  4114. "quickSearch": 1,
  4115. "filterable": 1,
  4116. "ext": {
  4117. "分类url": "https://newfii.com/vodshow/{cateId}--time------{catePg}---{year}.html",
  4118. "分类": "電視劇$2#電影$1#動漫$3#綜藝$4#紀錄片$5#體育$45#短劇$53#B站片庫$39"
  4119. }
  4120. },
  4121. {
  4122. "key": "csp_XBiu星空影視",
  4123. "name": "🎥|星空影視(XB)",
  4124. "type": 3,
  4125. "api": "csp_XBPQ",
  4126. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4127. "searchable": 1,
  4128. "quickSearch": 1,
  4129. "filterable": 1,
  4130. "ext": {
  4131. "分类url": "http://www.xinhaimotor.com/vodshow/{cateId}/by/time/page/{catePg}/year/{year}.html",
  4132. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4133. }
  4134. },
  4135. {
  4136. "key": "csp_XBiuYouKnowTV",
  4137. "name": "🎥|YouKnowTV(XB)",
  4138. "type": 3,
  4139. "api": "csp_XBPQ",
  4140. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4141. "searchable": 1,
  4142. "quickSearch": 1,
  4143. "filterable": 1,
  4144. "ext": {
  4145. "分类url": "https://www.youknow.tv/show/{cateId}--time------{catePg}---{year}/",
  4146. "分类": "電視劇$1#電影$2#動漫$4#綜藝$3#紀錄片$5#短劇$55"
  4147. }
  4148. },
  4149. {
  4150. "key": "csp_XBiuIKP",
  4151. "name": "🎥|愛看片(XB)",
  4152. "type": 3,
  4153. "api": "csp_XBPQ",
  4154. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4155. "searchable": 1,
  4156. "quickSearch": 1,
  4157. "filterable": 1,
  4158. "ext": {
  4159. "分类url": "https://ikdying.com/index.php/vod/show/id/{cateId}/page/{catePg}/year/{year}.html",
  4160. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$23#體育$34#短劇$52"
  4161. }
  4162. },
  4163. {
  4164. "key": "csp_XBiu小新TV",
  4165. "name": "🎥|小新TV(XB)",
  4166. "type": 3,
  4167. "api": "csp_XBPQ",
  4168. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4169. "searchable": 1,
  4170. "quickSearch": 1,
  4171. "filterable": 1,
  4172. "ext": {
  4173. "分类url": "https://xintv.app/index.php/vod/show/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  4174. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$20#體育$21#短劇$22#動畫電影$24"
  4175. }
  4176. },
  4177. {
  4178. "key": "csp_XBiu4K影院",
  4179. "name": "🎥|4K影院(XB)",
  4180. "type": 3,
  4181. "api": "csp_XBPQ",
  4182. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4183. "searchable": 1,
  4184. "quickSearch": 1,
  4185. "filterable": 1,
  4186. "ext": {
  4187. "分类url": "https://4k4k.live/vodshow/{cateId}--time------{catePg}---{year}.html",
  4188. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$20"
  4189. }
  4190. },
  4191. {
  4192. "key": "csp_XBiu飄花電影網",
  4193. "name": "🎥|飄花電影網(XB)",
  4194. "type": 3,
  4195. "api": "csp_XBPQ",
  4196. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4197. "searchable": 1,
  4198. "quickSearch": 1,
  4199. "filterable": 1,
  4200. "ext": {
  4201. "线路数组": "class=\"stui-pannel-box b playlist mb\">&&</div>",
  4202. "简介": "display: none;\">&&</span>",
  4203. "分类url": "https://www.kahlercom.com/vodshow/{cateId}--time------{catePg}---{year}.html",
  4204. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4205. }
  4206. },
  4207. {
  4208. "key": "csp_XBiu蓝光影视",
  4209. "name": "🎥|蓝光影视CC(XB)",
  4210. "type": 3,
  4211. "api": "csp_XBPQ",
  4212. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4213. "searchable": 1,
  4214. "quickSearch": 1,
  4215. "filterable": 1,
  4216. "ext": {
  4217. "线路数组": "class=\"module-tab-item tab-item\">&&</div>",
  4218. "简介": "video-info-item video-info-content\">&&</span >",
  4219. "分类url": "https://www.zznzjcty.com/vodshow/{cateId}--time------{catePg}---{year}.html",
  4220. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4221. }
  4222. },
  4223. {
  4224. "key": "csp_XBiu蛋蛋魔法影视",
  4225. "name": "🎥|蛋蛋魔法影视(XB)",
  4226. "type": 3,
  4227. "api": "csp_XBPQ",
  4228. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4229. "searchable": 1,
  4230. "quickSearch": 1,
  4231. "filterable": 1,
  4232. "ext": {
  4233. "分类url": "https://ddmf.net/vodshow/{cateId}--time------{catePg}---.html",
  4234. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4235. }
  4236. },
  4237. {
  4238. "key": "csp_XBiu臭蛋蛋影视",
  4239. "name": "🎥|臭蛋蛋影视(XB)",
  4240. "type": 3,
  4241. "api": "csp_XBPQ",
  4242. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4243. "searchable": 1,
  4244. "quickSearch": 1,
  4245. "filterable": 1,
  4246. "ext": {
  4247. "分类url": "https://cddys1.me/vodshow/{cateId}--time------{catePg}---{year}.html",
  4248. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$38"
  4249. }
  4250. },
  4251. {
  4252. "key": "csp_XBPQ_白嫖者",
  4253. "name": "🎥|白嫖者影视(XB)",
  4254. "type": 3,
  4255. "api": "csp_XBPQ",
  4256. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4257. "searchable": 1,
  4258. "quickSearch": 1,
  4259. "filterable": 1,
  4260. "ext": {
  4261. "分类url": "https://www.qyzf88.com/qyvodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html",
  4262. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3",
  4263. "副标题": "class=\"pic-text text-right\"&&</span>",
  4264. "简介": "剧情介绍:&&</p >"
  4265. }
  4266. },
  4267. {
  4268. "key": "csp_XBiu黑貓TV",
  4269. "name": "🎥|黑貓TV(XB)",
  4270. "type": 3,
  4271. "api": "csp_XBPQ",
  4272. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4273. "searchable": 1,
  4274. "quickSearch": 1,
  4275. "filterable": 1,
  4276. "ext": {
  4277. "线路数组" : "class=\"anthology-tab nav-swiper b-b br\">&&</span>",
  4278. "简介" : "text cor3\">&&</div>" ,
  4279. "分类url": "https://www.heimaotv.vip/vod/show/id/{cateId}.html" ,
  4280. "分类" : "電視劇$49#電影$31#動漫$59#綜藝$66#紀錄片$79#體育$81"
  4281. }
  4282. },
  4283. {
  4284. "key": "csp_XBiu飛流視頻",
  4285. "name": "🎥|飛流視頻(XB)",
  4286. "type": 3,
  4287. "api": "csp_XBPQ",
  4288. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4289. "searchable": 1,
  4290. "quickSearch": 1,
  4291. "filterable": 1,
  4292. "ext": {
  4293. "分类url": "https://www.flixflop.com/explore/{cateId}?page={catePg}&year={year}&sort=recently_updated",
  4294. "分类": "電視劇$151438147794763777#電影$151438147786375168#動漫$151438147807346690#綜藝$151438147807346691#體育$151438147807346693#短劇$331153971999670710"
  4295. }
  4296. },
  4297. {
  4298. "key": "csp_XBiu在線電影網",
  4299. "name": "🎥|在線電影網(XB)",
  4300. "type": 3,
  4301. "api": "csp_XBPQ",
  4302. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4303. "searchable": 1,
  4304. "quickSearch": 1,
  4305. "filterable": 1,
  4306. "ext": {
  4307. "分类url": "http://www.gtzl.net/vodshow/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  4308. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4309. }
  4310. },
  4311. {
  4312. "key": "csp_XBiu無極影視",
  4313. "name": "🎥|無極影視(XB)",
  4314. "type": 3,
  4315. "api": "csp_XBPQ",
  4316. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4317. "searchable": 1,
  4318. "quickSearch": 1,
  4319. "filterable": 1,
  4320. "ext": {
  4321. "线路数组": "class=\"clearfix fade in active\">&&</div>",
  4322. "简介": "details-content-all collapse\">&&</span>",
  4323. "分类url": "https://www.wuji12.com/{cateId}/index___{year}__addtime_{catePg}.html",
  4324. "分类": "電視劇$dianshiju#電影$dianying#動漫$dongman#綜藝$zongyi"
  4325. }
  4326. },
  4327. {
  4328. "key": "csp_XBiuDYDY",
  4329. "name": "🎥|DY-DY.COM(XB)",
  4330. "type": 3,
  4331. "api": "csp_XBPQ",
  4332. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4333. "searchable": 1,
  4334. "quickSearch": 1,
  4335. "filterable": 1,
  4336. "ext": {
  4337. "分类url": "https://dy-dy.com/video/{cateId}/by/time/page/{catePg}/year/{year}",
  4338. "分类": "電視劇$lianxuju/#電影$dianying#動漫$dongman#綜藝$zongyi#短劇$duanju"
  4339. }
  4340. },
  4341. {
  4342. "key": "csp_XBiuVIP1280",
  4343. "name": "🎥|VIP1280(XB)",
  4344. "type": 3,
  4345. "api": "csp_XBPQ",
  4346. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4347. "searchable": 1,
  4348. "quickSearch": 0,
  4349. "filterable": 1,
  4350. "ext": {
  4351. "简介": "detail-sketch\">&&</span>",
  4352. "分类url": "https://vip1280.net/frim/{cateId}/by/time/page/{catePg}/year/{year}.html",
  4353. "分类": "電視劇$index2#電影$index1#港台$index3#歐美$index4#日韓$index5"
  4354. }
  4355. },
  4356. {
  4357. "key": "csp_XBiuLIBVIO",
  4358. "name": "🎥|LIBVIO(XB)",
  4359. "type": 3,
  4360. "api": "csp_XBPQ",
  4361. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4362. "searchable": 1,
  4363. "quickSearch": 0,
  4364. "filterable": 1,
  4365. "ext": {
  4366. "分类url": "https://www.libvio.cc/show/{cateId}-{area}-{by}------{catePg}---{year}.html",
  4367. "分类": "電影$1#電視劇$2#綜藝$3#動漫$4",
  4368. "地区":"中国大陆&中国香港&中国台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&義大利&西班牙||中国大陆&中国台湾&中国香港&韩国&日本&美国&泰国&英国&新加坡&其他||内地&港台&日韩&欧美||中国大陆&日本&欧美&其他"
  4369. }
  4370. },
  4371. {
  4372. "key": "csp_XBiuSMYY",
  4373. "name": "🎥|神馬影院(XB)",
  4374. "type": 3,
  4375. "api": "csp_XBPQ",
  4376. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4377. "playUrl": "https://www.smyy.vip/static/?url=",
  4378. "searchable": 1,
  4379. "quickSearch": 1,
  4380. "filterable": 1,
  4381. "ext": {
  4382. "线路数组": "class=\"playlist-tab ewave-swiper ewave-swiper-nav\">&&</div>",
  4383. "简介": "text text-row text-row-2\">&&</div>",
  4384. "分类url": "https://www.smyy.vip/n/{cateId}/by/time/page/{catePg}/year/{year}.html",
  4385. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3#紀錄片$20#短劇$21"
  4386. }
  4387. },
  4388. {
  4389. "key": "csp_XBiu努努影院",
  4390. "name": "🎥|努努影院(XB)",
  4391. "type": 3,
  4392. "api": "csp_XBPQ",
  4393. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4394. "searchable": 1,
  4395. "quickSearch": 1,
  4396. "filterable": 1,
  4397. "ext": {
  4398. "线路数组": "class=\"playlist clearfix\">&&</span>",
  4399. "简介": "product-excerpt\">&&</div>",
  4400. "分类url": "https://nnyy.in/{cateId}/?year={year}&country={area}&genre={class}",
  4401. "分类": "電視劇$dianshiju#電影$dianying#動漫$dongman#綜藝$zongyi"
  4402. }
  4403. },
  4404. {
  4405. "key": "csp_XBPQ_qiyouyy2",
  4406. "name": "🎥|奇優",
  4407. "type": 3,
  4408. "api": "csp_XBPQ",
  4409. "searchable": 1,
  4410. "quickSearch": 1,
  4411. "filterable": 1,
  4412. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4413. "ext": {
  4414. "分类url": "http://www.jzhcjs.com/qys/{cateId}/area/{area}/page/{catePg}/year/{year}.html",
  4415. "分类": "电影$dianying#电视剧$dianshiju#综艺$zongyi#动漫$dongman#短剧$fuli#纪录片$jilu"
  4416. }
  4417. },
  4418. {
  4419. "key": "csp_小宝影院XBYY",
  4420. "name": "🎥|小寶|備用2",
  4421. "type": 3,
  4422. "api": "csp_XBPQ",
  4423. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4424. "searchable": 1,
  4425. "quickSearch": 1,
  4426. "filterable": 1,
  4427. "ext": {
  4428. "简介": "+display: none;\">&&</span>",
  4429. "分类url": "https://xbyy.app/index.php/vod/show/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  4430. "分类": "電視劇$2#電影$1#動漫$4#綜藝$3"
  4431. }
  4432. },
  4433. {
  4434. "key": "csp_小宝影院xiaoxintv",
  4435. "name": "🎥|小寶|備用3",
  4436. "type": 3,
  4437. "api": "csp_XBPQ",
  4438. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4439. "searchable": 1,
  4440. "quickSearch": 1,
  4441. "filterable": 1,
  4442. "ext": {
  4443. "简介": "+display: none;\">&&</span>",
  4444. "分类url": "https://xiaoxintv.com/index.php/vod/show/by/time/id/{cateId}/page/{catePg}/year/{year}.html",
  4445. "分类": "電視劇&電影$7#動漫$5#綜藝$3#紀錄片$21#體育$20"
  4446. }
  4447. },
  4448. {
  4449. "key": "csp_XBPQ_视大",
  4450. "name": "🎥|视大",
  4451. "type": 3,
  4452. "api": "csp_XBPQ",
  4453. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4454. "searchable": 1,
  4455. "quickSearch": 1,
  4456. "filterable": 1,
  4457. "ext": {
  4458. "请求头": "User-Agent$MOBILE_UA",
  4459. "编码": "UTF-8",
  4460. "主页url": "https://www.kanjux.com/",
  4461. "数组": "<a class=\"myui-vodlist__thumb&&</a>",
  4462. "标题": "title=\"&&\"",
  4463. "图片": "data-original=\"&&\"",
  4464. "副标题": "text-right\">&&<",
  4465. "链接": "href=\"&&\"",
  4466. "状态": "更新:&&</p>",
  4467. "导演": "导演:&&</p>",
  4468. "主演": "主演:&&</p",
  4469. "简介": "简介:&&</p>",
  4470. "线路数组": "#playlist&&</li>",
  4471. "线路标题": ">&&</",
  4472. "播放数组": "sort-list clearfix&&</ul>",
  4473. "倒序": "0",
  4474. "播放列表": "<a&&/a>",
  4475. "播放标题": ">&&<",
  4476. "播放链接": "href='&&'",
  4477. "搜索模式": "1",
  4478. "搜索url": "https://www.xkanju.com/search.php?page={pg}&searchword={wd}&searchtype=",
  4479. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4480. "分类url": "https://www.xkanju.com/search.php?page={catePg}&searchtype=5&order={by}&tid={cateId}&area={area}&year={year}&letter={letter}&yuyan={lang}&state=&money=&ver=&jq={class}",
  4481. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$67",
  4482. "筛选": "1",
  4483. "类型": "动作片$5#爱情片$6#科幻片$7#恐怖片$8#战争片$9#喜剧片$10#纪录片$11#剧情片$12#奇幻片$28||国产剧$13#港剧$14#欧美剧$15#韩剧$31#日剧$16#台剧$30#其他剧$29||空||空||空"
  4484. }
  4485. },
  4486. {
  4487. "key": "csp_XBPQ_七七",
  4488. "name": "🎥|七七",
  4489. "type": 3,
  4490. "api": "csp_XBPQ",
  4491. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4492. "searchable": 1,
  4493. "quickSearch": 1,
  4494. "filterable": 1,
  4495. "ext": {
  4496. "请求头": "User-Agent$MOBILE_UA",
  4497. "编码": "UTF-8",
  4498. "防走丢": "https://www.qwmkv.com/",
  4499. "主页url": "https://www.pkmp4.xyz/",
  4500. "二次截取": "class=\"pic-list clearfix\"&&</ul>",
  4501. "数组": "<li>&&</li>",
  4502. "标题": "title=\"&&\"",
  4503. "图片": "src=\"&&\"",
  4504. "副标题": "</i>&&</span>",
  4505. "链接": "href=\"&&\"",
  4506. "播放数组": "class=\"player\"&&</ul>",
  4507. "播放链接": "href=\"&&\"",
  4508. "播放列表": "<a&&a>",
  4509. "播放标题": ">&&</",
  4510. "线路数组": "<option&&option>",
  4511. "线路标题": ">&&</",
  4512. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4513. "分类url": "https://www.pkmp4.xyz/ms/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  4514. "分类": "电影$1#剧集$2#综艺$3#动漫$4#短剧$30"
  4515. }
  4516. },
  4517. {
  4518. "key": "csp_XBPQ_新可",
  4519. "name": "🎥|新可",
  4520. "type": 3,
  4521. "api": "csp_XBPQ",
  4522. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4523. "searchable": 1,
  4524. "quickSearch": 1,
  4525. "filterable": 1,
  4526. "ext": {
  4527. "请求头": "User-Agent$MOBILE_UA",
  4528. "编码": "UTF-8",
  4529. "主页url": "https://www.sdjinhengli.com/",
  4530. "二次截取": "class=\"myui-vodlist clearfix\"&&</ul>",
  4531. "数组": "class=\"myui-vodlist__box\"&&</a>",
  4532. "标题": "title=\"&&\"",
  4533. "图片": "src=\"&&\"",
  4534. "副标题": "center\">&&</span>",
  4535. "链接": "href=\"&&\"",
  4536. "播放数组": "class=\"myui-content__list sort-list clearfix\"&&</ul>",
  4537. "播放列表": "<a&&a>",
  4538. "播放链接": "href=\"&&\"",
  4539. "播放标题": ">&&</[不包含:APP秒播]",
  4540. "线路数组": "href=\"\\#playlist&&</li>",
  4541. "线路标题": "class=\"m\">*overflow\">&&</span>",
  4542. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4543. "简介": "剧情介绍:&&</p>",
  4544. "分类url": "https://www.sdjinhengli.com/kkersw/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  4545. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$5",
  4546. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#记录片$13#悬疑片$14#犯罪片$15#奇幻片$16#动画片$31||国产剧$17#港台剧$18#日韩剧$20#欧美剧$21#海外剧$22||大陆综艺$23#日韩综艺$24#欧美综艺$25#港台综艺$26||国产动漫$27#日韩动漫$28#欧美动漫$29#其他动漫$30||空"
  4547. }
  4548. },
  4549. {
  4550. "key": "csp_XBPQ_希望",
  4551. "name": "🎥|希望",
  4552. "type": 3,
  4553. "api": "csp_XBPQ",
  4554. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4555. "searchable": 1,
  4556. "quickSearch": 1,
  4557. "filterable": 1,
  4558. "ext": {
  4559. "请求头": "User-Agent$MOBILE_UA",
  4560. "编码": "UTF-8",
  4561. "主页url": "http://www.njjinwu.com/",
  4562. "数组": "lazyload\"&&</a>",
  4563. "标题": "title=\"&&\"",
  4564. "图片": "data-original=\"&&\"",
  4565. "副标题": "type\">&&</em>",
  4566. "链接": "href=\"&&\"",
  4567. "状态": "更新:&&</p>",
  4568. "导演": "导演:&&</p>",
  4569. "主演": "主演:&&</p",
  4570. "简介": "简介:&&</p>",
  4571. "播放数组": "content_playlist&&</ul>",
  4572. "倒序": "0",
  4573. "播放列表": "<a&&/a>",
  4574. "播放标题": ">&&<",
  4575. "播放链接": "href=\"&&\"",
  4576. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4577. "线路数组": "play_source_tab&&</div>",
  4578. "线路标题": "alt=\"&&\"",
  4579. "搜索模式": "1",
  4580. "搜索url": "/vodsearch/{wd}----------{pg}---.html",
  4581. "分类url": "http://xtk.njjinwu.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  4582. "分类": "电影$dianying#电视剧$dianshiju#综艺$zongyi#动漫$dongman#午夜剧场$lunlipian#网红短剧$duanju#动画片$donghuapian#邵氏电影$shaoshidianying",
  4583. "筛选": "1",
  4584. "类型": "动作片$dongzuopian#喜剧片$xijupian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#剧情片$juqingpian#犯罪片$fanzuipian#战争片$zhanzhengpian||国产剧$guocanju#港剧$gangju#台湾剧$taiwanju#韩剧$hanju#日剧$riju#泰剧$taiju#欧美剧$oumeiju#海外剧$haiwaiju||大陆综艺$daluzongyi#日韩综艺$rihanzongyi#港台综艺$gangtaizongyi#欧美综艺$oumeizongyi||国产动漫$guochandongman#日本动漫$ribendongman#欧美动漫$oumeidongman#海外动漫$haiwaidongman||空||空||空||空"
  4585. }
  4586. },
  4587. {
  4588. "key": "csp_XBPQ_殇情",
  4589. "name": "🎥|殇情",
  4590. "type": 3,
  4591. "api": "csp_XBPQ",
  4592. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4593. "searchable": 1,
  4594. "quickSearch": 1,
  4595. "filterable": 1,
  4596. "ext": {
  4597. "请求头": "User-Agent$MOBILE_UA",
  4598. "编码": "UTF-8",
  4599. "二次截取": "vodlist clearfix\">&&</ul>",
  4600. "数组": "lazyload\"&&</li>",
  4601. "标题": "title=\"&&\"",
  4602. "图片": "data-original=\"&&\"",
  4603. "副标题": "text-right\">&&</span>",
  4604. "链接": "href=\"&&\"",
  4605. "播放数组": "list sort-list clearfix\"&&</ul>",
  4606. "播放列表": "<a&&a>",
  4607. "播放链接": "href=\"&&\"",
  4608. "播放标题": ">&&<",
  4609. "线路数组": "\\#playlist&&</li>",
  4610. "线路标题": "tab\"&&</a>",
  4611. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4612. "主页url": "http://v.hpdjt999.com/",
  4613. "分类url": "http://v.hpdjt999.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  4614. "分类": "电影$dianying#电视剧$dianshiju#综艺$zongyi#动漫$dongman#短剧$duanju",
  4615. "类型": "动作片$dongzuopian#喜剧片$xijupian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#剧情片$juqingpian#战争片$zhanzhengpian#奇幻片$qihuanpian#犯罪片$fanzuipian#悬疑片$xuanyipian#纪录片$jilupian#动画片$donghuapian#老电影$laodianying||国产剧$guochanju#香港剧$xianggangju#台湾剧$diwanju#日本剧$ribenju#韩国剧$hanguoju#泰国剧$taiguoju#欧美剧$oumeiju#欧美剧$oumeiju#海外剧$haiwaiju||大陆综艺$daluzongyi#港台综艺$gangtaizongyi#日韩综<艺$rihanzongyi#欧美综艺$oumeizongyi||国产动漫$guochandongman#港台动漫$gangtaidongman#日韩动漫$rihandongman#欧美动漫$oumeidongman#海外动漫$haiwaidongman||空"
  4616. }
  4617. },
  4618. {
  4619. "key": "csp_XBPQ_自由",
  4620. "name": "🎥|自由",
  4621. "type": 3,
  4622. "api": "csp_XBPQ",
  4623. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4624. "searchable": 1,
  4625. "quickSearch": 1,
  4626. "filterable": 1,
  4627. "ext": {
  4628. "请求头": "User-Agent$MOBILE_UA",
  4629. "编码": "UTF-8",
  4630. "主页url": "https://www.freeys.cc",
  4631. "数组": "class=\"hl-item-thumb hl-lazy\"&&</a>",
  4632. "副标题": "remarks\">&&</span>",
  4633. "标题": "title=\"&&\"",
  4634. "图片": "data-original=\"&&\"",
  4635. "链接": "href=\"&&\"",
  4636. "播放数组": "class=\"hl-plays-list hl-sort-list&&</ul>",
  4637. "播放列表": "<a&&a>",
  4638. "播放链接": "href=\"&&\"",
  4639. "播放标题": ">&&</",
  4640. "线路数组": "class=\"hl-tabs-btn hl-slide-swiper&&</a>",
  4641. "线路标题": "alt=\"&&\"",
  4642. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4643. "简介": "简介:</em>&&</li>",
  4644. "分类": "电影$dianying#连续剧$lianxuju#综艺$zongyi#动漫$dongman#短剧$duanju",
  4645. "搜索url": "http://www.freeys.cc/vodsearch/{wd}----------{pg}---/",
  4646. "分类url": "http://www.freeys.cc/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}/"
  4647. }
  4648. },
  4649. {
  4650. "key": "csp_XBPQ_樱花",
  4651. "name": "🎥|樱花",
  4652. "type": 3,
  4653. "api": "csp_XBPQ",
  4654. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4655. "searchable": 1,
  4656. "quickSearch": 1,
  4657. "filterable": 1,
  4658. "ext": {
  4659. "请求头": "User-Agent$MOBILE_UA",
  4660. "编码": "UTF-8",
  4661. "主页url": "http://ks-ydk.com/",
  4662. "二次截取": "stui-vodlist clearfix&&</ul>",
  4663. "数组": "lazyload\"&&</a>",
  4664. "标题": "title=\"&&\"",
  4665. "图片": "data-original=\"&&\"",
  4666. "副标题": "text-right\">&&</span>",
  4667. "链接": "href=\"&&\"",
  4668. "线路数组": "<h3&&h3>",
  4669. "线路标题": "title\">&&</",
  4670. "播放数组": "playlist clearfix&&</ul>",
  4671. "播放列表": "<li&&li>",
  4672. "播放标题": ">&&</a>",
  4673. "播放链接": "href=\"&&\"",
  4674. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4675. "分类url": "http://ks-ydk.com/show/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  4676. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#午夜剧场$36#网红短剧$30",
  4677. "类型": "动作片$7#喜剧片$8#爱情片$9#科幻片$10#恐怖片$11#剧情片$12#犯罪片$29#战争片$13||国产剧$14#港剧$15#台湾剧$16#韩剧$17#日剧$18#泰剧$31#欧美剧$19#海外剧$20||大陆综艺$21#日韩综艺$22#港台综艺$23#欧美综艺$24||国产动漫$25#日本动漫$26#欧美动漫$27#海外动漫$28||空||空"
  4678. }
  4679. },
  4680. {
  4681. "key": "csp_XBPQ_五五",
  4682. "name": "🎥|五五",
  4683. "type": 3,
  4684. "api": "csp_XBPQ",
  4685. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4686. "searchable": 1,
  4687. "quickSearch": 1,
  4688. "filterable": 1,
  4689. "ext": {
  4690. "请求头": "User-Agent$MOBILE_UA",
  4691. "编码": "UTF-8",
  4692. "主页url": "https://www.555zxdy.com/",
  4693. "数组": "/vod/detail/&&class=\"icon-play\">",
  4694. "链接": "/vod/detail/+&&\"",
  4695. "标题": "title=\"&&\"",
  4696. "图片": "data-original=\"&&\"",
  4697. "副标题": "note\">&&</div>",
  4698. "播放数组": "module-play-list-content&&</div>",
  4699. "播放列表": "<a&&a>",
  4700. "播放链接": "href=\"&&\"",
  4701. "播放标题": "<span>&&</span>",
  4702. "线路数组": "module-tab-item tab-item&&</div>",
  4703. "线路标题": "<span>&&</span>",
  4704. "跳转播放链接": "urlDecode(Base64(var player_*url\":\"&&\"))",
  4705. "简介": "<p>&&</p>",
  4706. "分类": "电影$1#电视剧$2#综艺$4#动漫$3#短剧$45",
  4707. "分类url": "https://www.555zxdy.com/vod/show/area/{area}/by/{by}/class/{class}/id/{cateId}/lang/{lang}/letter/{letter}/page/{catePg}/year/{year}.html",
  4708. "类型": "动作$6#喜剧$7#爱情$8#科幻$9#恐怖$10#剧情$11#战争$12#悬疑$35#冒险$36#动漫$37#记录$20||国产剧$13#港剧$21#台剧$14#短剧$45#韩剧$15#日剧$23#泰剧$22#美剧$16#海外剧$34||内地$30#港台$31#日韩$32#欧美$33||内地$25#港台$26#日韩$27#欧美$28#海外$29||空"
  4709. }
  4710. },
  4711. {
  4712. "key": "csp_XBPQ_琥珀",
  4713. "name": "🎥|琥珀",
  4714. "type": 3,
  4715. "api": "csp_XBPQ",
  4716. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4717. "searchable": 1,
  4718. "quickSearch": 1,
  4719. "filterable": 1,
  4720. "ext": {
  4721. "请求头": "User-Agent$MOBILE_UA",
  4722. "编码": "UTF-8",
  4723. "主页url": "https://www.csjrjypx.com/",
  4724. "数组": "lazyload\"&&</a>",
  4725. "标题": "title=\"&&\"",
  4726. "图片": "data-original=\"&&\"",
  4727. "副标题": "right\">&&<",
  4728. "链接": "href=\"&&\"",
  4729. "简介": "简介:&&</p>",
  4730. "线路数组": "playlist&&</li>",
  4731. "线路标题": ">&&</a[排序:华为云]",
  4732. "播放数组": "playlist clearfix&&</ul>",
  4733. "倒序": "0",
  4734. "播放列表": "<a&&a>",
  4735. "播放标题": ">&&</",
  4736. "播放链接": "href=\"&&\"",
  4737. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4738. "分类url": "https://www.csjrjypx.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  4739. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#网红短剧$34#午夜剧场$33",
  4740. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23||国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22||大陆综艺$25#日韩综艺$26#港台综艺$27#欧美综艺$28||国产动漫$29#日韩动漫$30#欧美动漫$31#其它动漫$32||空||空"
  4741. }
  4742. },
  4743. {
  4744. "key": "csp_XBPQ_民民",
  4745. "name": "🎥|民民",
  4746. "type": 3,
  4747. "api": "csp_XBPQ",
  4748. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4749. "searchable": 1,
  4750. "quickSearch": 1,
  4751. "filterable": 1,
  4752. "ext": {
  4753. "请求头": "User-Agent$MOBILE_UA",
  4754. "编码": "UTF-8",
  4755. "二次截取": "stui-vodlist clearfix\">&&</ul>",
  4756. "数组": "lazyload&&</li>",
  4757. "标题": "title=\"&&\"",
  4758. "图片": "data-original=\"&&\"",
  4759. "副标题": "text-right\">&&</span>",
  4760. "链接": "href=\"&&\"",
  4761. "播放数组": "playlist clearfix column8\"&&</ul>",
  4762. "播放列表": "<a&&a>",
  4763. "播放链接": "href=\"&&\"",
  4764. "播放标题": ">&&<",
  4765. "线路数组": "\\#playlist&&</li>",
  4766. "线路标题": "nofollow\">&&</a>",
  4767. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4768. "主页url": "https://www.fangsendq.com/",
  4769. "分类url": "https://www.fangsendq.com/vodshow/{cateId}--{by}------{catePg}---{year}.html",
  4770. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  4771. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24||国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22||空||空"
  4772. }
  4773. },
  4774. {
  4775. "key": "csp_XBPQ_白狐",
  4776. "name": "🎥|白狐",
  4777. "type": 3,
  4778. "api": "csp_XBPQ",
  4779. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4780. "searchable": 1,
  4781. "quickSearch": 1,
  4782. "filterable": 1,
  4783. "ext": {
  4784. "请求头": "User-Agent$MOBILE_UA",
  4785. "编码": "UTF-8",
  4786. "防走丢": "https://wfoxdm2.cc/",
  4787. "主页url": "https://bhdm4.cc/",
  4788. "数组": "class=\"image\">&&</li>",
  4789. "标题": "alt=\"&&\"",
  4790. "图片": "data-original=\"&&\"",
  4791. "副标题": "h6\">&&</p>",
  4792. "链接": "href=\"&&\"",
  4793. "播放数组": "class=\"list-unstyled row text-center&&</ul>",
  4794. "播放列表": "<a&&a>",
  4795. "播放链接": "href=\"&&\"",
  4796. "播放标题": ">&&</",
  4797. "线路数组": "data-toggle=\"tab\"&&</li>",
  4798. "线路标题": "</span>&&</a>",
  4799. "跳转播放链接": "ar cms_player = {\"url\":\"&&\"",
  4800. "分类url": "https://bhdm4.cc/iCategoryId/{cateId}-{catePg}.html[https://bhdm4.cc/iCategoryId/{cateId}]",
  4801. "分类": " 新旧番剧$3#在线动漫$2#动漫电影$5#好看动漫$10"
  4802. }
  4803. },
  4804. {
  4805. "key": "csp_XBPQ_开心",
  4806. "name": "🎥|开心",
  4807. "type": 3,
  4808. "api": "csp_XBPQ",
  4809. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4810. "searchable": 1,
  4811. "quickSearch": 1,
  4812. "filterable": 1,
  4813. "ext": {
  4814. "请求头": "User-Agent$MOBILE_UA",
  4815. "编码": "UTF-8",
  4816. "二次截取": "myui-vodlist clearfix\">&&</ul>",
  4817. "数组": "myui-vodlist__box\"&&</a>",
  4818. "标题": "title=\"&&\"",
  4819. "图片": "data-original=\"&&\"",
  4820. "副标题": "text-right\">&&</span>",
  4821. "链接": "href=\"&&\"",
  4822. "播放数组": "list sort-list clearfix&&</ul>",
  4823. "播放列表": "<a&&a>",
  4824. "播放链接": "href=\"&&\"",
  4825. "播放标题": "第+>&&</+集",
  4826. "线路数组": "href=\"\\#playlist&&li>",
  4827. "线路标题": "tab\">&&</a>",
  4828. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4829. "主页url": "https://www.szhsjsj.com/",
  4830. "分类url": "https://www.szhsjsj.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  4831. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  4832. "类型": "动作片$7#喜剧片$8#爱情片$9#科幻片$10#恐怖片$11#剧情片$12#犯罪片$29#战争片$13||国产剧$14#港剧$15#台湾剧$16#韩剧$17#日剧$18#泰剧$31#欧美剧$19#海外剧$20||大陆综艺$21#日韩综艺$22||国产动漫$25#日本动漫$26#欧美动漫$27#海外动漫$28"
  4833. }
  4834. },
  4835. {
  4836. "key": "csp_XBPQ_飘花",
  4837. "name": "🎥|飘花",
  4838. "type": 3,
  4839. "api": "csp_XBPQ",
  4840. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4841. "searchable": 1,
  4842. "quickSearch": 1,
  4843. "filterable": 1,
  4844. "ext": {
  4845. "请求头": "User-Agent$MOBILE_UA",
  4846. "编码": "UTF-8",
  4847. "主页": "https://www.7itv.com/",
  4848. "二次截取": "class=\"module-main module-page\"&&id=\"page\"",
  4849. "简介": "<p>&&</p>",
  4850. "数组": "/voddetail/&&</a>",
  4851. "链接": "/voddetail/+&&\"",
  4852. "标题": "title=\"&&\"",
  4853. "图片": "data-original=\"&&\"",
  4854. "副标题": "note\">&&<",
  4855. "线路数组": "class=\"module-tab-item tab-item\"&&</div>",
  4856. "线路标题": ">&&</span>",
  4857. "播放数组": "class=\"module-play-list-content&&</div>",
  4858. "倒序": "0",
  4859. "播放列表": "<a&&/a>",
  4860. "播放标题": ">&&</span>",
  4861. "播放链接": "href=\"&&\"",
  4862. "跳转播放链接": "urlDecode(Base64(var player_*url\":\"&&\"))",
  4863. "分类url": "https://www.7itv.com/vodshow/{cateId}--{by}---{letter}---{catePg}---{year}.html",
  4864. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  4865. "筛选": "1",
  4866. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#其他片$22#纪录片$21||国产剧$13#港台剧$14#日韩剧$15#欧美剧$16#其它剧$20||空||空"
  4867. }
  4868. },
  4869. {
  4870. "key": "csp_XBPQ_辰辰",
  4871. "name": "🎥|辰辰",
  4872. "type": 3,
  4873. "api": "csp_XBPQ",
  4874. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4875. "searchable": 1,
  4876. "quickSearch": 1,
  4877. "filterable": 1,
  4878. "ext": {
  4879. "请求头": "User-Agent$MOBILE_UA",
  4880. "编码": "UTF-8",
  4881. "数组": "class=\"pic-img\"&&</a>",
  4882. "标题": "title=\"&&完整版在线观看\"",
  4883. "图片": "data-original=\"&&\"",
  4884. "副标题": "titles\">&&</span>",
  4885. "链接": "href=\"&&\"",
  4886. "线路数组": "id=\"\\#con_playlist&&</li>",
  4887. "线路标题": "\">&&</a>",
  4888. "播放数组": "<ul class=\"fade-in&&</ul>",
  4889. "播放列表": "<li&&</li>",
  4890. "播放链接": "href=\"&&\"",
  4891. "播放标题": "html\">&&</",
  4892. "跳转播放链接": "\"player\":*\"url\":\"&&\"",
  4893. "分类url": "https://www.020zhicheng.com/{cateId}/index_{class}_{area}_{year}_{letter}_{by}_{catePg}.html",
  4894. "分类": "电影$dianying#电视剧$dianshiju#动漫$dongman#短剧$weidianying",
  4895. "类型": "动作片$dongzuopian#科幻片$kehuanpian#喜剧片$xijupian#爱情片$aiqingpian#恐怖片$kongbupian#战争片$zhanzhengpian#剧情片$juqingpian#动画片$donghuapian#纪录片$jilupian||国产剧$guocanju#韩国剧$hanguoju#日本剧$ribenju#台湾剧$taiwanju#香港剧$xianggangju#欧美剧$oumeiju#泰国剧$taiguoju#海外剧$haiwaiju||空||空",
  4896. "剧情": "惊悚$jingsong#悬疑$xuanyi#魔幻$mohuan#言情$yanqing#罪案$zuian1#冒险$maoxian#灾难$zainan#古装$guzhuang#青春$qingchun#歌舞$gewu#励志$lizhi#文艺$wenyi#生活$shenghuo#动画$donghua#原声$yuansheng#历史$lishi#谍战$diezhan#穿越$chuanyue#军旅$junlv#家庭$jiating#预告$yugao#益智$yizhi#偶像$ouxiang#犯罪$fanzui#搞笑$gaoxiao#热血$rexue#经典$jingdian#童话$tonghua#刑侦$xingzhen#推理$tuili#音乐$yinle#校园$xiaoyuan#神话$shenhua#都市$dushi#职场$zhichang#美食$meishi#旅游$lvyou#科幻$kehuan#恐怖$kongbu#喜剧$xiju#战争$zhanzheng#剧情$juqing#记录$jilu#爱情$aiqing#奇幻$qihuan#动作$dongzuo#预告$yugao#明星$mingxing#武侠$wuxia#其它$qita#时尚$shishang#少女$shaonv#竞技$jingji#商战$shangzhan#游戏$youxi||农村$nongcun#喜剧$xiju#偶像$ouxiang#古装$guzhuang#武侠$wuxia#神话$shenhua#穿越$chuanyue#刑侦$xingzhen#商战$shangzhan#战争$zhanzheng#军旅$junlv#谍战$diezhan#年代$niandai#职场$zhichang#校园$xiaoyuan#动画$donghua#言情$yanqing#科幻$kehuan#热血$rexue#剧情$juqing#青春$qingchun#悬疑$xuanyi#惊悚$jingsong#犯罪$fanzui#恐怖$kongbu#冒险$maoxian#励志$lizhi#罪案$zuian#歌舞$gewu#少女$shaonv#动漫$dongman#旅游$lvyou#时尚$shishang#真人秀$zhenrenxiu#未知$weizhi#文艺$wenyi#抗战$kangzhan#革命$geming#奇幻$qihuan#历史$lishi#传奇$chuanqi#军事$junshi#搞笑$gaoxiao#预告$yugao#音乐$yinle#游戏$youxi#益智$yizhi#情感$qinggan#童话$tonghua#爱情$aiqing#推理$tuili#动作$dongzuo#灾难$zainan#近代革命$jindaigeming#脱口秀$tuokouxiu#近代传奇$jindaichuanqi#美食$meishi#经典$jingdian#网络剧$wangluoju#玄幻$xuanhuan#破案$poan#真人剧$zhenrenju||冒险$maoxian#热血$rexue#搞笑$gaoxiao#少女$shaonv#恋爱$lianai#魔幻$mohuan#推理$tuili#神魔$shenmo#竞技$jingji#游戏$youxi#益智$yizhi#机战$jizhan#宠物$chongwu#格斗$gedou#魔法$mofa#亲子$qinzi#励志$lizhi#青春$qingchun#都市$dushi#惊悚$jingsong#经典$jingdian#童话$tonghua#真人$zhenren#校园$xiaoyuan#文艺$wenyi#生活$shenghuo#古装$guzhuang#科幻$kehuan#动画$donghua#剧情$juqing#犯罪$fanzui#动漫$dongman#历史$lishi#悬疑$xuanyi#歌舞$gewu#家庭$jiating#武侠$wuxia#音乐$yinle#战争$zhanzheng#喜剧$xiju#恐怖$kongbu#偶像$ouxiang#罪案$zuian#真人秀$zhenrenxiu#言情$yanqing#美食$meishi#灾难$zainan||爱情$aiqing#励志$lizhi#明星$mingxing#生活$shenghuo#青春$qingchun#搞笑$gaoxiao#恐怖$kongbu#职场$zhichang#校园$xiaoyuan#悬疑$xuanyi#预告$yugao#罪案$zuian#文艺$wenyi#魔幻$mohuan#动画$donghua#冒险$maoxian#惊悚$jingsong#历史$lishi#歌舞$gewu#古装$guzhuang#美食$meishi#真人秀$zhenrenxiu#脱口秀$tuokouxiu#未知$weizhi#都市$dushi",
  4897. "地区": "大陆$dalu#香港$xianggang#台湾$taiwan#美国$meiguo#韩国$hanguo#日本$riben#泰国$taiguo#新加坡$xinjiapo#马来西亚$malaixiya#印度$yindu#英国$yingguo#法国$faguo#加拿大$jianada#西班牙$xibanya#俄罗斯$eluosi#其它$qita||大陆$dalu#香港$xianggang#台湾$taiwan#美国$meiguo#韩国$hanguo#日本$riben#泰国$taiguo#新加坡$xinjiapo#马来西亚$malaixiya#印度$yindu#英国$yingguo#法国$faguo#加拿大$jianada#西班牙$xibanya#俄罗斯$eluosi#其它$qita||大陆$dalu#香港$xianggang#台湾$taiwan#美国$meiguo#韩国$hanguo#日本$riben#泰国$taiguo#新加坡$xinjiapo#马来西亚$malaixiya#印度$yindu#英国$yingguo#法国$faguo#加拿大$jianada#西班牙$xibanya#俄罗斯$eluosi#其它$qita||大陆$dalu#香港$xianggang#台湾$taiwan#美国$meiguo#韩国$hanguo#日本$riben#泰国$taiguo#新加坡$xinjiapo#马来西亚$malaixiya#印度$yindu#英国$yingguo#法国$faguo#加拿大$jianada#西班牙$xibanya#俄罗斯$eluosi#其它$qita",
  4898. "排序": "按时间$addtime#按人气$hits#按评分$gold"
  4899. }
  4900. },
  4901. {
  4902. "key": "csp_XBPQ_咕咚",
  4903. "name": "🎥|咕咚",
  4904. "type": 3,
  4905. "api": "csp_XBPQ",
  4906. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4907. "searchable": 1,
  4908. "quickSearch": 1,
  4909. "filterable": 1,
  4910. "ext": {
  4911. "请求头": "User-Agent$MOBILE_UA",
  4912. "编码": "UTF-8",
  4913. "主页url": "https://www.zgbdzs.com/",
  4914. "数组": "class=\"hl-item-thumb hl-lazy\"&&</a>",
  4915. "标题": "title=\"&&\"",
  4916. "图片": "data-original=\"&&\"",
  4917. "副标题": "\">&&</span>",
  4918. "播放数组": "class=\"hl-plays-list hl-sort-list&&</ul>",
  4919. "播放列表": "<a&&a>",
  4920. "播放链接": "href=\"&&\"",
  4921. "播放标题": ">&&</",
  4922. "链接": "href=\"&&\"",
  4923. "线路数组": "class=\"hl-tabs-btn hl-slide-swiper&&a>",
  4924. "线路标题": "alt=\"&&\"",
  4925. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4926. "分类url": "https://www.zgbdzs.com/vodshow/{cateId}-{area}-{by}--{lang}-{letter}---{catePg}---{year}.html",
  4927. "分类": "电影$1#连续剧$2#综艺$3#动漫$4#夜间福利$21#体育赛事$26#短剧$27",
  4928. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12||国产剧$13#港台剧$14#日韩剧$15#欧美剧$16||空||空||空||空||空"
  4929. }
  4930. },
  4931. {
  4932. "key": "csp_XBPQ_片库",
  4933. "name": "🎥|片库",
  4934. "type": 3,
  4935. "api": "csp_XBPQ",
  4936. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4937. "searchable": 1,
  4938. "quickSearch": 1,
  4939. "filterable": 1,
  4940. "ext": {
  4941. "请求头": "User-Agent$MOBILE_UA",
  4942. "编码": "UTF-8",
  4943. "主页url": "https://piankuww.com/",
  4944. "数组": "lazyload\"&&</li>",
  4945. "链接": "href=\"&&\"",
  4946. "图片": "data-original=\"&&\"",
  4947. "标题": "title=\"&&\"",
  4948. "副标题": "text-right\">&&</span>",
  4949. "播放数组": "class=\"ewave-content__playlist clearfix&&</ul>",
  4950. "播放列表": "<a&&a>",
  4951. "播放链接": "href=\"&&\"",
  4952. "播放标题": ">&&</",
  4953. "线路数组": "href=\"\\#playlist&&</li>",
  4954. "线路标题": ">&&</",
  4955. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4956. "分类url": "https://piankuww.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}/",
  4957. "分类": "电影$y#电视剧$dsj#综艺$zy#动漫$dm#短剧$dj"
  4958. }
  4959. },
  4960. {
  4961. "key": "csp_XBPQ_影先",
  4962. "name": "🎥|影先",
  4963. "type": 3,
  4964. "api": "csp_XBPQ",
  4965. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4966. "searchable": 1,
  4967. "quickSearch": 1,
  4968. "filterable": 1,
  4969. "ext": {
  4970. "请求头": "User-Agent$MOBILE_UA",
  4971. "编码": "UTF-8",
  4972. "主页url": "https://silidm.com/",
  4973. "数组": "class=\"module-item-cover\"&&</div>",
  4974. "标题": "title=\"&&\"",
  4975. "图片": "data-original=\"&&\"",
  4976. "链接": "href=\"&&\"",
  4977. "播放数组": "class=\"play-source-content&&</div>",
  4978. "播放列表": "<a&&a>",
  4979. "播放链接": "href=\"&&\"",
  4980. "播放标题": ">&&</",
  4981. "线路数组": "class=\"play-source-tab\"&&div>",
  4982. "线路标题": ">&&</",
  4983. "跳转播放链接": "var player_*\"url\":\"&&\"",
  4984. "分类url": "https://silidm.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  4985. "分类": "电影$dianying#剧集$juji#动漫$dongman#综艺$zongyi"
  4986. }
  4987. },
  4988. {
  4989. "key": "csp_XBPQ_维思",
  4990. "name": "🎥|维思",
  4991. "type": 3,
  4992. "api": "csp_XBPQ",
  4993. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  4994. "searchable": 1,
  4995. "quickSearch": 1,
  4996. "filterable": 1,
  4997. "ext": {
  4998. "请求头": "User-Agent$MOBILE_UA",
  4999. "编码": "UTF-8",
  5000. "主页url": "https://www.nxgqmy.com/",
  5001. "数组": "lazyload\"&&</a>",
  5002. "标题": "title=\"&&\"",
  5003. "图片": "data-original=\"&&\"",
  5004. "副标题": "text-\">&&<",
  5005. "链接": "href=\"&&\"",
  5006. "简介": "简介:&&</p>",
  5007. "线路数组": "\\#playlist&&a>",
  5008. "线路标题": ">&&</[排序:无尽>]",
  5009. "播放数组": "class=\"myui-content&&</ul>",
  5010. "播放列表": "<a&&a>[不包含:APP秒播]",
  5011. "播放链接": "href=\"&&\"",
  5012. "播放标题": ">&&</",
  5013. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5014. "分类url": "https://www.nxgqmy.com/ybsitp/{cateId}-{catePg}.html",
  5015. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#动画片$31#短剧$5",
  5016. "筛选": "1",
  5017. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#纪录片$13||国产剧$17#港台剧$18#日韩剧$20#欧美剧$21#其它剧$22||大陆综艺$23#日韩综艺$24#港台综艺$26#欧美综艺$25||国产动漫$27#日韩动漫$28#欧美动漫$29#其它动漫$30||空||空"
  5018. }
  5019. },
  5020. {
  5021. "key": "csp_XBPQ_全视",
  5022. "name": "🎥|全视",
  5023. "type": 3,
  5024. "api": "csp_XBPQ",
  5025. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5026. "searchable": 1,
  5027. "quickSearch": 1,
  5028. "filterable": 1,
  5029. "ext": {
  5030. "请求头": "User-Agent$MOBILE_UA",
  5031. "编码": "UTF-8",
  5032. "数组": "class=\"hl-item-thumb hl-lazy\"&&</a>",
  5033. "标题": "title=\"&&\"",
  5034. "图片": "data-original=\"&&\"",
  5035. "副标题": "remarks\">&&</span>",
  5036. "链接": "href=\"&&\"",
  5037. "播放数组": "class=\"hl-plays-list&&</ul>",
  5038. "播放列表": "<a&&a>",
  5039. "播放链接": "href=\"&&\"",
  5040. "播放标题": ">&&</",
  5041. "线路数组": "class=\"hl-tabs-btn&&a>",
  5042. "线路标题": "alt=\"&&\"",
  5043. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5044. "主页url": "http://www.scycjc.com/",
  5045. "分类url": "http://www.scycjc.com/dtype/{cateId}-{catePg}.html",
  5046. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  5047. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动漫电影$21#电影片$22||国产剧$13#港台剧$14#韩剧$15#美剧$16#日剧$19#泰剧$20||空||空"
  5048. }
  5049. },
  5050. {
  5051. "key": "csp_XBPQ_天狗",
  5052. "name": "🎥|天狗",
  5053. "type": 3,
  5054. "api": "csp_XBPQ",
  5055. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5056. "searchable": 1,
  5057. "quickSearch": 1,
  5058. "filterable": 1,
  5059. "ext": {
  5060. "请求头": "User-Agent$MOBILE_UA",
  5061. "编码": "UTF-8",
  5062. "图片代理": "0",
  5063. "直接播放": "0",
  5064. "播放请求头": "",
  5065. "主页url": "http://www.jlspyy.com.cn",
  5066. "首页": "120",
  5067. "起始页": "1",
  5068. "分类url": "http://www.jlspyy.com.cn/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5069. "分类": "电影$dianying#电视剧$dianshiju#综艺$zongyi#动漫$dongman#短剧$duanju",
  5070. "二次截取": "class=\"evg6xn stui-vodlist clearfix&&</ul>",
  5071. "数组": "thumb lazyload&&</a>",
  5072. "标题": "title=\"&&\"",
  5073. "图片": "data-original=\"&&\"",
  5074. "副标题": "pic-text text-right\">&&</span></a>",
  5075. "链接": "href=\"&&\"",
  5076. "线路数组": "class=*nore text-muted pull-right\"&&</div>",
  5077. "线路标题": "title\">&&</h3>",
  5078. "播放数组": "playlist clearfix&&</ul>",
  5079. "播放列表": "<a&&/a>",
  5080. "播放标题": ">&&<",
  5081. "播放链接": "href=\"&&\"",
  5082. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5083. "类型": "动作片$dongzuopian#喜剧片$xijupian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#剧情片$juqingpian#战争片$zhanzhengpian#犯罪片$fanzuipian#动画片$donghuapian||#国产剧$guochanju#香港剧$gangju#韩国剧$hanju#欧美剧$oumeiju#台湾剧$taiwanju#泰剧$taiju#日本剧$riju#其它剧$haiwaiju||空||空||空"
  5084. }
  5085. },
  5086. {
  5087. "key": "csp_XBPQ_快影",
  5088. "name": "🎥|快影",
  5089. "type": 3,
  5090. "api": "csp_XBPQ",
  5091. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5092. "searchable": 1,
  5093. "quickSearch": 1,
  5094. "filterable": 1,
  5095. "ext": {
  5096. "请求头": "User-Agent$MOBILE_UA",
  5097. "编码": "UTF-8",
  5098. "主页url": "https://m.kuaiys.com",
  5099. "防丢失": "https://www.kuaiys.com/",
  5100. "数组": "lazyload&&</a>",
  5101. "标题": "title=\"&&\"",
  5102. "图片": "data-original=\"&&\"",
  5103. "副标题": "right\">&&</span>",
  5104. "链接": "href=\"&&\"",
  5105. "播放数组": "list scrollbar sort-list clearfix&&</ul>",
  5106. "播放列表": "<a&&a>",
  5107. "播放链接": "href=\"&&\"",
  5108. "播放标题": ">&&</",
  5109. "线路数组": "href=\"\\#playlist&&a>",
  5110. "线路标题": ">&&</",
  5111. "分类url": "https://m.kuaiys.com/search.php?page={catePg}&searchtype=5&order={by}&tid={cateId}&area={area}&year={year}&letter={letter}&yuyan={lang}&state=&money=&ver=&jq={class}",
  5112. "分类": "电影$1#剧集$2#综艺$3#动漫$4#短剧$30",
  5113. "类型": "动作片$5#爱情片$6#科幻片$7#恐怖片$8#战争片$9#喜剧片$10#纪录片$11#剧情片$12||大陆剧$13#港台剧$14#欧美剧$15#日韩剧$16#海外剧$29||空||空||空"
  5114. }
  5115. },
  5116. {
  5117. "key": "csp_XBPQ_火机",
  5118. "name": "🎥|火机",
  5119. "type": 3,
  5120. "api": "csp_XBPQ",
  5121. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5122. "searchable": 1,
  5123. "quickSearch": 1,
  5124. "filterable": 1,
  5125. "ext": {
  5126. "请求头": "User-Agent$MOBILE_UA",
  5127. "编码": "UTF-8",
  5128. "主页url": "https://www.jscrzn.com/czclass/maoxianpian-----------.html",
  5129. "首页": "120",
  5130. "起始页": "1",
  5131. "分类url": "https://www.jscrzn.com/czclass/maoxianpian-{cateId}-------{catePg}---.html",
  5132. "分类": "大陆&香港&台湾&韩国&日本&美国&印度&英国&法国&泰国&新加坡&马来西亚&加拿大&西班牙&俄罗斯",
  5133. "分类值": "*",
  5134. "数组": "target=\"_blank&&</a>",
  5135. "标题": "title=\"&&\"",
  5136. "图片": "data-original=\"&&\"",
  5137. "副标题": "public-prt hide\">&&</span>+hide ft2\">&&</span>",
  5138. "链接": "href=\"&&\"",
  5139. "影片年代": "更新 :&&</div>",
  5140. "状态": "提醒 :&&</div>",
  5141. "导演": "导演 :&&</div>",
  5142. "主演": "主演 :&&</div>",
  5143. "跳转数组": "vod-detail-bnt flex\">&&</div>",
  5144. "跳转链接": "href=\"&&\"",
  5145. "线路数组": "info&&\">",
  5146. "线路标题": "云播",
  5147. "播放数组": "anthology-list-play size&&</ul>",
  5148. "播放列表": "<li&&</li>[不包含:💞美女直播]",
  5149. "播放标题": "<span>&&<",
  5150. "播放链接": "href=\"&&\"",
  5151. "跳转播放链接": "urlDecode(var player_*\"url\":\"&&\")",
  5152. "搜索模式": "1",
  5153. "搜索url": "http://www.jscrzn.com/search/{wd}----------{pg}---.html",
  5154. "简介": "text cor4\">&&</p>"
  5155. }
  5156. },
  5157. {
  5158. "key": "csp_XBPQ_蒜瓣",
  5159. "name": "🎥|蒜瓣",
  5160. "type": 3,
  5161. "api": "csp_XBPQ",
  5162. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5163. "searchable": 1,
  5164. "quickSearch": 1,
  5165. "filterable": 1,
  5166. "ext": {
  5167. "播放数组": "class=\"clearfix&&</ul>",
  5168. "播放列表": "<a&&a>",
  5169. "播放链接": "href=\"&&\"",
  5170. "播放标题": ">&&</",
  5171. "线路数组": "class=\"mod-head clearfix&&</div>",
  5172. "线路标题": ">&&</span>[不包含:猜你喜欢]",
  5173. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5174. "分类url": "https://m.suanban.vip/shaixuan/{cateId}--------{catePg}---{year}.html",
  5175. "分类": "电影$1#电视剧$2#动漫$4#动画电影$32",
  5176. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#战争片$12#剧情片$11#4k超清$38#邵氏老电影$33#记录片$34||国产剧$13#韩剧$15#美剧$16#港剧$14#台剧$21#泰剧$22#日剧$20#海外剧$35#爽文短剧$37||空||空"
  5177. }
  5178. },
  5179. {
  5180. "key": "csp_XBPQ_魅影",
  5181. "name": "🎥|魅影",
  5182. "type": 3,
  5183. "api": "csp_XBPQ",
  5184. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5185. "searchable": 1,
  5186. "quickSearch": 1,
  5187. "filterable": 1,
  5188. "ext": {
  5189. "请求头": "User-Agent$MOBILE_UA",
  5190. "编码": "UTF-8",
  5191. "二次截取": "class=\"shoutu-vodlist&&</ul>",
  5192. "数组": "class=\"col8&&</li>",
  5193. "图片": "data-original=\"&&\"",
  5194. "标题": "title=\"&&\"",
  5195. "副标题": "text\">&&</p>",
  5196. "链接": "href=\"&&\"",
  5197. "播放数组": "class=\"shoutu-playlist&&</ul>",
  5198. "播放列表": "<li&&</li>",
  5199. "播放链接": "href=\"&&\"",
  5200. "播放标题": ">&&</a>",
  5201. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5202. "分类url": "https://www.hangtong168.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  5203. "分类": "电影$1#电视剧$2#动漫$4#综艺$3#午夜剧场$33#网红短剧$34",
  5204. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22大陆综艺$25#日韩综艺$26#港台综艺$27#欧美综艺$28国产动漫$29#日韩动漫$30#欧美动漫$31#其它动漫$32空||空"
  5205. }
  5206. },
  5207. {
  5208. "key": "csp_XBPQ_神话",
  5209. "name": "🎥|神话",
  5210. "type": 3,
  5211. "api": "csp_XBPQ",
  5212. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5213. "searchable": 1,
  5214. "quickSearch": 1,
  5215. "filterable": 1,
  5216. "ext": {
  5217. "请求头": "User-Agent$MOBILE_UA",
  5218. "编码": "UTF-8",
  5219. "数组": "lazyload\"&&</a>",
  5220. "标题": "title=\"&&\"",
  5221. "副标题": "right\">&&</span>",
  5222. "图片": "data-original=\"&&\"",
  5223. "链接": "href=\"&&\"",
  5224. "播放数组": "stui-content__playlist clearfix&&</ul>",
  5225. "播放列表": "<li&&/li>",
  5226. "播放链接": "href=\"&&\"",
  5227. "播放标题": ">&&</",
  5228. "线路数组": "<h3&&h3>",
  5229. "线路标题": ">&&</",
  5230. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5231. "分类url": "https://www.shhuiru.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5232. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  5233. "类型": "动作片$7#喜剧片$8#爱情片$9#科幻片$10#恐怖片$11#剧情片$12#犯罪片$29#战争片$13国产剧$14#港剧$15#台湾剧$16#韩剧$17#日剧$18#泰剧$31#欧美剧$19#海外剧$20大陆综艺$21#日韩综艺$22#港台综艺$23#欧美综艺$24||国产动漫$25#日本动漫$26#欧美动漫$27#海外动漫$28"
  5234. }
  5235. },
  5236. {
  5237. "key": "csp_XBPQ_奇奇",
  5238. "name": "🎥|奇奇",
  5239. "type": 3,
  5240. "api": "csp_XBPQ",
  5241. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5242. "searchable": 1,
  5243. "quickSearch": 1,
  5244. "filterable": 1,
  5245. "ext": {
  5246. "请求头": "User-Agent$MOBILE_UA",
  5247. "数组": "lazyload&&</a>",
  5248. "标题": "title=\"&&\"",
  5249. "图片": "data-original=\"&&\"",
  5250. "副标题": "right\">&&</span>",
  5251. "链接": "href=\"&&\"",
  5252. "播放数组": "class=\"stui-content__playlist clearfix&&</ul>",
  5253. "播放列表": "<a&&a>",
  5254. "播放链接": "href='&&'",
  5255. "播放标题": ">&&</",
  5256. "线路数组": "class=\"more text-muted pull-right&&</div>",
  5257. "线路标题": "title\">&&</",
  5258. "起始页": "0",
  5259. "分类url": "http://www.csjlbj.com/e/action/ListInfo.php?page={catePg}&classid={cateId}&line=24&tempid=9&orderby={by}&myorder=0&ph=1&tempid=9&nianfen={year}&yuyan={lang}&zimu={letter}&diqu={area};;x",
  5260. "分类": "电影$1#电视剧$20#综艺$30#动漫$26#精品短剧$43#体育赛事$45",
  5261. "类型": "动作片$2#喜剧片$3#爱情片$4#科幻片$5#剧情片$6#恐怖片$7#战争片$17#纪录片$18#动画片$41#预告片$42#影视解说$44国产剧$21#港台剧$22#日韩剧$23#欧美剧$24#泰剧$25大陆综艺$31#港台综艺$32#海外综艺$33国产动漫$27#日本动漫$28#海外动漫$29空||空",
  5262. "排序": "按时间$newstime#按人气$onclick#按推荐$isgood"
  5263. }
  5264. },
  5265. {
  5266. "key": "csp_XBPQ_蜗牛",
  5267. "name": "🎥|蜗牛",
  5268. "type": 3,
  5269. "api": "csp_XBPQ",
  5270. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5271. "searchable": 1,
  5272. "quickSearch": 1,
  5273. "filterable": 1,
  5274. "ext": {
  5275. "请求头": "User-Agent$MOBILE_UA",
  5276. "编码": "UTF-8",
  5277. "数组": "class=\"video-item\">&&class=\"video-con",
  5278. "标题": "title=\"&&\"",
  5279. "图片": "data-original=\"&&\"",
  5280. "副标题": "duration\">&&</div>",
  5281. "链接": "href=\"&&\"",
  5282. "播放数组": "class=\"row ewave-playlist&&</ul>",
  5283. "播放列表": "<a&&a>",
  5284. "播放链接": "href=\"&&\"",
  5285. "播放标题": ">&&</",
  5286. "线路数组": "class=\"swiper-slide ewave-tab&&li>",
  5287. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5288. "线路标题": ">&&</",
  5289. "分类url": "https://www.lan-sun.com/vodshow/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5290. "分类": "电影$1#电视剧$2#动漫$4#综艺$3",
  5291. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22#网红短剧$34大陆综艺$25#日韩综艺$26#港台综艺$27#欧美综艺$28||国产动漫$29#日韩动漫$30#欧美动漫$31#其它动漫$32"
  5292. }
  5293. },
  5294. {
  5295. "key": "csp_XBPQ_六八",
  5296. "name": "🎥|六八",
  5297. "type": 3,
  5298. "api": "csp_XBPQ",
  5299. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5300. "searchable": 1,
  5301. "quickSearch": 1,
  5302. "filterable": 1,
  5303. "ext": {
  5304. "二次截取": "class=\"row video-list video-film-list clearfix&&</ul>",
  5305. "数组": "class=\"video-item&&class=\"video-con",
  5306. "标题": "title=\"&&\"",
  5307. "图片": "data-original=\"&&\"",
  5308. "副标题": "duration\">&&</div>",
  5309. "链接": "href=\"&&\"",
  5310. "播放数组": "playlist-sort-content&&</ul>",
  5311. "播放列表": "<a&&a>",
  5312. "播放链接": "href=\"&&\"",
  5313. "播放标题": "\">&&</",
  5314. "线路数组": "class=\"swiper-slide ewave-tab&&li>",
  5315. "线路标题": ">&&</",
  5316. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5317. "分类url": "https://www.sh-bridge.com/screen/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5318. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$33"
  5319. }
  5320. },
  5321. {
  5322. "key": "csp_XBPQ_云飞",
  5323. "name": "🎥|云飞",
  5324. "type": 3,
  5325. "api": "csp_XBPQ",
  5326. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5327. "searchable": 1,
  5328. "quickSearch": 1,
  5329. "filterable": 1,
  5330. "ext": {
  5331. "线路数组": "<span class=\"more text-muted pull-right&&</h3></div>",
  5332. "线路标题": "title\">&&<",
  5333. "播放数组": "class=\"stui-content__playlist clearfix\">&&</ul>",
  5334. "播放列表": "<a&&</a[不包含:🎁美女直播]",
  5335. "播放标题": ">&&</a",
  5336. "播放链接": "href=\"&&\"",
  5337. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5338. "分类url": "https://yfeil.com/show/{cateId}-{area}--{class}-{lang}-{letter}---{catePg}---{year}/",
  5339. "分类": "电影$1#电视剧$2#动漫$4#综艺$3"
  5340. }
  5341. },
  5342. {
  5343. "key": "csp_XBPQ_韩片",
  5344. "name": "🎥|韩片",
  5345. "type": 3,
  5346. "api": "csp_XBPQ",
  5347. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5348. "searchable": 1,
  5349. "quickSearch": 1,
  5350. "filterable": 1,
  5351. "ext": {
  5352. "数组": "<li class=\"mo-paxs-5px mo-pamd-10px&&</li>",
  5353. "图片": "data-original=\"&&\"",
  5354. "标题": "/\">&&</a>",
  5355. "副标题": "mo-coxs-center\">&&</span>",
  5356. "简介": "讲述<p>&&</p>",
  5357. "链接": "href=\"&&\"",
  5358. "线路数组": "mo-prxs-2px mo-fsxs-16px&&/a>",
  5359. "线路标题": "</i>&&<",
  5360. "播放数组": "<ul class=\"mo-movs-item mo-sort-boxs&&</ul>",
  5361. "播放列表": "<a&&a>",
  5362. "播放链接": "href=\"&&\"",
  5363. "播放标题": ">&&</",
  5364. "跳转播放链接": "data-play=\"&&\"",
  5365. "搜索url": "https://www.hanpian.tv/search/{wd}-------------/",
  5366. "分类url": "https://www.hanpian.tv/so/{cateId}/{area}-{by}--{lang}----{catePg}---{year}/",
  5367. "分类": "电影$movie#电视剧$tv#综艺$variety#动漫片$anime"
  5368. }
  5369. },
  5370. {
  5371. "key": "csp_XBPQ_速影",
  5372. "name": "🎥|速影",
  5373. "type": 3,
  5374. "api": "csp_XBPQ",
  5375. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5376. "searchable": 1,
  5377. "quickSearch": 1,
  5378. "filterable": 1,
  5379. "ext": {
  5380. "站名": "速影",
  5381. "请求头": "User-Agent$MOBILE_UA",
  5382. "编码": "UTF-8",
  5383. "标题": "title=\"&&\"",
  5384. "图片": "background-image: url('&&'",
  5385. "链接": "href=\"&&\"",
  5386. "数组": "stui-vodlist__box\">&&</div>",
  5387. "线路数组": "title\">&&</h3>",
  5388. "线路标题": "<span>&&</span>",
  5389. "副标题": "+pic-text text-right\">&&</span>",
  5390. "播放标题": ">&&</",
  5391. "播放链接": "href='&&'",
  5392. "播放列表": "<a&&</a",
  5393. "跳转播放链接": "",
  5394. "播放数组": "stui-content__playlist&&</ul>",
  5395. "简介": "简介:</span>&&</p >",
  5396. "搜索url": "https://xn--94qq85au3qyvbe13c.com/vodsearch/{wd}----------{pg}---.html",
  5397. "搜索模式": "1",
  5398. "嗅探词": ".m3u8#.mp4",
  5399. "分类url": "https://xn--94qq85au3qyvbe13c.com/movie-type-id-{cateId}-pg-{catePg}.html",
  5400. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  5401. }
  5402. },
  5403. {
  5404. "key": "csp_XBPQ_洋葱",
  5405. "name": "🎥|洋葱",
  5406. "type": 3,
  5407. "api": "csp_XBPQ",
  5408. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5409. "searchable": 1,
  5410. "quickSearch": 1,
  5411. "filterable": 1,
  5412. "ext": {
  5413. "请求头": "User-Agent$MOBILE_UA",
  5414. "编码": "UTF-8",
  5415. "数组": "lazyload&&</a>",
  5416. "标题": "title=\"&&\"",
  5417. "图片": "data-original=\"&&\"",
  5418. "副标题": "right\">&&</span>",
  5419. "链接": "href=\"&&\"",
  5420. "播放数组": "playlist clearfix column8\">&&</ul>",
  5421. "播放列表": "<a&&a>",
  5422. "播放链接": "href=\"&&\"",
  5423. "播放标题": ">&&</",
  5424. "线路数组": "<li>&&</li>",
  5425. "线路标题": ">&&</a>",
  5426. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5427. "分类url": "https://www.zjgydsj.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5428. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$36"
  5429. }
  5430. },
  5431. {
  5432. "key": "csp_XBPQ_火火",
  5433. "name": "🎥|火火",
  5434. "type": 3,
  5435. "api": "csp_XBPQ",
  5436. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5437. "searchable": 1,
  5438. "quickSearch": 1,
  5439. "filterable": 1,
  5440. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/火火.json"
  5441. },
  5442. {
  5443. "key": "csp_XBPQ_飞猫",
  5444. "name": "🎥|飞猫",
  5445. "type": 3,
  5446. "api": "csp_XBPQ",
  5447. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5448. "searchable": 1,
  5449. "quickSearch": 1,
  5450. "filterable": 1,
  5451. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/飛貓.json"
  5452. },
  5453. {
  5454. "key": "csp_XBPQ_玫瑰",
  5455. "name": "🎥|玫瑰",
  5456. "type": 3,
  5457. "api": "csp_XBPQ",
  5458. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5459. "searchable": 1,
  5460. "quickSearch": 1,
  5461. "filterable": 1,
  5462. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/玫瑰.json"
  5463. },
  5464. {
  5465. "key": "csp_XBPQ_微云",
  5466. "name": "🎥|微云",
  5467. "type": 3,
  5468. "api": "csp_XBPQ",
  5469. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5470. "searchable": 1,
  5471. "quickSearch": 1,
  5472. "filterable": 1,
  5473. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/微雲.json"
  5474. },
  5475. {
  5476. "key": "csp_XBPQ_落攻",
  5477. "name": "🎥|落攻",
  5478. "type": 3,
  5479. "api": "csp_XBPQ",
  5480. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5481. "searchable": 1,
  5482. "quickSearch": 1,
  5483. "filterable": 1,
  5484. "ext": {
  5485. "主页url": "https://www.lggys.com/",
  5486. "图片": "data-original=\"&&\"",
  5487. "标题": "title=\"&&\"",
  5488. "播放链接": "href=\"&&\"",
  5489. "导演": "导演:&&</div>",
  5490. "主演": "主演:&&</div>",
  5491. "线路数组": "<div class=\"module-tab-item&&</div>",
  5492. "线路标题": "<span>&&</span>",
  5493. "分类url": "https://www.lggys.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5494. "分类": "电影$dianying#电视剧$dianshiju#综艺$zongyi#动漫$dongman#短剧$shuangwenduanju"
  5495. }
  5496. },
  5497. {
  5498. "key": "csp_XBPQ_梦想",
  5499. "name": "🎥|梦想",
  5500. "type": 3,
  5501. "api": "csp_XBPQ",
  5502. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5503. "searchable": 1,
  5504. "quickSearch": 1,
  5505. "filterable": 1,
  5506. "ext": {
  5507. "请求头": "User-Agent$MOBILE_UA",
  5508. "编码": "UTF-8",
  5509. "主页url": "http://www.chnmx.com",
  5510. "数组": "lazyload\"&&</a>",
  5511. "标题": "title=\"&&\"",
  5512. "图片": "data-original=\"&&\"",
  5513. "副标题": "text-right\">&&</span>",
  5514. "链接": "href=\"&&\"",
  5515. "线路二次截取": "stui-pannel__head bottom-line&&</div",
  5516. "线路数组": "<h&&/h",
  5517. "线路标题": ">&&<",
  5518. "播放数组": "<ul class=\"stui-content__playlist&&</ul",
  5519. "播放列表": "<li&&</li",
  5520. "播放标题": ">&&</a",
  5521. "播放链接": "href='&&'",
  5522. "搜索模式": "1",
  5523. "搜索url": "https://www.chnmx.com/e/search/result/index.php?page={pg}&searchid={wd}",
  5524. "搜索数组": "lazyload\"&&</a>",
  5525. "搜索标题": "title=\"&&\"",
  5526. "搜索图片": "data-original=\"&&\"",
  5527. "搜索副标题": "text-right\">&&</span>",
  5528. "搜索链接": "href=\"&&\"",
  5529. "嗅探词": ".mp4#.m3u8#.m4a#.mp3",
  5530. "简介": "display:none\">&&</div",
  5531. "分类url": "http://www.chnmx.com/e/action/ListInfo.php?page={catePg}&classid={cateId}&line=24&tempid=9&ph=1&andor=and&orderby={by}&myorder=0",
  5532. "分类": "电影&动作片&喜剧片&爱情片&科幻片&剧情片&恐怖片&剧集&综艺&动漫",
  5533. "分类值": "1&2&3&4&5&6&7&20&30&26"
  5534. }
  5535. },
  5536. {
  5537. "key": "csp_XBPQ_美剧",
  5538. "name": "🎥|美剧",
  5539. "type": 3,
  5540. "api": "csp_XBPQ",
  5541. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5542. "searchable": 1,
  5543. "quickSearch": 1,
  5544. "filterable": 1,
  5545. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/美劇.json"
  5546. },
  5547. {
  5548. "key": "csp_XBPQ_皮虾",
  5549. "name": "🎥|皮虾",
  5550. "type": 3,
  5551. "api": "csp_XBPQ",
  5552. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5553. "searchable": 1,
  5554. "quickSearch": 1,
  5555. "filterable": 1,
  5556. "ext": {
  5557. "主页url": "http://www.ppxys.vip/",
  5558. "图片": "data-original=\"&&\"",
  5559. "标题": "title=\"&&\"",
  5560. "副标题": "class=\"module-item-note\">&&</div>",
  5561. "链接": "href=\"&&\"",
  5562. "简介": "视频剧情简介:,&&",
  5563. "线路数组": "class=\"swiper-slide module-tab-item tab-item&&</small>",
  5564. "线路标题": ">&&<small",
  5565. "分类url": "http://www.ppxys.vip/s/{cateId}/area/{area}/by/{by}/class/{class}/lang/{lang}/letter/{letter}/page/{catePg}/year/2024.html",
  5566. "分类": "剧集$1#电影$2#动漫$3#综艺$4"
  5567. }
  5568. },
  5569. {
  5570. "key": "csp_XBPQ_久亿",
  5571. "name": "🎥|久亿",
  5572. "type": 3,
  5573. "api": "csp_XBPQ",
  5574. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5575. "searchable": 1,
  5576. "quickSearch": 1,
  5577. "filterable": 1,
  5578. "ext": {
  5579. "主页url": "https://www.91w2i.com/",
  5580. "搜索url": "https://www.91w2i.com/search/index.html?keyword={wd}",
  5581. "数组": "<div class=\"public-list-div public-list-bj\"&&</div>",
  5582. "图片": "data-src=\"&&\"",
  5583. "标题": "title=\"&&\"",
  5584. "链接": "href=\"&&\"",
  5585. "简介": "class=\"text cor3\"&&</div>",
  5586. "线路数组": "class=\"swiper-slide\">&&</a[排序:优酷>高清测试线路>高清测试线路1>高清测试线路2>乐视>哔哩哔哩>腾讯>搜狐>爱奇艺>芒果]",
  5587. "线路标题": ">&nbsp;&&</a>",
  5588. "播放数组": "class=\"anthology-list-play&&</div>",
  5589. "播放链接": "href=\"&&\"",
  5590. "分类url": "https://www.91w2i.com/vod/list.html?page={catePg}&type_id={cateId}",
  5591. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#爽文短剧$42"
  5592. }
  5593. },
  5594. {
  5595. "key": "csp_XBPQ_影视",
  5596. "name": "🎥|影视",
  5597. "type": 3,
  5598. "api": "csp_XBPQ",
  5599. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5600. "searchable": 1,
  5601. "quickSearch": 1,
  5602. "filterable": 1,
  5603. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/call66.json"
  5604. },
  5605. {
  5606. "key": "csp_XBPQ_圣城",
  5607. "name": "🎥|圣城",
  5608. "type": 3,
  5609. "api": "csp_XBPQ",
  5610. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5611. "searchable": 1,
  5612. "quickSearch": 1,
  5613. "filterable": 1,
  5614. "ext": {
  5615. "站名": "圣城影视",
  5616. "主页url": "https://sc1080.top/",
  5617. "简介": "剧情:</span>&&</span>",
  5618. "导演": "导演:&&</div>",
  5619. "主演": "主演:&&</div>",
  5620. "影片状态": "集数:&&</div>",
  5621. "影片类型": "icon-cate-ds\">&&</a>",
  5622. "数组": "module-item-pic\">&&module-item\">",
  5623. "标题": "title=\"&&\"",
  5624. "副标题": "module-item-text\"&&</div>",
  5625. "图片": "data-src=\"&&\"",
  5626. "链接": "href=\"&&\"",
  5627. "搜索url": "/index.php/vod/search.html?wd={wd}",
  5628. "搜索数组": "lazy lazyload\"&&<h3>[不包含:肥猫不肥#神秘的哥哥]",
  5629. "搜索标题": "alt=\"&&\"",
  5630. "搜索副标题": "title=*>&&</a>",
  5631. "搜索图片": "data-src=\"&&\"",
  5632. "搜索链接": "href=\"&&\"",
  5633. "线路数组": "data-dropdown-value=&&</div>[排序:蓝光C>蓝光Y[夸克秒播]>夸克专线1][不包含:蓝光Z#备用#鸡儿云#飞速云#新浪云#金鹰云#火狐云#独家蓝光#APP专线#腾讯视频#优酷视频#夸克专线2#芒果TV#乐视云#资源库#爱奇艺]",
  5634. "线路标题": "<span>&&</small>[替换:</span><small>>>共]+集",
  5635. "播放数组": "sort-item\"&&</div>",
  5636. "播放标题": "<span>&&</span>",
  5637. "播放列表": "<a&&</a>",
  5638. "分类url": "https://sc1080.top/index.php/vod/show/area/{area}/by/{by}/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html;;akm",
  5639. "分类": "电视剧$2#电影$1#动漫$4#综艺$3"
  5640. }
  5641. },
  5642. {
  5643. "key": "csp_XBPQ_小宝",
  5644. "name": "🎥|小宝",
  5645. "type": 3,
  5646. "api": "csp_XBPQ",
  5647. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5648. "searchable": 1,
  5649. "quickSearch": 1,
  5650. "filterable": 1,
  5651. "ext": {
  5652. "主页url": "https://xiaoxintv.com",
  5653. "嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  5654. "数组": "class=\"myui-vodlist__box\">&&</div>",
  5655. "简介": "剧情简介</h3>&&</span>",
  5656. "线路数组": "data-toggle=\"tab&&</li>",
  5657. "线路标题": ">&&</a>",
  5658. "播放数组": "class=\"myui-content__list&&</ul>",
  5659. "播放列表": "<li&&</li>",
  5660. "播放标题": ">&&</a",
  5661. "播放链接": "href=\"&&\"",
  5662. "搜索数组": "lazyload\"&&</a",
  5663. "搜索图片": "data-original=\"&&\"",
  5664. "搜索标题": "title=\"&&\"",
  5665. "搜索链接": "href=\"&&\"",
  5666. "分类url": "https://xiaoxintv.com/index.php/vod/show/area/{area}/by/{by}/id/{cateId}/lang/{lang}/page/{catePg}/year/{year}.html",
  5667. "分类": "电影$7#电视剧$6#动漫$5#综艺$3#纪录片$21#体育$20"
  5668. }
  5669. },
  5670. {
  5671. "key": "csp_XBPQ_五五",
  5672. "name": "🎥|五五",
  5673. "type": 3,
  5674. "api": "csp_XBPQ",
  5675. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5676. "searchable": 1,
  5677. "quickSearch": 1,
  5678. "filterable": 1,
  5679. "ext": {
  5680. "站名": "55看",
  5681. "主页url": "https://www.55kan.com/",
  5682. "简介": "<p class=\"col-pd\"&&</p>",
  5683. "线路数组": "<h3 class=\"title\">&&/h3>",
  5684. "线路标题": ">&&<",
  5685. "分类url": "https://www.55kan.com/show/{cateId}-{area}-{by}------{catePg}---{year}.html;;ak",
  5686. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  5687. }
  5688. },
  5689. {
  5690. "key": "csp_XBPQ_可达",
  5691. "name": "🎥|可达",
  5692. "type": 3,
  5693. "api": "csp_XBPQ",
  5694. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5695. "searchable": 1,
  5696. "quickSearch": 1,
  5697. "filterable": 1,
  5698. "ext": {
  5699. "请求头": "User-Agent$MOBILE_UA",
  5700. "主页url": "https://kedays.org",
  5701. "首页": "120",
  5702. "起始页": "1",
  5703. "数组": "pic\">&&</li>",
  5704. "标题": "title=\"&&\"",
  5705. "图片": "data-original=\"&&\"",
  5706. "副标题": "text-overflow\">&&</p >",
  5707. "链接": "href=\"&&\"",
  5708. "简介": "pb-10*>&&</p >",
  5709. "线路数组": "data-target=\"#ewave-playlist&&</li>",
  5710. "线路标题": ">&&<em>[不包含:线路1]",
  5711. "倒序": "0",
  5712. "播放数组": "ewave-playlist-content&&</ul>",
  5713. "播放列表": "<a&&/a>",
  5714. "播放标题": ">&&<",
  5715. "播放链接": "href=\"&&\"",
  5716. "跳转播放链接": "urlDecode(var player_*url\":\"&&\")",
  5717. "跳转解析": "默认$https://kedays.org/play/?url=",
  5718. "嗅探词": ".mp4#.m3u8#.flv",
  5719. "搜索模式": "1",
  5720. "搜索url": "/so/{wd}----------{pg}---.html",
  5721. "搜索数组": "pic\">&&</li>",
  5722. "搜索副标题": "text-overflow\">&&</p >",
  5723. "搜索链接": "href=\"&&\"",
  5724. "分类url": "https://kedays.org/shaixuan/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  5725. "分类": "电影&剧集&综艺&动漫&少儿&短剧",
  5726. "分类值": "dianying&lianxuju&zongyi&dongman&shaoer&duanju"
  5727. },
  5728. "playUrl": "https://kedays.org/play/?url="
  5729. },
  5730. {
  5731. "key": "csp_XBPQ_尘落",
  5732. "name": "🎥|尘落",
  5733. "type": 3,
  5734. "api": "csp_XBPQ",
  5735. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5736. "searchable": 1,
  5737. "quickSearch": 1,
  5738. "filterable": 1,
  5739. "ext": {
  5740. "数组": "<div class=\"movie-item-in&&</a>",
  5741. "图片": "src=\"&&\"",
  5742. "副标题": "qtag hdtag\">&&</span>",
  5743. "简介": "<br>&&</span>",
  5744. "线路数组": "aria-controls=\"zu&&/a>",
  5745. "线路标题": ">&&<",
  5746. "播放数组": "<div class=\"row tv-js-list&&</div></div>",
  5747. "播放列表": "<a&&/a>",
  5748. "播放标题": ">&&<",
  5749. "播放链接": "href=\"&&\"",
  5750. "跳转播放链接": "<iframe src=\"*url=&&\"",
  5751. "分类url": "https://v.zzdacou.com/whole/{cateId}_{area}_{class}__{year}___0_{by}_{catePg}.html",
  5752. "分类": "电影&电视剧&动漫&综艺&全网资源",
  5753. "分类值": "1&2&3&4&5",
  5754. "剧情": "警匪片&恐怖片&惊悚片&悬疑片&科幻片&战争片&动作片&喜剧片&爱情片&微电影&纪录片&剧情片&其他片||国产剧&日韩剧&欧美剧&海外剧||大陆综艺&日韩综艺&欧美综艺&海外综艺||国产动漫&日韩动漫&欧美动漫&动画片&动漫片||空",
  5755. "剧情值": "*",
  5756. "地区": "大陆&美国&日本&韩国&其他",
  5757. "地区值": "*",
  5758. "年份": "2025&2024&2023&2022&2021&2020&2019&2018&2017&2016&2015&2014&2013&2012&2011&2010&2009&2008&更早",
  5759. "年份值": "*",
  5760. "排序": "最新&日榜&周榜&月榜&总榜",
  5761. "排序值": "id&rhits&zhits&yhits&hits"
  5762. }
  5763. },
  5764. {
  5765. "key": "csp_XBPQ_NO视频",
  5766. "name": "🎥|NO视频",
  5767. "type": 3,
  5768. "api": "csp_XBPQ",
  5769. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5770. "searchable": 1,
  5771. "quickSearch": 1,
  5772. "filterable": 1,
  5773. "ext": {
  5774. "请求头": "手机",
  5775. "主页url": "https://www.dgjiawu.com/",
  5776. "简介": "",
  5777. "数组": "class=\"stui-vodlist__thumb lazyload\"&&</a",
  5778. "图片": "data-original=\"&&\"",
  5779. "链接": "href=\"&&\"",
  5780. "播放链接": "href=\"&&\"",
  5781. "标题": "title=\"&&\"",
  5782. "副标题": "",
  5783. "搜索url": "",
  5784. "嗅探词": ".m3u8#https://m3u.hw8.live/share/#index.m3u8",
  5785. "线路数组": "href=\"javascript:;\"&&</li>",
  5786. "线路标题": "class=\"v*\">&&</a[排序:线路2>>]",
  5787. "播放数组": "class=\"v*-div&&</div>",
  5788. "播放列表": "class=\"btn btn-primary btn-primary-ph&&</a",
  5789. "播放标题": ">&&</a",
  5790. "倒序": "0",
  5791. "分类": "电影$5738#电视剧$5749#动漫$5767#综艺$5758#你懂的$5748",
  5792. "分类url": "https://www.dgjiawu.com/mo-1zxgt/{cateId}/1/0/0/0/0/{catePg}[https://www.dgjiawu.com/mo-1zxgt/{cateId}/1];;rc"
  5793. }
  5794. },
  5795. {
  5796. "key": "csp_XBPQ_五六",
  5797. "name": "🎥|五六",
  5798. "type": 3,
  5799. "api": "csp_XBPQ",
  5800. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5801. "searchable": 1,
  5802. "quickSearch": 1,
  5803. "filterable": 1,
  5804. "ext": {
  5805. "请求头" : "手机" ,
  5806. "数组" : "stui-vodlist__box\">&&</div>" ,
  5807. "图片" : "data-original=\"&&\"" ,
  5808. "标题" : "title=\"&&\"" ,
  5809. "副标题" : "pic-text text-right\">&&</span>" ,
  5810. "简介" : "text-muted hidden-xs\">&&</p" ,
  5811. "链接" : "href=\"&&\"" ,
  5812. "线路数组" : "<h3&&</h3>" ,
  5813. "线路标题" : ">&&</h3>" ,
  5814. "播放数组" : "stui-content__playlist&&</ul>" ,
  5815. "播放列表" : "<li&&</li>" ,
  5816. "播放标题" : ">&&</a>" ,
  5817. "播放链接" : "href=\"&&\"" ,
  5818. "搜索url": "https://www.567dyy.com/search/{wd}----------{pg}---.htmll",
  5819. "分类url": "https://www.567dyy.com/list/{cateId}-{catePg}.html;;R" ,
  5820. "分类数组" : "<li&&</a" ,
  5821. "分类标题" : ">&&</a" ,
  5822. "分类ID" : "href=\"/list/&&.html\""
  5823. }
  5824. },
  5825. {
  5826. "key": "csp_XBPQ_爱看",
  5827. "name": "🎥|爱看",
  5828. "type": 3,
  5829. "api": "csp_XBPQ",
  5830. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5831. "searchable": 1,
  5832. "quickSearch": 1,
  5833. "filterable": 1,
  5834. "ext":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/愛看影院.json"
  5835. },
  5836. {
  5837. "key": "csp_XBPQ_全民",
  5838. "name": "🎥|全民",
  5839. "type": 3,
  5840. "api": "csp_XBPQ",
  5841. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5842. "searchable": 1,
  5843. "quickSearch": 1,
  5844. "filterable": 1,
  5845. "ext": {
  5846. "主页url": "http://www.sczyxxjc.com/",
  5847. "首页": "",
  5848. "起始页": "1",
  5849. "数组": "class=\"myui-vodlist__box\">&&</div>",
  5850. "链接": "href=\"&&\"",
  5851. "标题": "",
  5852. "副标题": "",
  5853. "简介": "",
  5854. "线路数组": "<h3&&</h3>",
  5855. "线路标题": ">&&<",
  5856. "搜索url": "/vodsearch/{wd}----------{pg}---.html",
  5857. "分类url": "http://www.sczyxxjc.com/vodshow/{cateId}-{area}---{lang}----{catePg}---{year}.html",
  5858. "分类": "电视剧$2#国产剧$13#香港剧$14#韩剧$15#欧美剧$16#台剧$20#日剧$21#其他剧$22#电影$1#动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23#综艺$3#动漫$4"
  5859. }
  5860. },
  5861. {
  5862. "key": "csp_XBPQ_先生",
  5863. "name": "🎥|先生",
  5864. "type": 3,
  5865. "api": "csp_XBPQ",
  5866. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5867. "searchable": 1,
  5868. "quickSearch": 1,
  5869. "filterable": 1,
  5870. "ext": {
  5871. "分类url": "https://dianyi.ng/pianku-{cateId}-{area}-------{catePg}---{year}.html",
  5872. "简介": "class=\"video-info-item video-info-content vod_content\">&&</span>",
  5873. "搜索url": "https://dianyi.ng/search--------------.html?wd={wd}",
  5874. "搜索数组": "<div class=\"module-item-pic\">&&</div>",
  5875. "图片": "src=\"&&\"",
  5876. "搜索标题": "title=\"&&\"",
  5877. "搜索副标题": ">&&</a>",
  5878. "线路数组": "data-dropdown-value=&&</div>",
  5879. "线路标题": "<span>&&</small>[替换:<span></small>共]+集",
  5880. "播放数组": "<div class=\"scroll-content\">&&</div>",
  5881. "播放标题": "<span>&&</span>",
  5882. "分类": "电影$dianying#电视剧$dianshiju#动漫$dongman#综艺$zongyi"
  5883. }
  5884. },
  5885. {
  5886. "key": "csp_XBPQ_圈圈",
  5887. "name": "🎥|圈圈",
  5888. "type": 3,
  5889. "api": "csp_XBPQ",
  5890. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5891. "searchable": 1,
  5892. "quickSearch": 1,
  5893. "filterable": 1,
  5894. "ext": {
  5895. "作者": "cally",
  5896. "站名": "剧圈圈",
  5897. "主页url": "https://jqqzx.cc/",
  5898. "分类url": "https://jqqzx.cc/vodshow/area/{area}/by/{by}/id/{cateId}/page/{catePg}/year/{year}.html[https://jqqzx.cc/vodshow/id/{cateId}.html]",
  5899. "分类": "电影&续集&动漫&综艺",
  5900. "分类值": "dianying&juji&dongman&zongyi",
  5901. "二次截取": "module-page\">&&id=\"page\">",
  5902. "数组": "<a*&&\"module-poster-item-info\">",
  5903. "图片": "data-original=\"&&\"",
  5904. "标题": "title=\"&&\"",
  5905. "副标题": "module-item-note\">&&</div>",
  5906. "链接": "href=\"&&\"",
  5907. "搜索url": "https://jqqzx.cc/vodsearch.html?wd={wd}",
  5908. "搜索数组": "module-card-item-class\">&&</a>",
  5909. "搜索图片": "data-original=\"&&\"",
  5910. "搜索标题": "alt=\"&&\"",
  5911. "搜索副标题": "module-item-note\">&&</div>",
  5912. "搜索链接": "href=\"&&\"",
  5913. "线路数组": "data-dropdown-value=\"&&\"",
  5914. "线路标题": "&&",
  5915. "播放数组": "module-play-list\">&&</div>",
  5916. "播放列表": "<a&&/a",
  5917. "播放标题": "span>&&</span>",
  5918. "播放链接": "href=\"&&\"",
  5919. "嗅探词": ".m3u8#video_mp4#tos-#.mp4#cdn.123pan.cn#huoshanvod.com",
  5920. "影片年代": "module-info-tag-link\">&&</p>",
  5921. "影片地区": "上映:**(&&)",
  5922. "影片类型": "class=\"slash\">&&</div>",
  5923. "影片状态": "集数:&&</div>",
  5924. "导演": "导演:&&</span>",
  5925. "主演": "主演:&&</div>",
  5926. "简介": "module-info-introduction-content\">&&</p>",
  5927. "排序": "时间$time#人气$hits#评分$score"
  5928. }
  5929. },
  5930. {
  5931. "key": "csp_XBPQ_六六",
  5932. "name": "🎥|六六",
  5933. "type": 3,
  5934. "api": "csp_XBPQ",
  5935. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5936. "searchable": 1,
  5937. "quickSearch": 1,
  5938. "filterable": 1,
  5939. "ext": {
  5940. "主页url": "https://www.dy131.org/",
  5941. "数组": "class=\"p* m1&&</a> </li>",
  5942. "副标题": "other\">&&</p>",
  5943. "线路数组": "id=\"tab81\"&&</ul>",
  5944. "线路标题": "</i>&&</li>",
  5945. "播放数组": "class=\"videourl clearfix\">&&</div>",
  5946. "播放列表": "<li>&&</li>",
  5947. "播放标题": ">&&</a>[不包含:BD#下载地址]",
  5948. "播放链接": "href= \"&&\"",
  5949. "搜索模式": "1",
  5950. "搜索url": "https://www.dy131.org/e/search/index.php;post;show=title&tempid=1&tbname=article&mid=1&dopost=search&keyboard={wd}&page={pg}",
  5951. "搜索数组": "p1 m1\">&&</li>",
  5952. "搜索标题": "title=\"&&\"",
  5953. "搜索图片": "data-original=\"&&\"",
  5954. "搜索副标题": "other\">&&</p>",
  5955. "搜索链接": "href=\"&&\"",
  5956. "分类url": "https://www.dy131.org/{cateId}/index_{catePg}.html[https://www.dy131.org/{cateId}/index.html]",
  5957. "分类": "动作片$/dy/bangumi/#喜剧片$/dy/tvplay/#爱情片$/dy/aqp/#科幻片$/dy/khp/#剧情片$/dy/jqp/#恐怖片$/dy/kbp/#战争片$/dy/kbp/#纪录片$/dy/jlp/#动画片$/dy/donghuapian/#国产剧$/dsj/dlj/#日韩剧$/dsj/rhj/#欧美剧$/dsj/omj/#短剧$dsj/duanju/#综艺$/zyjm/"
  5958. }
  5959. },
  5960. {
  5961. "key": "csp_XBPQ_蛙蛙",
  5962. "name": "🎥|蛙蛙",
  5963. "type": 3,
  5964. "api": "csp_XBPQ",
  5965. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5966. "searchable": 1,
  5967. "quickSearch": 1,
  5968. "filterable": 1,
  5969. "ext": {
  5970. "主页url": "https://www.wvod.tv/",
  5971. "数组": "hl-col-lg-2\"&&</a>",
  5972. "图片": "data-original=\"&&\"",
  5973. "标题": "title=\"&&\"",
  5974. "链接": "href=\"&&\"",
  5975. "简介": "简介:&&</li>",
  5976. "分类url": "https://www.wvod.tv/vodshow/class/{class}/id/{cateId}/page/{catePg}/year/{year}.html",
  5977. "分类": "电影$20#电视剧$21#综艺$22#动漫$23#体育$25#纪录片$24"
  5978. }
  5979. },
  5980. {
  5981. "key": "csp_XBPQ_皮影",
  5982. "name": "🎥|皮影",
  5983. "type": 3,
  5984. "api": "csp_XBPQ",
  5985. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  5986. "searchable": 1,
  5987. "quickSearch": 1,
  5988. "filterable": 1,
  5989. "ext": {
  5990. "请求头": "User-Agent$MOBILE_UA",
  5991. "编码": "UTF-8",
  5992. "主页url": "https://www.xzweiheng.com/",
  5993. "跳转播放链接": "var player_*\"url\":\"&&\"",
  5994. "分类url": "https://www.xzweiheng.com/vodshow/{cateId}-{area}-{by}--{lang}-{letter}---{catePg}---{year}.html",
  5995. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$34",
  5996. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23#午夜剧场$33||国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#其它剧$22||空||空||空"
  5997. }
  5998. },
  5999. {
  6000. "key": "csp_XBPQ_丽宫",
  6001. "name": "🎥|丽宫",
  6002. "type": 3,
  6003. "api": "csp_XBPQ",
  6004. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6005. "searchable": 1,
  6006. "quickSearch": 1,
  6007. "filterable": 1,
  6008. "ext": {
  6009. "请求头": "User-Agent$MOBILE_UA",
  6010. "编码": "UTF-8",
  6011. "跳转播放链接": "var player_*\"url\":\"&&\"",
  6012. "分类url": "http://www.gdjwjch.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  6013. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$36",
  6014. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23#预告片$35国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#泰剧$34#其它剧$22大陆综艺$25#日韩综艺$26#港台综艺$27#欧美综艺$28国产动漫$29#日韩动漫$30#欧美动漫$31#其它动漫$32爽文短剧$37#女频恋爱$38#反转爽剧$39#古装仙侠$40#年代穿越$41#脑洞悬疑$42#现代都市$43"
  6015. }
  6016. },
  6017. {
  6018. "key": "csp_XBPQ_蝌蚪",
  6019. "name": "🎥|蝌蚪",
  6020. "type": 3,
  6021. "api": "csp_XBPQ",
  6022. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6023. "searchable": 1,
  6024. "quickSearch": 1,
  6025. "filterable": 1,
  6026. "ext": {
  6027. "请求头": "User-Agent$MOBILE_UA",
  6028. "编码": "UTF-8",
  6029. "跳转播放链接": "var player_*\"url\":\"&&\"",
  6030. "分类url": "http://www.jldfac.com/show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  6031. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$36",
  6032. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#动画片$24#纪录片$23#预告片$35国产剧$13#香港剧$14#韩国剧$15#欧美剧$16#台湾剧$20#日本剧$21#泰剧$34#其它剧$22大陆综艺$25#日韩综艺$26#港台综艺$27#欧美综艺$28国产动漫$29#日韩动漫$30#欧美动漫$31#其它动漫$32爽文短剧$37#女频恋爱$38#反转爽剧$39#古装仙侠$40#年代穿越$41#脑洞悬疑$42#现代都市$43"
  6033. }
  6034. },
  6035. {
  6036. "key": "csp_XBPQ_哈哈",
  6037. "name": "🎥|哈哈",
  6038. "type": 3,
  6039. "api": "csp_XBPQ",
  6040. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6041. "searchable": 1,
  6042. "quickSearch": 1,
  6043. "filterable": 1,
  6044. "ext": {
  6045. "请求头": "User-Agent$MOBILE_UA",
  6046. "编码": "UTF-8",
  6047. "跳转播放链接": "var player_*\"url\":\"&&\"",
  6048. "分类url": "https://www.hahads.com/show/{cateId}-{area}-{by}--{lang}----{catePg}---{year}.html",
  6049. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  6050. "类型": "动作片$5#喜剧片$6#爱情片$7#科幻片$8#恐怖片$9#剧情片$10#战争片$11#👙乐哥最爱$20国产剧$12#港台剧$13#欧美剧$14#日韩剧$15#海外剧$16空||空"
  6051. }
  6052. },
  6053. {
  6054. "key": "csp_XBPQ_片吧",
  6055. "name": "🎥|片吧",
  6056. "type": 3,
  6057. "api": "csp_XBPQ",
  6058. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6059. "searchable": 1,
  6060. "quickSearch": 1,
  6061. "filterable": 1,
  6062. "ext": {
  6063. "分类url": "https://www.ipianba.com/class/{cateId}-{area}-{by}--{lang}----{catePg}---{year}.html",
  6064. "分类": "电影$1#剧集$2#动漫$3#综艺$4"
  6065. }
  6066. },
  6067. {
  6068. "key": "csp_XBPQ_私人",
  6069. "name": "🎥|私人",
  6070. "type": 3,
  6071. "api": "csp_XBPQ",
  6072. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6073. "searchable": 1,
  6074. "quickSearch": 1,
  6075. "filterable": 1,
  6076. "ext": {
  6077. "主页url": "https://www.siren93.com",
  6078. "分类url": "https://www.siren93.com/vodshow/{cateId}--{by}------{catePg}---{year}/",
  6079. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  6080. "搜索url": "https://www.siren93.com/vodsearch/-------------.html?wd={wd}",
  6081. "筛选": "1",
  6082. "类型": "1--动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#战争片$11#剧情片$12#动画片$34#歌舞片$20#历史片$21#谍战片$22||2--国产剧$13#香港剧$14#欧美剧$15#日本剧$16#海外剧$23#台湾剧$24#韩国剧$25#泰国剧$26#灾难片$27#奇幻片$28#冒险片$29#犯罪片$30#惊悚片$31#传记片$32#悬疑片$33||3--综艺$3||4--动漫$4",
  6083. "年份": "2004-2024",
  6084. "排序": "时间排序$time#人气排序$hits#评分排序$score"
  6085. }
  6086. },
  6087. {
  6088. "key": "csp_XBPQ_蛋蛋",
  6089. "name": "🎥|蛋蛋",
  6090. "type": 3,
  6091. "api": "csp_XBPQ",
  6092. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6093. "searchable": 1,
  6094. "quickSearch": 1,
  6095. "filterable": 1,
  6096. "ext": {
  6097. "嗅探词": ".mp4#m3u8",
  6098. "分类url": "https://www.dandanju.cc/show/{cateId}--------{catePg}---{year}.html",
  6099. "分类": "电影$1#电视剧$2#综艺$3#动漫$4"
  6100. }
  6101. },
  6102. {
  6103. "key": "csp_XBPQ_米爱",
  6104. "name": "🎥|米爱",
  6105. "type": 3,
  6106. "api": "csp_XBPQ",
  6107. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6108. "searchable": 1,
  6109. "quickSearch": 1,
  6110. "filterable": 1,
  6111. "ext": {
  6112. "分类url": "https://miai9.cc/vodshow/{cateId}-{area}-------{catePg}---{year}.html",
  6113. "分类": "电影$1#连续剧$2#动漫$4#综艺$3#纪录片$32"
  6114. }
  6115. },
  6116. {
  6117. "key": "csp_XBPQ_淘剧",
  6118. "name": "🎥|淘剧",
  6119. "type": 3,
  6120. "api": "csp_XBPQ",
  6121. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6122. "searchable": 1,
  6123. "quickSearch": 1,
  6124. "filterable": 1,
  6125. "ext": {
  6126. "分类url": "http://www.taoju.tv/list/{cateId}.html",
  6127. "分类" : "电影$1#连续剧$2#动漫$3#综艺$4"
  6128. }
  6129. },
  6130. {
  6131. "key": "csp_XBPQ_追剧",
  6132. "name": "🎥|追剧",
  6133. "type": 3,
  6134. "api": "csp_XBPQ",
  6135. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6136. "searchable": 1,
  6137. "quickSearch": 1,
  6138. "filterable": 1,
  6139. "ext": {
  6140. "数组": "fed-list-item fed-padding fed-col-xs4 fed-col-sm3 fed-col-md2\">&&</li>",
  6141. "图片": "data-original=\"&&\"",
  6142. "标题": "ed-visible fed-part-eone\" href=*>&&</a>",
  6143. "副标题": "fed-text-white fed-text-center\">&&</span>",
  6144. "线路数组": "fed-list-head fed-part-rows fed-padding\">&&</li>",
  6145. "简介": "<p>&&</p>",
  6146. "分类url": "https://xhaoer.com/search.php?page={catePg}&searchtype=5&tid={cateId}&area={area}&year={year}",
  6147. "分类": "短剧$29#电影$1#电视剧$2#综艺$3#动漫$4"
  6148. }
  6149. },
  6150. {
  6151. "key": "csp_XBPQ_爱坤",
  6152. "name": "🎥|爱坤",
  6153. "type": 3,
  6154. "api": "csp_XBPQ",
  6155. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6156. "searchable": 1,
  6157. "quickSearch": 1,
  6158. "filterable": 1,
  6159. "ext": {
  6160. "分类url": "https://ikun.tv/index.php/vod/show/area/{area}/id/{cateId}/page/{catePg}/year/{year}.html",
  6161. "分类": "动画片$54#电影$1#电视剧$3#动漫$2#综艺$4#短剧$5"
  6162. }
  6163. },
  6164. {
  6165. "key": "csp_XBPQ_老王",
  6166. "name": "🎥|老王",
  6167. "type": 3,
  6168. "api": "csp_XBPQ",
  6169. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6170. "searchable": 1,
  6171. "quickSearch": 1,
  6172. "filterable": 1,
  6173. "ext": {
  6174. "分类url": "https://www.laowang.co/vodshow/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  6175. "分类": "电影$movie#电视剧$tv#综艺$tvshow#动漫$animation#短剧$duanju"
  6176. }
  6177. },
  6178. {
  6179. "key": "csp_XBPQ_TVB",
  6180. "name": "🎥|TVB",
  6181. "type": 3,
  6182. "api": "csp_XBPQ",
  6183. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6184. "searchable": 1,
  6185. "quickSearch": 1,
  6186. "filterable": 1,
  6187. "ext": {
  6188. "分类url": "http://www.tvyb10.com/vod/show/area/{area}/id/{cateId}/page/{catePg}/year/{year}.html",
  6189. "分类": "电影$1#电视剧$2#动漫$4#综艺$3"
  6190. }
  6191. },
  6192. {
  6193. "key": "csp_XBPQ_新剧",
  6194. "name": "🎥|新剧",
  6195. "type": 3,
  6196. "api": "csp_XBPQ",
  6197. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6198. "searchable": 1,
  6199. "quickSearch": 1,
  6200. "filterable": 1,
  6201. "ext": {
  6202. "请求头": "User-Agent$Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36#Referer$https://www.03yy.co/#Cookie$__ancc_token=W5jzBYpcImDP/Iik1IURZg==; PHPSESSID=j11nnfvlgq36kd9u80ua370i41;",
  6203. "数组": "<div class=\"pic-content pic-width-2\">&&</div>",
  6204. "副标题": "<span>&&</span>",
  6205. "嗅探词": ".mp4?#.m3u8",
  6206. "简介": "<p&&</p>",
  6207. "导演": "导演:&&</div>",
  6208. "主演": "主演:&&</div>",
  6209. "线路二次截取": "<ul id=\"playlist\">&&</ul",
  6210. "线路数组": " <li&&li>",
  6211. "线路标题": ">&&<",
  6212. "播放请求头": "Cookie$__ancc_token=W5jzBYpcImDP/Iik1IURZg==; PHPSESSID=j11nnfvlgq36kd9u80ua370i41;",
  6213. "分类url": "https://www.03yy.co/search.php?page={catePg}&searchtype=5&order=time&tid={cateId};;ar1",
  6214. "分类": "电影$1#电视剧$2#动漫$4#综艺$3"
  6215. }
  6216. },
  6217. {
  6218. "key": "csp_XBPQ_双黄",
  6219. "name": "🎥|双黄",
  6220. "type": 3,
  6221. "api": "csp_XBPQ",
  6222. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6223. "searchable": 1,
  6224. "quickSearch": 1,
  6225. "filterable": 1,
  6226. "ext": {
  6227. "嗅探词": "v3.toutiaovod.com#v3-dy-o.zjcdn#.m3u8#/tos/#.mp4",
  6228. "请求头": "手机#Referer$https://www.dandanju.cc/",
  6229. "分类url": "https://www.dandanju.cc/show/{cateId}--------{catePg}---{year}.html",
  6230. "分类": "电影$1#剧集$2#动漫$4#综艺$4",
  6231. "数组": " <li class=\"col-md-6 col-sm-4 col-xs-3&&</li",
  6232. "搜索模式": "1",
  6233. "搜索url": "https://www.dandanju.cc/search/{wd}----------1---.html",
  6234. "搜索数组": "<li class=\"active clearfix&&</li"
  6235. }
  6236. },
  6237. {
  6238. "key": "csp_XBPQ_飞兔",
  6239. "name": "🎥|飞兔",
  6240. "type": 3,
  6241. "api": "csp_XBPQ",
  6242. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6243. "searchable": 1,
  6244. "quickSearch": 1,
  6245. "filterable": 1,
  6246. "ext": {
  6247. "分类url": "https://www.feitu.tv/filter/{cateId}/by/{by}/page/{catePg}/year/{year}/",
  6248. "播放请求头": "User-Agent$Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36",
  6249. "分类": "电影$1#剧集$2#动漫$4#综艺$3"
  6250. }
  6251. },
  6252. {
  6253. "key": "csp_XBPQ_4K4K",
  6254. "name": "🎥|4K4K",
  6255. "type": 3,
  6256. "api": "csp_XBPQ",
  6257. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6258. "searchable": 1,
  6259. "quickSearch": 1,
  6260. "filterable": 1,
  6261. "ext": {
  6262. "分类": "电影$1#电视剧$2#综艺$3#动漫$4",
  6263. "分类url": "https://4k4k.live/vodshow/{cateId}-{area}-{by}-{class}-----{catePg}---{year}.html"
  6264. }
  6265. },
  6266. {
  6267. "key": "csp_高清在线",
  6268. "name": "🎥|高清在线",
  6269. "type": 3,
  6270. "api": "csp_XBPQ",
  6271. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6272. "ext": {
  6273. "简介": "剧情介绍: +stui-pannel_bd\">&&</div>",
  6274. "线路数组": "stui-pannel__head bottom-line active clearfix\">&&</div>",
  6275. "分类url": "https://www.gxfiber.com/vodshow/{cateId}-{area}--{class}-----{catePg}---{year}.html",
  6276. "分类": "短剧$duanju#电视剧$dsj#电影$dy#动漫$dm#综艺$zy"
  6277. }
  6278. },
  6279. {
  6280. "key": "csp_奇优影院",
  6281. "name": "🎥|奇優",
  6282. "type": 3,
  6283. "api": "csp_XBPQ",
  6284. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6285. "searchable": 1,
  6286. "quickSearch": 1,
  6287. "filterable": 1,
  6288. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/奇优影院.json"
  6289. },
  6290. {
  6291. "key": "csp_4k影院",
  6292. "name": "🎥|4k影院|無圖",
  6293. "type": 3,
  6294. "api": "csp_XBPQ",
  6295. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6296. "searchable": 1,
  6297. "quickSearch": 1,
  6298. "filterable": 1,
  6299. "ext": {
  6300. "站名": "4K影院",
  6301. "数组": "<div class=\"poster\"&&</h3",
  6302. "简介": "<p>&&<p>",
  6303. "图片": "src=\"&&\"[替换:#038;>>>]",
  6304. "标题": "alt=\"&&\"",
  6305. "副标题": "class=\"icon-star2\">&&<div class=\"mepo\">",
  6306. "链接": "href=\"&&\"",
  6307. "线路数组": "<div class='se-q'>&&</a>",
  6308. "线路标题": "4K專線",
  6309. "线路链接": "href=\"&&\"",
  6310. "多线数组": "<div class='se-q'>&&</a>",
  6311. "多线链接": "href=\"&&\"",
  6312. "状态": "<div class=\"extra\">&&</div>",
  6313. "导演": "<div class=\"name\"&&</a>",
  6314. "主演": "<h2>演员</h2>&&<div id=\"info",
  6315. "播放二次截取": "id='playernotice&&<div class=\"sheader\">[替换:class='ajax_mode'>>>videourls:你我\"name\":1集,\"链洁\":\\&mvsource=0\"和他tables:]",
  6316. "播放数组": "videourls:&&tables:[替换:url\":>>链洁\":\\&ep=#name\":>>name\":#}>>\\&source=0\"和他#{>>你我]",
  6317. "播放列表": "你我&&和他",
  6318. "播放标题": "name\":&&,",
  6319. "播放链接": "链洁\":&&\"",
  6320. "播放链接前缀": "https://www.4kvm.org/artplayer?id=+postid-&&\"",
  6321. "免嗅": "0",
  6322. "搜索url": "https://www.4kvm.org/xssearch?s={wd}",
  6323. "分类url": "https://www.4kvm.org/{cateId}/page/{catePg}",
  6324. "分类": "电影$movies#美剧$classify/meiju#国产剧$classify/guochan#韩剧$classify/hanju#番剧$classify/fanju"
  6325. }
  6326. },
  6327. {
  6328. "key": "八号影院",
  6329. "name": "🎥|八号影院",
  6330. "type": 3,
  6331. "api": "csp_XBPQ",
  6332. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6333. "searchable": 1,
  6334. "quickSearch": 1,
  6335. "filterable": 1,
  6336. "ext": {
  6337. "数组": "class=\"myui-vodbox-content\">&&class=\"role\"",
  6338. "图片": "src=\"&&\"",
  6339. "标题": "class=\"title\">&&</div>",
  6340. "副标题": "class=\"tag text-overflow\">&&</div>",
  6341. "链接": "<a href=\"&&\"",
  6342. "简介": "label>*&&</div>",
  6343. "影片类型": "class=\"tags text-overflow\"*>&&</a>",
  6344. "影片年代": "class=\"item-top\">&&</div>",
  6345. "导演": "导演:</div>&&</div>",
  6346. "跳转播放链接": "src=\"&&\"",
  6347. "分类url": "https://www.bahaotv.com/vodshow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  6348. "分类": "电影$movie#电视剧$tvseries#动漫$anime",
  6349. "地区":"大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||内地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||国产&日本&欧美&其他"
  6350. }
  6351. },
  6352. //道長源_分類專區
  6353. {
  6354. "key": "hipy_js_荐片",
  6355. "name": "🎥|荐片",
  6356. "type": 3,
  6357. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6358. "searchable": 1,
  6359. "quickSearch": 1,
  6360. "filterable": 1,
  6361. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/荐片[优].js"
  6362. },
  6363. {
  6364. "key": "csp_蚂蚁影视",
  6365. "name": "🎥|蚂蚁",
  6366. "type": 3,
  6367. "api": "csp_XBPQ",
  6368. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  6369. "searchable": 1,
  6370. "quickSearch": 1,
  6371. "filterable": 1,
  6372. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/蚂蚁影视.json"
  6373. },
  6374. {
  6375. "key": "hipy_js_凌云影视",
  6376. "name": "🎥|凌云",
  6377. "type": 3,
  6378. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6379. "searchable": 1,
  6380. "quickSearch": 1,
  6381. "filterable": 1,
  6382. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/凌云影视.js"
  6383. },
  6384. {
  6385. "key": "hipy_js_量子资源",
  6386. "name": "🎥|量子",
  6387. "type": 3,
  6388. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6389. "searchable": 1,
  6390. "quickSearch": 1,
  6391. "filterable": 1,
  6392. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/量子资源.js"
  6393. },
  6394. {
  6395. "key": "hipy_js_七新电影网",
  6396. "name": "🎥|七新",
  6397. "type": 3,
  6398. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6399. "searchable": 1,
  6400. "quickSearch": 1,
  6401. "filterable": 1,
  6402. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/七新电影网.js"
  6403. },
  6404. {
  6405. "key": "hipy_js_三集电影[自动]",
  6406. "name": "🎥|三集",
  6407. "type": 3,
  6408. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6409. "searchable": 1,
  6410. "quickSearch": 1,
  6411. "filterable": 1,
  6412. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/三集电影[自动].js"
  6413. },
  6414. {
  6415. "key": "hipy_js_夕云影视",
  6416. "name": "🎥|夕云",
  6417. "type": 3,
  6418. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6419. "searchable": 1,
  6420. "quickSearch": 1,
  6421. "filterable": 1,
  6422. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/夕云影视.js"
  6423. },
  6424. {
  6425. "key": "hipy_js_天天影视",
  6426. "name": "🎥|天天",
  6427. "type": 3,
  6428. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6429. "searchable": 1,
  6430. "quickSearch": 1,
  6431. "filterable": 1,
  6432. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/天天影视.js"
  6433. },
  6434. {
  6435. "key": "hipy_js_天龙影院",
  6436. "name": "🎥|天龙",
  6437. "type": 3,
  6438. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6439. "searchable": 1,
  6440. "quickSearch": 1,
  6441. "filterable": 1,
  6442. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/天龙影院.js"
  6443. },
  6444. {
  6445. "key": "hipy_js_木瓜影视",
  6446. "name": "🎥|木瓜",
  6447. "type": 3,
  6448. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6449. "searchable": 1,
  6450. "quickSearch": 1,
  6451. "filterable": 1,
  6452. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/木瓜影视.js"
  6453. },
  6454. {
  6455. "key": "hipy_js_北川影视",
  6456. "name": "🎥|北川",
  6457. "type": 3,
  6458. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6459. "searchable": 1,
  6460. "quickSearch": 1,
  6461. "filterable": 1,
  6462. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/北川影视.js"
  6463. },
  6464. {
  6465. "key": "hipy_js_全能影视",
  6466. "name": "🎥|全能",
  6467. "type": 3,
  6468. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6469. "searchable": 1,
  6470. "quickSearch": 1,
  6471. "filterable": 1,
  6472. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/全能影视.js"
  6473. },
  6474. {
  6475. "key": "hipy_js_多多影音",
  6476. "name": "🎥|多多",
  6477. "type": 3,
  6478. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6479. "searchable": 1,
  6480. "quickSearch": 1,
  6481. "filterable": 1,
  6482. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/多多影音.js"
  6483. },
  6484. {
  6485. "key": "hipy_js_西瓜影院",
  6486. "name": "🎥|西瓜",
  6487. "type": 3,
  6488. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6489. "searchable": 1,
  6490. "quickSearch": 1,
  6491. "filterable": 1,
  6492. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/西瓜影院.js"
  6493. },
  6494. {
  6495. "key": "hipy_js_努努影院1",
  6496. "name": "🎥|努努",
  6497. "type": 3,
  6498. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6499. "searchable": 1,
  6500. "quickSearch": 1,
  6501. "filterable": 1,
  6502. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/努努影院1.js"
  6503. },
  6504. {
  6505. "key": "hipy_js_即看影视",
  6506. "name": "🎥|即看",
  6507. "type": 3,
  6508. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6509. "searchable": 1,
  6510. "quickSearch": 1,
  6511. "filterable": 1,
  6512. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/即看影视.js"
  6513. },
  6514. {
  6515. "key": "hipy_js_我播",
  6516. "name": "🎥|我播",
  6517. "type": 3,
  6518. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6519. "searchable": 1,
  6520. "quickSearch": 1,
  6521. "filterable": 1,
  6522. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/我播.js"
  6523. },
  6524. {
  6525. "key": "hipy_js_泡泡影院",
  6526. "name": "🎥|泡泡",
  6527. "type": 3,
  6528. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6529. "searchable": 1,
  6530. "quickSearch": 1,
  6531. "filterable": 1,
  6532. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/泡泡影院.js"
  6533. },
  6534. {
  6535. "key": "hipy_js_冠建影视",
  6536. "name": "🎥|冠建",
  6537. "type": 3,
  6538. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6539. "searchable": 1,
  6540. "quickSearch": 1,
  6541. "filterable": 1,
  6542. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/冠建影视.js"
  6543. },
  6544. {
  6545. "key": "hipy_js_星空影院",
  6546. "name": "🎥|星空",
  6547. "type": 3,
  6548. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6549. "searchable": 1,
  6550. "quickSearch": 1,
  6551. "filterable": 1,
  6552. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/星空影院.js"
  6553. },
  6554. {
  6555. "key": "hipy_js_时光影院",
  6556. "name": "🎥|时光",
  6557. "type": 3,
  6558. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6559. "searchable": 1,
  6560. "quickSearch": 1,
  6561. "filterable": 1,
  6562. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/时光影院.js"
  6563. },
  6564. {
  6565. "key": "hipy_js_神马影院[自动]",
  6566. "name": "🎥|神马",
  6567. "type": 3,
  6568. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6569. "searchable": 1,
  6570. "quickSearch": 1,
  6571. "filterable": 1,
  6572. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/神马影院[自动].js"
  6573. },
  6574. {
  6575. "key": "hipy_js_旋风视频",
  6576. "name": "🎥|旋风",
  6577. "type": 3,
  6578. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6579. "searchable": 1,
  6580. "quickSearch": 1,
  6581. "filterable": 1,
  6582. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/旋风视频.js"
  6583. },
  6584. {
  6585. "key": "hipy_js_游子视频",
  6586. "name": "🎥|游子",
  6587. "type": 3,
  6588. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6589. "searchable": 1,
  6590. "quickSearch": 1,
  6591. "filterable": 1,
  6592. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/游子视频.js"
  6593. },
  6594. {
  6595. "key": "hipy_js_云电影网",
  6596. "name": "🎥|云电",
  6597. "type": 3,
  6598. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6599. "searchable": 1,
  6600. "quickSearch": 1,
  6601. "filterable": 1,
  6602. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/云电影网.js"
  6603. },
  6604. {
  6605. "key": "hipy_js_饭团影视",
  6606. "name": "🎥|饭团",
  6607. "type": 3,
  6608. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6609. "searchable": 1,
  6610. "quickSearch": 1,
  6611. "filterable": 1,
  6612. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/饭团影视.js"
  6613. },
  6614. {
  6615. "key": "hipy_js_黑狐影院",
  6616. "name": "🎥|黑狐",
  6617. "type": 3,
  6618. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6619. "searchable": 1,
  6620. "quickSearch": 1,
  6621. "filterable": 1,
  6622. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/黑狐影院.js"
  6623. },
  6624. {
  6625. "key": "hipy_js_爱迪影视",
  6626. "name": "🎥|爱迪",
  6627. "type": 3,
  6628. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6629. "searchable": 1,
  6630. "quickSearch": 1,
  6631. "filterable": 1,
  6632. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/爱迪影视.js"
  6633. },
  6634. {
  6635. "key": "hipy_js_酷云影视",
  6636. "name": "🎥|酷云",
  6637. "type": 3,
  6638. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6639. "searchable": 1,
  6640. "quickSearch": 1,
  6641. "filterable": 1,
  6642. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/酷云影视.js"
  6643. },
  6644. {
  6645. "key": "hipy_js_饺子影院",
  6646. "name": "🎥|饺子",
  6647. "type": 3,
  6648. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6649. "searchable": 1,
  6650. "quickSearch": 1,
  6651. "filterable": 1,
  6652. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/饺子影院.js"
  6653. },
  6654. {
  6655. "key": "hipy_js_剧迷",
  6656. "name": "🎥|剧迷",
  6657. "type": 3,
  6658. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6659. "searchable": 1,
  6660. "quickSearch": 1,
  6661. "filterable": 1,
  6662. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/剧迷.js"
  6663. },
  6664. {
  6665. "key": "hipy_js_暖光影视",
  6666. "name": "🎥|暖光",
  6667. "type": 3,
  6668. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6669. "searchable": 1,
  6670. "quickSearch": 1,
  6671. "filterable": 1,
  6672. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/暖光影视.js"
  6673. },
  6674. {
  6675. "key": "hipy_js_骚火电影",
  6676. "name": "🎥|骚火",
  6677. "type": 3,
  6678. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6679. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/骚火电影.js"
  6680. },
  6681. {
  6682. "key": "hipy_js_飞兔影视",
  6683. "name": "🎥|飞兔",
  6684. "type": 3,
  6685. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6686. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/飞兔影视.js"
  6687. },
  6688. {
  6689. "key": "hipy_js_B站影视",
  6690. "name": "🎥|B站",
  6691. "type": 3,
  6692. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6693. "searchable": 1,
  6694. "quickSearch": 1,
  6695. "filterable": 1,
  6696. "order_num": 0,
  6697. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/B站影视.js"
  6698. },
  6699. {
  6700. "key": "hipy_js_哔哩影视",
  6701. "name": "🎥|哔哩影视",
  6702. "type": 3,
  6703. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6704. "searchable": 1,
  6705. "quickSearch": 1,
  6706. "filterable": 1,
  6707. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/哔哩影视.js"
  6708. },
  6709. {
  6710. "key": "hipy_js_哔哩直播",
  6711. "name": "🎥|哔哩直播",
  6712. "type": 3,
  6713. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6714. "searchable": 1,
  6715. "style": {"type": "rect", "ratio": 1.597},
  6716. "changeable": 0,
  6717. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/哔哩直播.js"
  6718. },
  6719. {
  6720. "key": "hipy_js_豆角网",
  6721. "name": "🎥|豆角网",
  6722. "type": 3,
  6723. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6724. "searchable": 1,
  6725. "quickSearch": 1,
  6726. "filterable": 1,
  6727. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/豆角网.js"
  6728. },
  6729. {
  6730. "key": "hipy_js_美视网",
  6731. "name": "🎥|美视网",
  6732. "type": 3,
  6733. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6734. "searchable": 1,
  6735. "quickSearch": 1,
  6736. "filterable": 1,
  6737. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/美视网.js"
  6738. },
  6739. {
  6740. "key": "hipy_js_片多多[优]",
  6741. "name": "🎥|片多多",
  6742. "type": 3,
  6743. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6744. "searchable": 1,
  6745. "quickSearch": 1,
  6746. "filterable": 1,
  6747. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/片多多[优].js"
  6748. },
  6749. {
  6750. "key": "hipy_js_达达猪",
  6751. "name": "🎥|达达猪",
  6752. "type": 3,
  6753. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6754. "searchable": 1,
  6755. "quickSearch": 1,
  6756. "filterable": 1,
  6757. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/达达猪.js"
  6758. },
  6759. {
  6760. "key": "hipy_js_热片网",
  6761. "name": "🎥|热片网",
  6762. "type": 3,
  6763. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6764. "searchable": 1,
  6765. "quickSearch": 1,
  6766. "filterable": 1,
  6767. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/热片网.js"
  6768. },
  6769. {
  6770. "key": "hipy_js_蛋蛋剧",
  6771. "name": "🎥|蛋蛋剧",
  6772. "type": 3,
  6773. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6774. "searchable": 1,
  6775. "quickSearch": 1,
  6776. "filterable": 1,
  6777. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/蛋蛋剧.js"
  6778. },
  6779. {
  6780. "key": "hipy_js_看了么",
  6781. "name": "🎥|看了么",
  6782. "type": 3,
  6783. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6784. "searchable": 1,
  6785. "quickSearch": 1,
  6786. "filterable": 1,
  6787. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/看了么.js"
  6788. },
  6789. {
  6790. "key": "hipy_js_歪片星球[资]",
  6791. "name": "🎥|歪片星球",
  6792. "type": 3,
  6793. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6794. "searchable": 1,
  6795. "quickSearch": 1,
  6796. "filterable": 1,
  6797. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/歪片星球[资].js"
  6798. },
  6799. {
  6800. "key": "hipy_js_极速资源[资]",
  6801. "name": "🎥|极速资源",
  6802. "type": 3,
  6803. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6804. "searchable": 1,
  6805. "quickSearch": 1,
  6806. "filterable": 1,
  6807. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/极速资源[资].js"
  6808. },
  6809. {
  6810. "key": "hipy_js_索尼资源[资]",
  6811. "name": "🎥|索尼资源",
  6812. "type": 3,
  6813. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6814. "searchable": 1,
  6815. "quickSearch": 1,
  6816. "filterable": 1,
  6817. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/索尼资源[资].js"
  6818. },
  6819. {
  6820. "key": "hipy_js_电影猎手[自动]",
  6821. "name": "🎥|电影猎手",
  6822. "type": 3,
  6823. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6824. "searchable": 1,
  6825. "quickSearch": 1,
  6826. "filterable": 1,
  6827. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/电影猎手[自动].js"
  6828. },
  6829. {
  6830. "key": "hipy_js_熊猫TV",
  6831. "name": "🎥|熊猫TV",
  6832. "type": 3,
  6833. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6834. "searchable": 1,
  6835. "quickSearch": 1,
  6836. "filterable": 1,
  6837. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/熊猫TV.js"
  6838. },
  6839. {
  6840. "key": "hipy_js_影视大全",
  6841. "name": "🎥|影视大全",
  6842. "type": 3,
  6843. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6844. "searchable": 1,
  6845. "quickSearch": 1,
  6846. "filterable": 1,
  6847. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/影视大全.js"
  6848. },
  6849. {
  6850. "key": "hipy_js_卧龙资源[资]",
  6851. "name": "🎥|卧龙资源",
  6852. "type": 3,
  6853. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6854. "searchable": 1,
  6855. "quickSearch": 1,
  6856. "filterable": 1,
  6857. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/卧龙资源[资].js"
  6858. },
  6859. {
  6860. "key": "hipy_js_111tv[自动]",
  6861. "name": "🎥|111影视",
  6862. "type": 3,
  6863. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6864. "searchable": 1,
  6865. "quickSearch": 1,
  6866. "filterable": 1,
  6867. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/111tv[自动].js"
  6868. },
  6869. {
  6870. "key": "hipy_js_139影视",
  6871. "name": "🎥|139影视",
  6872. "type": 3,
  6873. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6874. "searchable": 1,
  6875. "quickSearch": 1,
  6876. "filterable": 1,
  6877. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/139影视.js"
  6878. },
  6879. {
  6880. "key": "hipy_js_539影视",
  6881. "name": "🎥|539影视",
  6882. "type": 3,
  6883. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6884. "searchable": 1,
  6885. "quickSearch": 1,
  6886. "filterable": 1,
  6887. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/539影视.js"
  6888. },
  6889. {
  6890. "key": "hipy_js_cally66",
  6891. "name": "🎥|cally66",
  6892. "type": 3,
  6893. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6894. "searchable": 1,
  6895. "quickSearch": 1,
  6896. "filterable": 1,
  6897. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/cally66.js"
  6898. },
  6899. {
  6900. "key": "hipy_js_FreeOKLOL",
  6901. "name": "🎥|FreeOKLOL",
  6902. "type": 3,
  6903. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6904. "searchable": 1,
  6905. "quickSearch": 1,
  6906. "filterable": 1,
  6907. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/FreeOKLOL.js"
  6908. },
  6909. {
  6910. "key": "hipy_js_HBOTV[优]",
  6911. "name": "🎥|HBOTV",
  6912. "type": 3,
  6913. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6914. "searchable": 1,
  6915. "quickSearch": 1,
  6916. "filterable": 1,
  6917. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/HBOTV[优].js"
  6918. },
  6919. {
  6920. "key": "hipy_js_iFun",
  6921. "name": "🎥|iFun",
  6922. "type": 3,
  6923. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6924. "searchable": 1,
  6925. "quickSearch": 1,
  6926. "filterable": 1,
  6927. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/iFun.js"
  6928. },
  6929. {
  6930. "key": "hipy_js_voflix",
  6931. "name": "🎥|voflix",
  6932. "type": 3,
  6933. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6934. "searchable": 1,
  6935. "quickSearch": 1,
  6936. "filterable": 1,
  6937. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/voflix.js"
  6938. },
  6939. {
  6940. "key": "hipy_js_你好帅影院",
  6941. "name": "🎥|你好帅影院",
  6942. "type": 3,
  6943. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6944. "searchable": 1,
  6945. "quickSearch": 1,
  6946. "filterable": 1,
  6947. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/你好帅影院.js"
  6948. },
  6949. {
  6950. "key": "hipy_js_一起看",
  6951. "name": "🎥|一起看[V1]",
  6952. "type": 3,
  6953. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6954. "searchable": 1,
  6955. "quickSearch": 1,
  6956. "filterable": 1,
  6957. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/一起看.js"
  6958. },
  6959. {
  6960. "key": "hipy_js_一起看[优]",
  6961. "name": "🎥|一起看[HIPY]",
  6962. "type": 3,
  6963. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6964. "searchable": 1,
  6965. "quickSearch": 1,
  6966. "filterable": 1,
  6967. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/一起看[优].js"
  6968. },
  6969. {
  6970. "key": "hipy_js_小宝影院[飞]",
  6971. "name": "🎥|小宝[飛]",
  6972. "type": 3,
  6973. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6974. "searchable": 1,
  6975. "quickSearch": 1,
  6976. "filterable": 1,
  6977. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/小宝影院[飞].js"
  6978. },
  6979. {
  6980. "key": "hipy_js_KUBO影视[飞]",
  6981. "name": "🎥|KUBO",
  6982. "type": 3,
  6983. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6984. "searchable": 1,
  6985. "quickSearch": 1,
  6986. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/KUBO影视[飞].js"
  6987. },
  6988. {
  6989. "key": "hipy_js_映播TV",
  6990. "name": "🎥|映播TV",
  6991. "type": 3,
  6992. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  6993. "searchable": 1,
  6994. "quickSearch": 1,
  6995. "filterable": 1,
  6996. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/映播TV.js"
  6997. },
  6998. {
  6999. "key": "hipy_js_网飞啦[自动]",
  7000. "name": "🎥|网飞啦",
  7001. "type": 3,
  7002. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7003. "searchable": 1,
  7004. "quickSearch": 1,
  7005. "filterable": 1,
  7006. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/网飞啦[自动].js"
  7007. },
  7008. {
  7009. "key": "hipy_js_bilfun(自动)",
  7010. "name": "🎥|bilfun",
  7011. "type": 3,
  7012. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7013. "searchable": 1,
  7014. "quickSearch": 1,
  7015. "filterable": 1,
  7016. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/bilfun(自动).js"
  7017. },
  7018. {
  7019. "key": "hipy_js_低端影视",
  7020. "name": "🎥|低端|(備用)",
  7021. "type": 3,
  7022. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7023. "searchable": 1,
  7024. "changeable": 1,
  7025. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/ddys.js"
  7026. },
  7027. //APPYSV2模板_分類專區
  7028. {
  7029. "key": "csp_AppYsV2_五一影视",
  7030. "name": "🎥|五一",
  7031. "type": 3,
  7032. "api": "csp_AppYsV2",
  7033. "searchable": 1,
  7034. "quickSearch": 1,
  7035. "filterable": 1,
  7036. "ext": "https://ys.51bro.cn/mogai_api.php/v1.vod",
  7037. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/144.jar;md5;409069d9ab72176bd95aa8b06e36512e"
  7038. },
  7039. {
  7040. "key": "csp_AppYsV2_奴娜影视",
  7041. "name": "🎥|奴娜",
  7042. "type": 3,
  7043. "api": "csp_AppYsV2",
  7044. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7045. "searchable": 1,
  7046. "quickSearch": 1,
  7047. "filterable": 1,
  7048. "ext": "https://www.nntv.in/api.php/v1.vod"
  7049. },
  7050. {
  7051. "key": "csp_AppYsV2_腐剧",
  7052. "name": "🎥|腐剧",
  7053. "type": 3,
  7054. "api": "csp_AppYsV2",
  7055. "searchable": 1,
  7056. "quickSearch": 1,
  7057. "changeable": 1,
  7058. "ext": "http://www.fuju2024.cc:8013/ruifenglb_api.php/v1.vod",
  7059. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1"
  7060. },
  7061. {
  7062. "key": "csp_AppYsV2_酷咯影视",
  7063. "name": "🎥|酷咯",
  7064. "type": 3,
  7065. "api": "csp_AppYsV2",
  7066. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7067. "searchable": 1,
  7068. "quickSearch": 1,
  7069. "filterable": 1,
  7070. "ext": "http://www.kuloo.xyz/ruifenglb_api.php/v1.vod"
  7071. },
  7072. {
  7073. "key": "csp_AppYsV2_酷影视",
  7074. "name": "🎥|酷视",
  7075. "type": 3,
  7076. "api": "csp_AppYsV2",
  7077. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7078. "searchable": 1,
  7079. "quickSearch": 1,
  7080. "filterable": 1,
  7081. "ext": "https://www.tvkuys.xyz/api.php/app/"
  7082. },
  7083. {
  7084. "key": "csp_AppYsV2_零刻影视",
  7085. "name": "🎥|零刻",
  7086. "type": 3,
  7087. "api": "csp_AppYsV2",
  7088. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7089. "searchable": 1,
  7090. "quickSearch": 1,
  7091. "filterable": 1,
  7092. "ext": "https://ys.51bro.cn/mogai_api.php/v1.vod"
  7093. },
  7094. {
  7095. "key": "csp_AppYsV2_沐沐电影",
  7096. "name": "🎥|沐沐",
  7097. "type": 3,
  7098. "api": "csp_AppYsV2",
  7099. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7100. "searchable": 1,
  7101. "quickSearch": 1,
  7102. "filterable": 1,
  7103. "ext": "https://nnystv.cn/api.php/app/"
  7104. },
  7105. {
  7106. "key": "csp_AppYsV2_天天美剧网(APP)",
  7107. "name": "🎥|天天美剧",
  7108. "type": 3,
  7109. "api": "csp_AppYsV2",
  7110. "ext": "https://www.ttmja.com/api.php/app/",
  7111. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1"
  7112. },
  7113. {
  7114. "key": "csp_AppYsV2_河狸影视",
  7115. "name": "🎥|河狸",
  7116. "type": 3,
  7117. "api": "csp_AppYsV2",
  7118. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7119. "searchable": 1,
  7120. "quickSearch": 1,
  7121. "filterable": 1,
  7122. "ext": "https://www.heli888.cc/api.php/app/"
  7123. },
  7124. {
  7125. "key":"csp_AppYsV2_疾风",
  7126. "name":"🎥|疾风|缘视 ",
  7127. "type":3,
  7128. "api":"csp_AppYsV2",
  7129. "playerType":2,
  7130. "searchable":1,
  7131. "quickSearch":1,
  7132. "changeable":1,
  7133. "timeout":15,
  7134. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1",
  7135. "ext":"https://www.tvkuys.xyz/api.php/app/"
  7136. },
  7137. {
  7138. "key": "八号影院",
  7139. "name": "八号影院",
  7140. "type": 3,
  7141. "api": "csp_XBPQ",
  7142. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7143. "searchable": 1,
  7144. "quickSearch": 1,
  7145. "filterable": 1,
  7146. "ext":
  7147. {
  7148. "数组": "class=\"myui-vodbox-content\">&&class=\"role\"",
  7149. "图片": "src=\"&&\"",
  7150. "标题": "class=\"title\">&&</div>",
  7151. "副标题": "class=\"tag text-overflow\">&&</div>",
  7152. "链接": "<a href=\"&&\"",
  7153. "简介": "label>*&&</div>",
  7154. "影片类型": "class=\"tags text-overflow\"*>&&</a>",
  7155. "影片年代": "class=\"item-top\">&&</div>",
  7156. "导演": "导演:</div>&&</div>",
  7157. "跳转播放链接": "src=\"&&\"",
  7158. "分类url": "https://www.bahaotv.com/vodshow/{cateId}-{area}-{by}------{catePg}---{year}.html",
  7159. "分类": "电影$movie#电视剧$tvseries#动漫$anime",
  7160. "地区":"大陆&香港&台湾&美国&法国&英国&日本&韩国&德国&泰国&印度&意大利&西班牙&加拿大&其他||内地&韩国&香港&台湾&日本&美国&泰国&英国&新加坡&其他||国产&日本&欧美&其他"
  7161. }
  7162. },
  7163. //雜項規則_分類專區
  7164. {
  7165. "key": "zxzj",
  7166. "name": "🎥|外剧",
  7167. "type": 3,
  7168. "api": "csp_Zxzj",
  7169. "timeout": 15,
  7170. "searchable": 1,
  7171. "quickSearch": 1,
  7172. "changeable": 1,
  7173. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  7174. "ext": "https://www.zxzjhd.com/"
  7175. },
  7176. {
  7177. "key": "csp_Xiaoh",
  7178. "name": "🎥|小寶|備用4",
  7179. "type": 3,
  7180. "api": "csp_Xiaoh",
  7181. "searchable": 1,
  7182. "quickSearch": 1,
  7183. "filterable": 1,
  7184. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710"
  7185. },
  7186. //短劇專區
  7187. {
  7188. "key": "短剧go",
  7189. "name": "📺|旺旺短剧|go",
  7190. "type": 1,
  7191. "api": "http://zhangqun1818.serv00.net:5052",
  7192. "searchable": 1,
  7193. "quickSearch": 0,
  7194. "changeable": 0
  7195. },
  7196. {
  7197. "key": "韩小圈",
  7198. "name": "📺|韩小圈(APP)",
  7199. "type": 3,
  7200. "api": "csp_HanXiaoQuan",
  7201. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda;md5;b836384ede14d319c1dcbf257a264eda",
  7202. "searchable": 1,
  7203. "quickSearch": 1,
  7204. "filterable": 1
  7205. },
  7206. {
  7207. "key": "csp_HK_91短剧",
  7208. "name": "📺|91短剧",
  7209. "type": 3,
  7210. "api": "csp_XBPQ",
  7211. "searchable": 1,
  7212. "quickSearch": 1,
  7213. "filterable": 1,
  7214. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main//json_now/91duanju.json",
  7215. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5"
  7216. },
  7217. {
  7218. "key":"csp_XBPQ_短剧4",
  7219. "name":"📺|短剧CC",
  7220. "type":3,
  7221. "api":"csp_XBPQ",
  7222. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7223. "searchable":1,
  7224. "quickSearch":1,
  7225. "filterable":1,
  7226. "ext":
  7227. {
  7228. "请求头":"User-Agent$MOBILE_UA",
  7229. "编码":"UTF-8",
  7230. "主页url":"https://www.duanjuwang.cc/",
  7231. "数组":"class=\"stui-vodlist__box\">&&</a>",
  7232. "标题":"title=\"&&\"",
  7233. "图片":"data-original=\"&&\"",
  7234. "副标题":"right\">&&</span>",
  7235. "链接":"href=\"&&\"",
  7236. "播放数组":"playlist clearfix&&</ul>",
  7237. "播放列表":"<a&&a>",
  7238. "播放链接":"href=\"&&\"",
  7239. "播放标题":">&&</",
  7240. "线路数组":"<h3&&h3>",
  7241. "线路标题":"\">&&</",
  7242. "跳转播放链接":"var player_*\"url\":\"&&\"",
  7243. "分类url":"https://www.duanjuwang.cc/vodshow/{cateId}-{area}-{by}--{lang}-{letter}---{catePg}---{year}.html",
  7244. "分类":"短剧$duanju#电影$dianying#电视剧$dianshiju#动漫$dongman#综艺$zongyi",
  7245. "类型":"有声动漫$ysdm#女频恋爱$npla#反转爽剧$fzsj#古装仙侠$gzxx#年代穿越$ndcy#脑洞悬疑$ndxy#现代都市$xdds||动作片$dongzuopian#喜剧片$xijupian#爱情片$aiqingpian#科幻片$kehuanpian#恐怖片$kongbupian#剧情片$juqingpian#纪录片$jilupian#战争片$zhanzhengpian#动画片$donghuapian||国产剧$guochanju#欧美剧$oumeiju#韩剧$hanju#日剧$riju#港剧$gangju#台剧$taiju#泰剧$taiju2#海外剧$haiwaiju||国产动漫$guochandongman#日韩动漫$rihandongman#欧美动漫$oumeidongman#港台动漫$gangtaidongman#海外动漫$haiwaidongman||演唱会$yanchanghui#大陆综艺$daluzongyi#日韩综艺$rihanzongyi#港台综艺$gangtaizongyi#欧美综艺$oumeizongyi"}
  7246. },
  7247. {
  7248. "key": "短剧网",
  7249. "name": "📺|短剧网",
  7250. "type": 3,
  7251. "api": "csp_XBPQ",
  7252. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7253. "searchable": 1,
  7254. "quickSearch": 1,
  7255. "filterable": 1,
  7256. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/短劇網.json"
  7257. },
  7258. {
  7259. "key": "短剧吧",
  7260. "name": "📺|短剧吧",
  7261. "type": 3,
  7262. "api": "csp_XBPQ",
  7263. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7264. "ext": {
  7265. "简介": "醉卧东风祝您观影愉快",
  7266. "分类": "恋爱$lianai#反转$fanzhuan#悬疑$xuanyi#穿越$chuanyue#古装$guzhuang#都市$dushi",
  7267. "分类url": "https://duanju8.cc/type/{cateId}/page/{catePg}.html"
  7268. }
  7269. },
  7270. {
  7271. "key": "夜猫短剧",
  7272. "name": "📺|夜猫短剧",
  7273. "type": 3,
  7274. "api": "csp_YMduanju",
  7275. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/ymz_0509.jar;md5;65527ea42a4090a3041692bdb2b3d9b5",
  7276. "searchable": 1,
  7277. "quickSearch": 1,
  7278. "filterable": 1
  7279. },
  7280. {
  7281. "key": "短剧网",
  7282. "name": "📺|东风短剧",
  7283. "type": 3,
  7284. "api": "csp_XBPQ",
  7285. "ext": {
  7286. "分类" : "逆袭$逆袭#甜宠$甜宠#虐恋$虐恋#穿越$穿越#重生$重生" ,
  7287. "分类url": "http://2ju.cc/show/duanju/class/{cateId}/page/{catePg}.html"
  7288. },
  7289. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5"
  7290. },
  7291. {
  7292. "key": "星芽短剧",
  7293. "name": "📺|星芽短剧",
  7294. "type": 3,
  7295. "api": "csp_AppXY",
  7296. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  7297. "searchable": 1,
  7298. "quickSearch": 0,
  7299. "filterable": 0
  7300. },
  7301. {
  7302. "key": "吉吉短剧",
  7303. "name": "📺|吉吉短剧",
  7304. "type": 3,
  7305. "api": "csp_XBPQ",
  7306. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  7307. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/new_json/XBPQ/吉吉短剧.json"
  7308. },
  7309. {
  7310. "key": "短剧网",
  7311. "name": "📺|短剧网(瀟灑)",
  7312. "type": 3,
  7313. "api": "csp_XBPQ",
  7314. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  7315. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/new_json/XBPQ/短剧网.json"
  7316. },
  7317. {
  7318. "key": "爱你短剧",
  7319. "name": "📺|爱你短剧",
  7320. "type": 3,
  7321. "api": "csp_XBPQ",
  7322. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7323. "searchable": 1,
  7324. "quickSearch": 1,
  7325. "filterable": 1,
  7326. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/爱你短剧.json"
  7327. },
  7328. {
  7329. "key": "爱我短剧",
  7330. "name": "📺|爱我短剧",
  7331. "type": 3,
  7332. "api": "csp_XBPQ",
  7333. "jar":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/spider.jar;md5;b836384ede14d319c1dcbf257a264eda",
  7334. "searchable": 1,
  7335. "quickSearch": 1,
  7336. "filterable": 1,
  7337. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/new_json/XBPQ/爱我短剧.json"
  7338. },
  7339. {
  7340. "key": "河马短剧",
  7341. "name": "📺|河马短剧",
  7342. "type": 3,
  7343. "api": "csp_XBPQ",
  7344. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7345. "searchable": 1,
  7346. "quickSearch": 1,
  7347. "filterable": 1,
  7348. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/河马短剧.json"
  7349. },
  7350. {
  7351. "key": "短剧网",
  7352. "name": "📺|短劇王",
  7353. "type": 3,
  7354. "api": "csp_XBPQ",
  7355. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7356. "searchable": 1,
  7357. "quickSearch": 1,
  7358. "filterable": 1,
  7359. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/短劇王.json"
  7360. },
  7361. {
  7362. "key": "短剧网②",
  7363. "name": "📺|乱乱看短剧",
  7364. "type": 3,
  7365. "api": "csp_XBPQ",
  7366. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7367. "searchable": 1,
  7368. "quickSearch": 1,
  7369. "filterable": 1,
  7370. "ext": {
  7371. "请求头": "User-Agent$MOBILE_UA",
  7372. "编码": "UTF-8",
  7373. "主页url": "https://www.zghhjt.com/",
  7374. "数组": "lazyload\"&&</a>",
  7375. "标题": "title=\"&&\"",
  7376. "图片": "data-original=\"&&\"",
  7377. "副标题": "right\">&&<",
  7378. "链接": "href=\"&&\"",
  7379. "线路数组": "<h3 class=\"title&&h3>",
  7380. "线路标题": "\">&&</",
  7381. "播放数组": "playlist clearfix\">&&</ul>",
  7382. "倒序": "0",
  7383. "播放列表": "<a&&/a>",
  7384. "播放标题": ">&&<",
  7385. "播放链接": "href=\"&&\"",
  7386. "搜索模式": "1",
  7387. "搜索url": "https://www.zghhjt.com/htmlsearch/{wd}----------{pg}---.html",
  7388. "跳转播放链接": "var player_*\"url\":\"&&\"",
  7389. "分类url": "https://www.zghhjt.com/htmlshow/{cateId}-{area}-{by}-{class}-{lang}----{catePg}---{year}.html",
  7390. "分类": "电影$1#电视剧$2#综艺$3#动漫$4#短剧$26",
  7391. "筛选": "1",
  7392. "类型": "动作片$6#喜剧片$7#爱情片$8#科幻片$9#恐怖片$10#剧情片$11#战争片$12#纪录片$24||美剧$20#韩剧$13#日剧$14#泰剧$15#港剧$16#国产剧$25||空||空||空"
  7393. }
  7394. },
  7395. //動漫專區
  7396. {
  7397. "key": "py_dm84",
  7398. "name": "⏭|动漫巴士(沐辰)|PYTHON",
  7399. "type": 3,
  7400. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/py/py_dm84.py",
  7401. "searchable": 1,
  7402. "quickSearch": 0,
  7403. "filterable": 0,
  7404. "changeable": 1
  7405. },
  7406. {
  7407. "key": "csp_動漫巴士",
  7408. "name": "⏭|動漫巴士|老王",
  7409. "type": 3,
  7410. "api": "csp_XBPQ",
  7411. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7412. "searchable": 1,
  7413. "quickSearch": 1,
  7414. "filterable": 1,
  7415. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/動漫巴士.json"
  7416. },
  7417. {
  7418. "key": "动漫巴士",
  7419. "name": "动漫|動漫巴士|道長",
  7420. "type": 3,
  7421. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7422. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/动漫巴士.js"
  7423. },
  7424. {
  7425. "key": "Dm84",
  7426. "name": "动漫|巴士|飯太硬",
  7427. "type": 3,
  7428. "api": "csp_Dm84",
  7429. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  7430. "playerType": 2,
  7431. "searchable": 1,
  7432. "quickSearch": 1,
  7433. "changeable": 1
  7434. },
  7435. {
  7436. "key": "巴士动漫网",
  7437. "name": "动漫|巴士动漫",
  7438. "type": 3,
  7439. "api": "csp_XBPQ",
  7440. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7441. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/巴士動漫網.json"
  7442. },
  7443. {
  7444. "key": "csp_饼干动漫",
  7445. "name": "动漫|饼干动漫",
  7446. "type": 3,
  7447. "api": "csp_XBPQ",
  7448. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7449. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/餅乾動漫.json"
  7450. },
  7451. {
  7452. "key": "drpy_js_去看吧",
  7453. "name": "动漫|去看吧",
  7454. "type": 3,
  7455. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7456. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/去看吧.js"
  7457. },
  7458. {
  7459. "key": "drpy_js_奇米动漫",
  7460. "name": "动漫|奇米动漫",
  7461. "type": 3,
  7462. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7463. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/奇米动漫.js"
  7464. },
  7465. {
  7466. "key": "动画片",
  7467. "name": "动漫|动画片",
  7468. "type": 3,
  7469. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7470. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/DHPDQ.js"
  7471. },
  7472. {
  7473. "key": "动漫岛",
  7474. "name": "动漫|动漫岛",
  7475. "type": 3,
  7476. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7477. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/DMD.js"
  7478. },
  7479. {
  7480. "key": "好看动漫",
  7481. "name": "动漫|好看",
  7482. "type": 3,
  7483. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7484. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/HKDM.js"
  7485. },
  7486. {
  7487. "key": "drpy_js_爱弹幕",
  7488. "name": "动漫|爱弹幕",
  7489. "type": 3,
  7490. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7491. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/爱弹幕.js"
  7492. },
  7493. {
  7494. "key": "drpy_js_路漫漫",
  7495. "name": "动漫|路漫漫",
  7496. "type": 3,
  7497. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7498. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/路漫漫.js"
  7499. },
  7500. {
  7501. "key": "hipy_js_大米动漫[漫]",
  7502. "name": "动漫|大米",
  7503. "type": 3,
  7504. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7505. "searchable": 1,
  7506. "quickSearch": 1,
  7507. "filterable": 1,
  7508. "order_num": 0,
  7509. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/大米动漫[漫].js"
  7510. },
  7511. {
  7512. "key":"drpyS_OmoFun[漫]",
  7513. "name":"动漫|OmoFun[漫](DS)",
  7514. "type":4,
  7515. "api":"http://drpys.aera.eu.org/api/OmoFun[漫]",
  7516. "searchable":2,
  7517. "filterable":0,
  7518. "quickSearch":1,
  7519. "ext":""
  7520. },
  7521. {
  7522. "key": "hipy_js_七色番[漫]",
  7523. "name": "动漫|七色番",
  7524. "type": 3,
  7525. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7526. "searchable": 1,
  7527. "quickSearch": 1,
  7528. "filterable": 1,
  7529. "order_num": 0,
  7530. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/七色番[漫].js"
  7531. },
  7532. {
  7533. "key": "csp_XBPQ_桵空",
  7534. "name": "動漫|桵空",
  7535. "type": 3,
  7536. "api": "csp_XBPQ",
  7537. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7538. "searchable": 1,
  7539. "quickSearch": 1,
  7540. "filterable": 1,
  7541. "ext": {
  7542. "分类url": "https://www.maigo.cc/vodshow/{cateId}---{class}-----{catePg}---{year}/",
  7543. "分类": "电影$84#综艺$91#大陆剧$81#港台剧$82#海外剧$83#纪录片$88#动漫$1#日剧$32#日漫$46#国漫$47#美漫$85"
  7544. }
  7545. },
  7546. {
  7547. "key": "奇米动漫",
  7548. "name": "动漫|奇米",
  7549. "type": 3,
  7550. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7551. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/奇米动漫.js"
  7552. },
  7553. {
  7554. "key": "怡萱动漫",
  7555. "name": "动漫|怡萱[V1]",
  7556. "type": 3,
  7557. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7558. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/怡萱动漫.js"
  7559. },
  7560. {
  7561. "key": "hipy_js_怡萱动漫[漫]",
  7562. "name": "动漫|怡萱[V2]",
  7563. "type": 3,
  7564. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7565. "searchable": 1,
  7566. "quickSearch": 1,
  7567. "filterable": 1,
  7568. "order_num": 0,
  7569. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/怡萱动漫[漫].js"
  7570. },
  7571. {
  7572. "key": "樱花动漫1",
  7573. "name": "动漫|ying櫻花",
  7574. "type": 3,
  7575. "api": "csp_XBPQ",
  7576. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7577. "searchable": 1,
  7578. "quickSearch": 1,
  7579. "filterable": 1,
  7580. "ext": {
  7581. "请求头": "User-Agent$MOBILE_UA",
  7582. "编码": "UTF-8",
  7583. "主页url": "http://www.yinghuadongman.cn/",
  7584. "数组": "<a href=\"/vod_&&</a>",
  7585. "图片": "data-original=\"&&\"",
  7586. "标题": "title=\"&&\"",
  7587. "副标题": "item-note\">&&</div>",
  7588. "链接": "http://www.yinghuadongman.cn/vod_+&&.html",
  7589. "播放数组": "module-play-list-content&&</div>",
  7590. "播放列表": "<a&&a>",
  7591. "播放链接": "href=\"&&\"",
  7592. "播放标题": "<span>&&</span>",
  7593. "线路数组": "module-tab-item tab-item&&</div>",
  7594. "线路标题": "<span>&&</span>",
  7595. "跳转播放链接": "var player_*\"url\":\"&&\"",
  7596. "简介": "<p>&&</p>",
  7597. "搜索url": "http://www.yinghuadongman.cn/search_{wd}----------{pg}---.html",
  7598. "分类url": "http://www.yinghuadongman.cn/show_{cateId}--{by}------{catePg}---{year}.html",
  7599. "分类": "日本动漫$ribendongman#国产动漫$guochandongman#动漫电影$dongmandianying#欧美动漫$oumeidongman"
  7600. }
  7601. },
  7602. {
  7603. "key": "櫻花動漫2",
  7604. "name": "动漫|857櫻花",
  7605. "type": 3,
  7606. "api": "csp_XBPQ",
  7607. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7608. "searchable": 1,
  7609. "quickSearch": 1,
  7610. "filterable": 1,
  7611. "ext": {
  7612. "分类url": "https://www.857yhw.com/show/{cateId}--------{catePg}---{year}.html",
  7613. "分类": "動漫電影$4#日本動漫$1#大陸動漫$3#歐美動漫$6"
  7614. }
  7615. },
  7616. {
  7617. "key": "魔都",
  7618. "name": "动漫|魔都(PG)",
  7619. "type": 0,
  7620. "api": "https://caiji.moduapi.cc/api.php/provide/vod/at/xml/",
  7621. "searchable": 1,
  7622. "changeable": 1,
  7623. "categories": ["国产动漫", "日韩动漫", "欧美动漫", "港台动漫", "动漫电影", "里番动漫"]
  7624. },
  7625. {
  7626. "key": "魔都资源",
  7627. "name": "动漫|魔都(XB)",
  7628. "type": 1,
  7629. "api": "https://caiji.moduapi.cc/api.php/provide/vod",
  7630. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710",
  7631. "searchable": 1,
  7632. "changeable": 1
  7633. },
  7634. {
  7635. "key": "萝卜动漫",
  7636. "name": "动漫|萝卜",
  7637. "type": 3,
  7638. "api": "csp_XBPQ",
  7639. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7640. "searchable": 1,
  7641. "quickSearch": 1,
  7642. "filterable": 1,
  7643. "ext": {
  7644. "影片类型" : "分类:&&</a>" ,
  7645. "简介" : "请勿相信影片中的广告,以免上当受骗。+简介:&&</p>" ,
  7646. "分类url": "https://985dm.com/list/{cateId}-{catePg}.html",
  7647. "分类" : "国产动漫$3#日本动漫$2#欧美动漫$4#动漫电影$1#短剧$20"
  7648. }
  7649. },
  7650. {
  7651. "key": "hipy_js_NT动漫[漫]",
  7652. "name": "动漫|牛顿",
  7653. "type": 3,
  7654. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7655. "searchable": 1,
  7656. "quickSearch": 1,
  7657. "filterable": 1,
  7658. "order_num": 0,
  7659. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/NT动漫[漫].js"
  7660. },
  7661. {
  7662. "key": "hipy_js_次元城动漫[漫]",
  7663. "name": "动漫|次元城|T3",
  7664. "type": 3,
  7665. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7666. "searchable": 1,
  7667. "quickSearch": 1,
  7668. "filterable": 1,
  7669. "order_num": 0,
  7670. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/次元城动漫[漫].js"
  7671. },
  7672. {
  7673. "key": "hipy_js_奇米动漫[漫]",
  7674. "name": "动漫|奇米",
  7675. "type": 3,
  7676. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7677. "searchable": 1,
  7678. "quickSearch": 1,
  7679. "filterable": 1,
  7680. "order_num": 0,
  7681. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/奇米动漫[漫].js"
  7682. },
  7683. {
  7684. "key": "Anime1",
  7685. "name": "动漫|日本",
  7686. "type": 3,
  7687. "api": "csp_Anime1",
  7688. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  7689. "playerType": 2,
  7690. "searchable": 1,
  7691. "quickSearch": 1,
  7692. "changeable": 1
  7693. },
  7694. {
  7695. "key": "hipy_js_嗷呜动漫",
  7696. "name": "动漫|嗷呜动漫",
  7697. "type": 3,
  7698. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7699. "searchable": 1,
  7700. "quickSearch": 1,
  7701. "filterable": 1,
  7702. "order_num": 0,
  7703. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/嗷呜动漫.js"
  7704. },
  7705. {
  7706. "key": "大米动漫",
  7707. "name": "动漫|大米",
  7708. "type": 3,
  7709. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7710. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/大米动漫.js"
  7711. },
  7712. {
  7713. "key": "白狐动漫网",
  7714. "name": "动漫|白狐动漫",
  7715. "type": 3,
  7716. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7717. "api": "csp_XBPQ",
  7718. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/白狐動畫.json"
  7719. },
  7720. {
  7721. "key": "csp_XBPQ_漫岛",
  7722. "name": "动漫|漫岛",
  7723. "type": 3,
  7724. "api": "csp_XBPQ",
  7725. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7726. "searchable": 1,
  7727. "quickSearch": 1,
  7728. "filterable": 1,
  7729. "ext": {
  7730. "请求头": "User-Agent$MOBILE_UA",
  7731. "编码": "UTF-8",
  7732. "主页": "http://www.dmand5.com",
  7733. "播放数组": "class=\"arconix-toggle-content fn-clear&&</ul>",
  7734. "播放列表": "<a&&a>",
  7735. "播放链接": "href=\"&&\"",
  7736. "播放标题": ">&&</",
  7737. "线路数组": "class=\"arconix-toggle-title&&</span>",
  7738. "线路标题": ">&&</font>",
  7739. "分类url": "http://www.dmand5.com/vod-list-id-{cateId}-pg-{catePg}-order--by--class-{class}-year-{year}-letter-{letter}-area--lang-.html",
  7740. "分类": "新番连载$1#热门国漫$4#完结日漫$3#剧场动漫$16",
  7741. "剧情": "冒险$1#热血$2#奇幻$3#恋爱$4#校园$5#后宫$6#搞笑$7#青春$8#百合$9#科幻$14#推理$13#魔法$12#神魔$11#治愈$10#竞技$59#悬疑$60#战争$62#萝莉$63#魔幻$64#战斗$65#歌舞$98#历史$99#励志$108#偶像$118#职场$121冒险$50#热血$51#武侠$52#奇幻$53#玄幻$54#竞技$55#魔幻$56#科幻$57#恋爱$58#历史$73#战斗$74#搞笑$75#神魔$76#战争$97#古风$111#少女$112#萝莉$113#治愈$114#日常$115#歌舞$116#偶像$120#职场$123#仙侠$125冒险$36#热血$37#奇幻$38#恋爱$39#校园$40#后宫$41#搞笑$42#治愈$43#神魔$44#魔法$45#百合$46#推理$47#科幻$48#竞技$49#悬疑$66#战争$68#萝莉$69#魔幻$70#战斗$71#青春$72#历史$100#歌舞$101#恐怖$104#职场$107#励志$109#偶像$119||冒险$77#热血$78#奇幻$79#恋爱$80#校园$81#后宫$82#搞笑$83#青春$84#百合$85#治愈$86#神魔$87#魔法$88#推理$89#科幻$90#竞技$91#悬疑$92#战争$93#萝莉$94#魔幻$95#战斗$96#历史$102#歌舞$103#恐怖$105#职场$106#励志$110#偶像$117#职场$124"
  7742. }
  7743. },
  7744. {
  7745. "key": "csp_XBPQ_动漫",
  7746. "name": "动漫|动漫屋",
  7747. "type": 3,
  7748. "api": "csp_XBPQ",
  7749. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7750. "searchable": 1,
  7751. "quickSearch": 1,
  7752. "filterable": 1,
  7753. "ext": {
  7754. "主页url": "https://www.ppxdm.com/",
  7755. "嗅探词": "index.m3u8#.mp4#m3u8#.m3u8#/tos/#.flv#video/tos",
  7756. "图片": "data-original=\"&&\"",
  7757. "标题": "alt=\"&&\"",
  7758. "链接": "href=\"&&\"",
  7759. "线路数组": "class=\"module-tab-item tab-item\"&&</div>",
  7760. "线路标题": "<span>&&</span>",
  7761. "分类url": "https://www.ppxdm.com/v-show/{cateId}-{area}-{by}-{class}-{lang}-{letter}---{catePg}---{year}.html",
  7762. "分类": "动漫电影$1#日本动漫$2#国产动漫$3#欧美动漫$4#短剧$20"
  7763. }
  7764. },
  7765. {
  7766. "key": "hipy_js_爱弹幕[漫]",
  7767. "name": "动漫|爱弹幕",
  7768. "type": 3,
  7769. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7770. "searchable": 1,
  7771. "quickSearch": 1,
  7772. "filterable": 1,
  7773. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/爱弹幕[漫].js"
  7774. },
  7775. {
  7776. "key": "drpy_js_58动漫",
  7777. "name": "动漫|58动漫",
  7778. "type": 3,
  7779. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7780. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/58动漫.js"
  7781. },
  7782. //神秘好用源_分類專區
  7783. {
  7784. "key": "MTV",
  7785. "name": "🎵|MTV",
  7786. "type": 3,
  7787. "api": "csp_Bili",
  7788. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5",
  7789. "style": {"type": "rect", "ratio": 1.597},
  7790. "searchable": 1,
  7791. "quickSearch": 1,
  7792. "changeable": 0,
  7793. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/json_now/MTV.json"
  7794. },
  7795. {
  7796. "key": "ksxjj",
  7797. "name": "🎵|KTV",
  7798. "type": 4,
  7799. "api": "http://120.53.102.254/dsp/",
  7800. "searchable": 1,
  7801. "quickSearch": 1,
  7802. "filterable": 1
  7803. },
  7804. {
  7805. "key": "alllive",
  7806. "name": "㊙︎|各种直播",
  7807. "type": 3,
  7808. "api": "csp_Alllive",
  7809. "spider": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  7810. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b",
  7811. "playerType": 2,
  7812. "searchable": 1,
  7813. "quickSearch": 1,
  7814. "changeable": 0
  7815. },
  7816. {
  7817. "key": "直播转点播",
  7818. "name": "㊙︎|直播转点播",
  7819. "type": 4,
  7820. "api": "http://zhangqun66.com/zh/2241-2.php",
  7821. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar;md5;41c87635d7592069884a5dafa12acabe",
  7822. "searchable": 1,
  7823. "changeable": 0
  7824. },
  7825. {
  7826. "key": "直播转点播1",
  7827. "name": "㊙︎|直播转点播[V2]",
  7828. "type": 3,
  7829. "searchable": 1,
  7830. "timeout": 60,
  7831. "api": "https://zhangqun66.com/zq/cat/live2vod.js",
  7832. "ext": "https://zhangqun66.com/zq/cat/feimaolive.json",
  7833. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar;md5;41c87635d7592069884a5dafa12acabe",
  7834. "style": {"type": "list", "ratio": 1.1}
  7835. },
  7836. {
  7837. "key": "直播转点播",
  7838. "name": "㊙︎|直播转点播[V3]",
  7839. "type": 3,
  7840. "style": {"type": "oval"},
  7841. "api": "https://raw.githubusercontent.com/sqspot/tac/main/lib/live2cms.js",
  7842. "ext": "https://raw.githubusercontent.com/sqspot/tac/main/live2tv_sq.txt",
  7843. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710"
  7844. },
  7845. {
  7846. "key": "直播转点播2",
  7847. "name": "㊙︎|直播转点播[V4]",
  7848. "type": 3,
  7849. "searchable": 1,
  7850. "api": "https://raw.githubusercontent.com/sqspot/tac/main/lib/live2vod.js",
  7851. "ext": "https://raw.githubusercontent.com/sqspot/tac/main/live2tv_sq.m3u",
  7852. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710"
  7853. },
  7854. {
  7855. "key": "直播转点播s",
  7856. "name": "㊙︎|直播转点播[V5]",
  7857. "type": 3,
  7858. "style": {"type": "oval"},
  7859. "api": "https://raw.githubusercontent.com/sqspot/tac/main/lib/live2cms.js",
  7860. "ext": "https://raw.githubusercontent.com/sqspot/tac/main/live2tv_sq_s.txt",
  7861. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710"
  7862. },
  7863. {
  7864. "key": "直播转点播s2",
  7865. "name": "㊙︎|直播转点播[V6]",
  7866. "type": 3,
  7867. "searchable": 1,
  7868. "api": "https://raw.githubusercontent.com/sqspot/tac/main/lib/live2vod.js",
  7869. "ext": "https://raw.githubusercontent.com/sqspot/tac/main/live2tv_sq_s.m3u",
  7870. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710"
  7871. },
  7872. {
  7873. "key": "超级影视",
  7874. "name": "㊙︎|超级影视",
  7875. "type": 1,
  7876. "api": "http://cjvip.free.hr/api.php/provide/vod/?ac=list",
  7877. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar;md5;41c87635d7592069884a5dafa12acabe",
  7878. "searchable": 1,
  7879. "changeable": 0
  7880. },
  7881. {
  7882. "key": "服务器油管",
  7883. "name": "㊙︎|YOUTUBE",
  7884. "type": 4,
  7885. "api": "https://zhangqun66.com/yt/yt001.php",
  7886. "jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/蓝天白云.txt;md5;329e914a90b0bb5c7cb69b0eaec19700",
  7887. "searchable": 1,
  7888. "changeable": 1,
  7889. "ext": "海贼王#最新歌曲#动漫#新闻#卡提诺#追剧#爆笑#喜剧#新闻#旅游#播放清单#财神爷我的歌单"
  7890. },
  7891. {
  7892. "key": "油管播放列表1",
  7893. "name": "㊙︎|YT播放列表1",
  7894. "type": 4,
  7895. "api": "http://zhangqun66.com/ytlb.php",
  7896. "style": {
  7897. "type": "rect",
  7898. "ratio": 1.33
  7899. },
  7900. "searchable": 1,
  7901. "changeable": 1
  7902. },
  7903. {
  7904. "key": "油管播放列表2",
  7905. "name": "㊙︎|YT播放列表2",
  7906. "type": 4,
  7907. "api": "http://zhangqun66.com/ytlb1.php",
  7908. "searchable": 1,
  7909. "style": {
  7910. "type": "rect",
  7911. "ratio": 1.33
  7912. },
  7913. "changeable": 1
  7914. },
  7915. {
  7916. "key":"drjs_酷我听书[听]",
  7917. "name":"㊙︎|酷我听书",
  7918. "type":3,
  7919. "api":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7920. "ext":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/酷我听书[听].js"
  7921. },
  7922. {
  7923. "key": "hipy_js_有声小说吧",
  7924. "name": "㊙︎|听书吧|T3",
  7925. "type": 3,
  7926. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7927. "searchable": 1,
  7928. "quickSearch": 1,
  7929. "filterable": 1,
  7930. "order_num": 0,
  7931. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/有声小说吧[听].js"
  7932. },
  7933. {
  7934. "key": "hipy_js_爱上你听书网[听]",
  7935. "name": "㊙︎|爱上你听书网|T3",
  7936. "type": 3,
  7937. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7938. "searchable": 1,
  7939. "quickSearch": 1,
  7940. "filterable": 1,
  7941. "order_num": 0,
  7942. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/爱上你听书网[听].js"
  7943. },
  7944. {
  7945. "key": "hipy_js_海洋听书[听]",
  7946. "name": "㊙︎|海洋听书|T3",
  7947. "type": 3,
  7948. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7949. "searchable": 1,
  7950. "quickSearch": 1,
  7951. "filterable": 1,
  7952. "order_num": 0,
  7953. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/海洋听书[听].js"
  7954. },
  7955. {
  7956. "key": "hipy_js_六月听书[听]",
  7957. "name": "㊙︎|六月听书|T3",
  7958. "type": 3,
  7959. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7960. "searchable": 1,
  7961. "quickSearch": 1,
  7962. "filterable": 1,
  7963. "order_num": 0,
  7964. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/六月听书[听].js"
  7965. },
  7966. //磁力源_分類專區
  7967. {
  7968. "key": "drpy_js_360影视",
  7969. "name": "🎖︎|360",
  7970. "type": 3,
  7971. "searchable": 1,
  7972. "quickSearch": 1,
  7973. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7974. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/360影视[官].js"
  7975. },
  7976. {
  7977. "key": "hipy_js_奇珍异兽[官]",
  7978. "name": "🎖︎|愛奇异",
  7979. "type": 3,
  7980. "searchable": 1,
  7981. "quickSearch": 1,
  7982. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7983. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/奇珍异兽[官].js"
  7984. },
  7985. {
  7986. "key": "drpy_js_百忙无果",
  7987. "name": "🎖︎|芒果",
  7988. "type": 3,
  7989. "searchable": 1,
  7990. "quickSearch": 1,
  7991. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  7992. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/百忙无果[官].js"
  7993. },
  7994. {
  7995. "key": "drpy_js_腾云驾雾",
  7996. "name": "🎖︎|腾讯",
  7997. "type": 3,
  7998. "searchable": 1,
  7999. "quickSearch": 1,
  8000. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  8001. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/腾云驾雾[官].js"
  8002. },
  8003. {
  8004. "key": "drpy_js_菜狗",
  8005. "name": "🎖︎|搜狗",
  8006. "type": 3,
  8007. "searchable": 1,
  8008. "quickSearch": 1,
  8009. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  8010. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/菜狗[官].js"
  8011. },
  8012. {
  8013. "key": "drpy_js_优酷",
  8014. "name": "🎖︎|优酷",
  8015. "type": 3,
  8016. "searchable": 1,
  8017. "quickSearch": 1,
  8018. "api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js",
  8019. "ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/优酷[官].js"
  8020. },
  8021. {"key": "克隆合集","name": "🧲|克隆合集|go","type": 4,"api": "http://zhangqun66.com/klhj.php","searchable": 1,"quickSearch": 1,"style": { "type": "rect", "ratio": 1.33},"changeable": 1,"filterable": 0 },
  8022. {"key": "采集集合go","name": "🧲|采集集合|go","type": 1,"api": "http://zhangqun1818.serv00.net:5053","searchable": 1,"style": {"type": "rect","ratio": 1.33},"quickSearch": 0,"changeable": 1},
  8023. {"key": "采集之王","name":"🧲|採集大合集","type":3,"api":"https://raw.githubusercontent.com/maoystv/000/master/js/drpy2.min.js","searchable":1,"quickSearch":1,"ext":"https://git.acwing.com/YGFXZ/0/-/raw/main/采集之王_合_.js?type=url&params=https://git.acwing.com/YGFXZ/0/-/raw/main/采集静态.json"},
  8024. {"key": "vod_如意","name":"🧲|如意","type":0,"api":"https://cj.rycjapi.com/api.php/provide/vod/from/rym3u8/at/xml/","searchable":1,"quickSearch":1,"filterable":1},{"key":"vod_海外","name":"🧲|海外","type":1,"api":"https://hw8.live/api.php/provide/vod/","searchable":1,"quickSearch":1},
  8025. {"key": "vod_华为","name":"🧲|華為","type":1,"api":"http://nikanba.live/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
  8026. {"key": "csp_華為吧","name": "🧲|華為吧","type": 1,"api": "https://cjhwba.com/api.php/provide/vod/?ac=list","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710","searchable": 1,"quickSearch": 1,"filterable": 1},
  8027. {"key": "csp_華為吧cms","name": "🧲|華為吧(聚)","type": 0,"api": "https://cjhwba.com/api.php/provide/vod/at/xml/?ac=list","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710","searchable": 1,"quickSearch": 1,"filterable": 1},
  8028. {"key": "vod_暴风","name":"🧲|暴風","type":1,"api":"https://app.bfzyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1,"categories":["国产剧","国产动漫","动作片","科幻片","剧情片","喜剧片","爱情片","恐怖片","战争片","香港剧","台湾剧","日本剧","欧美剧","泰国剧","日本动漫","综艺频道","大陆综艺","港台综艺","日本综艺","新马泰综艺","纪录片"]},
  8029. {"key": "vod_量子","name":"🧲|量子","type":1,"api":"http://cj.lziapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8030. {"key": "vod_索尼","name":"🧲|索尼","type":1,"api":"https://suoniapi.com/api.php/provide/vod/?ac=list","searchable":1,"changeable":1,"quickSearch":1,"filterable":1,"categories":["动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","悬疑片","犯罪片","冒险片","动画片","惊悚片","奇幻片","国产剧","欧美剧","韩剧","日剧","港剧","台剧","泰剧","大陆综艺","日韩综艺","港台综艺","欧美综艺","国产动漫","日韩动漫","欧美动漫","动画片","港台动漫","海外动漫"]},
  8031. {"key": "vod_光速","name":"🧲|光速","type":1,"api":"https://api.guangsuapi.com/api.php/provide/vod/from/gsm3u8/?ac=list","searchable":1,"quickSearch":1,"filterable":1,"categories":["动作片","爱情片","科幻片","战争片","剧情片","恐怖片","喜剧片","大陆剧","港澳剧","台湾剧","欧美剧","动漫电影","韩剧","日剧","泰剧"]},
  8032. {"key": "vod_快车","name":"🧲|快車","type":1,"api":"https://caiji.kczyapi.com/api.php/provide/vod/?ac=list","searchable":1,"changeable":1,"quickSearch":1,"filterable":1,"categories":["动漫","电影","动作片","喜剧片","爱情片","科幻片","恐怖片","战争片","剧情片","动画片","电视剧","国产剧","香港剧","台湾剧","欧美剧","韩国剧","日本剧","海外剧","动漫","国产动漫","日本动漫","欧美动漫","预留","综艺","大陆综艺","日韩综艺","港台综艺","欧美综艺","泰国剧","未分类"]},
  8033. {"key": "vod_豪华","name":"🧲|豪華","type":1,"api":"https://hhzyapi.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"filterable":1,"categories":["动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","悬疑片","犯罪片","奇幻片","记录片","动画片","内地剧","香港剧","台湾剧","日剧","韩剧","欧美剧","马泰剧","大陆综艺","港台综艺","日韩综艺","欧美综艺","中国动漫","日本动漫","欧美动漫"]},
  8034. {"key": "vod_优质","name":"🧲|優質","type":1,"api":"https://api.1080zyku.com/inc/api_mac10.php","searchable":1,"quickSearch":1},
  8035. {"key": "vod_极速","name":"🧲|極速","type":1,"api":"https://jszyapi.com/api.php/provide/vod/at/json","searchable":1,"quickSearch":1,"filterable":1,"categories":["内地剧","欧美剧","日剧","韩剧","台湾剧","香港剧","马泰剧","悬疑片","喜剧片","动作片","爱情片","科幻片","恐怖片","剧情片","战争片","犯罪片","记录片","动画片","日本动漫","欧美动漫","中国动漫","大陆综艺","日韩综艺","港台综艺","欧美综艺","体育赛事"]},
  8036. {"key": "vod_虎牙","name":"🧲|虎牙","type":1,"api":"https://www.huyaapi.com/api.php/provide/vod/from/hym3u8","searchable":1,"quickSearch":1,"filterable":1},
  8037. {"key": "vod_最大","name":"🧲|最大","type":1,"api":"http://zuidazy.me/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8038. {"key": "vod_爱坤","name":"🧲|爱睏","type":1,"api":"https://ikunzyapi.com/api.php/provide/vod/from/ikm3u8/at/json","searchable":1,"quickSearch":1,"filterable":1},
  8039. {"key": "vod_天空","name":"🧲|天空","type":1,"api":"http://api.tiankongapi.com/api.php/provide/vod/","playUrl":"","searchable":1,"quickSearch":1,"categories":[]},
  8040. {"key": "vod_红牛","name":"🧲|红牛","type":1,"api":"https://www.hongniuzy2.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8041. {"key": "vod_优酷","name":"🧲|優酷","type":1,"api":"https://api.ukuapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8042. {"key": "vod_魔都","name":"🧲|魔都","type":1,"api":"https://www.moduzy.com/api.php/provide/vod/?ac=list","searchable":1,"changeable":1,"quickSearch":1,"filterable":1},
  8043. {"key": "vod_速播","name":"🧲|速播","type":1,"api":"https://subocaiji.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8044. {"key": "vod_卧龙","name":"🧲|卧龍","type":1,"api":"https://collect.wolongzyw.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8045. {"key": "vod_金鹰","name":"🧲|金鹰","type":1,"api":"https://jyzyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8046. {"key": "vod_非凡","name":"🧲|非凡","type":1,"api":"http://cj.ffzyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1,"playerType":2,"categories":["动作片","喜剧片","科幻片","恐怖片","爱情片","剧情片","战争片","记录片","国产剧","欧美剧","香港剧","韩国剧","台湾剧","日本剧","海外剧","泰国剧","国产动漫","日韩动漫","欧美动漫","港台动漫","海外动漫","大陆综艺","港台综艺","日韩综艺","欧美综艺"]},
  8047. {"key": "vod_南瓜","name": "🧲|南瓜","type": 3,"api": "csp_NanGua","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fan.txt;md5;8851819289f80deae32319080028db3b","playerType": 2,"searchable": 1,"quickSearch": 1,"changeable": 1},
  8048. {"key": "vod_采集","name": "🧲|采集","type": 4,"api": "http://zhangqun66.com/cjjh.php","searchable": 1,"changeable": 1,"recordable": 0,"style": {"type": "rect", "ratio": 1.33},"header": { "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", "User-Agent": "Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/117.0.0.0Safari/537.36"}},
  8049. {"key": "vod_无尽","name": "🧲|无尽","type": 1,"api": "https://api.wujinapi.me/api.php/provide/vod/?ac=list","searchable": 1,"quickSearch": 1,"filterable": 1,"categories": [ "动作片" , "动画片" , "喜剧片" , "爱情片" , "科幻片" , "恐怖片" , "剧情片" , "战争片" , "悬疑片" , "犯罪片" , "奇幻片" , "邵氏电影", "纪录片" , "短剧" , "国产剧" , "香港剧" , "台湾剧" , "日本剧" , "韩国剧" , "美国剧" , "泰剧" , "海外剧" , "大陆综艺", "港台综艺", "日韩综艺", "欧美综艺", "国产动漫", "日韩动漫", "欧美动漫", "影视解说", "体育赛事"]},
  8050. {"key": "vod_飘零","name": "🧲|飘零","type": 1,"api": "https://p2100.net/api.php/provide/vod/","searchable": 1,"quickSearch": 1,"categories": [ "电影" , "连续剧" , "综艺" , "动漫" , "动作片" , "电影" , "喜剧片" , "爱情片" , "科幻片" , "恐怖片" , "剧情片" , "战争片" , "国产剧" , "香港剧" , "台湾剧" , "日本剧" , "韩国剧" , "欧美剧" , "海外剧" , "纪录片" , "动漫电影", "邵氏大片"]},
  8051. {"key": "vod_OK","name":"🧲| ️OK","type":1,"api":"https://api.okzy.org/api.php/provide/vod/","searchable":1,"quickSearch":1,"filterable":1},
  8052. {"key": "黑墙影视","name": "🧲|黑墙","type": 1,"api": "https://blackwallvideo.online/api.php/provide/vod/","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5","searchable": 1,"quickSearch": 1},
  8053. {"key": "艾旦影视","name": "🧲|艾旦","type": 1,"api": "https://lovedan.net/api.php/provide/vod/","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5","searchable": 1,"quickSearch": 1,"categories": [ "动作片" , "喜剧片" , "爱情片" , "科幻片" , "恐怖片" , "犯罪片" , "战争片" , "剧情片" , "动画电影", "国产剧" , "港台剧" , "日韩剧" , "欧美剧" , "海外剧" , "网红主播", "日韩综艺", "港台综艺", "欧美综艺", "大陆综艺", "国产动漫", "日韩动漫", "欧美动漫", "海外动漫", "海外抖音", "影视解说", "直播"]},
  8054. {"key": "HG影视","name": "🧲|皇冠","type": 1,"api": "https://hong.hgyx.vip/api.php/provide/vod/","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/xyqxbpq.jar;md5;fd3cefc7302f3a39a442682f802b11e5","searchable": 1,"quickSearch": 1},
  8055. {"key": "影图","name": "🧲|影图","type": 1,"api": "https://cj.vodimg.top/api.php/provide/vod/","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/panda1123.jar;md5;d9004aa2e16f60b04baed361713fb710","searchable": 1,"quickSearch": 1},
  8056. {"key": "Bdys_spider","name": "🧲|修罗","api": "csp_Bdys01","type": 3,"filterable": 1,"quickSearch": 1,"searchable": 1,"timeout": 60,"ext": ".https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/tokenm.json$$$https://www.xlys01.com/$$$noproxy$$$1"},
  8057. {"key": "金鹰克隆","name": "🧲|金鹰|克隆","type": 4,"api": "http://zhangqun66.com/jy.php","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar;md5;41c87635d7592069884a5dafa12acabe","searchable": 1,"quickSearch": 1,"filterable": 1,"recordable": 0},
  8058. {"key": "索尼克隆","name": "🧲|索尼|克隆","type": 4,"api": "http://zhangqun66.com/sn.php","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar;md5;41c87635d7592069884a5dafa12acabe","searchable": 1,"quickSearch": 1,"filterable": 1},
  8059. {"key": "黑木耳克隆","name": "🧲|黑木耳|克隆","type": 4,"api": "http://zhangqun66.com/225.php","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/fm.jar;md5;41c87635d7592069884a5dafa12acabe","searchable": 1,"quickSearch": 1,"filterable": 1,"recordable": 0},
  8060. {"key": "黑木耳资源","name": "🧲|黑木耳|PHP","type": 1,"api": "http://json.heimuer.xyz/api.php/provide/vod/","playurl": "https://hoplayer.com/index.html?url=","searchable": 1,"quickSearch": 1,"categories": [ "剧情片" , "动作片" , "冒险片" , "同性片" , "喜剧片" , "奇幻片" , "恐怖片" , "悬疑片" , "惊悚片" , "灾难片" , "爱情片" , "犯罪片" , "科幻片" , "歌舞片" , "战争片" , "经典片" , "动画电影" , "网络电影" , "其他片" , "国产剧" , "港剧" , "韩剧" , "日剧" , "泰剧" , "台剧" , "欧美剧" , "新马剧" , "其他剧" , "国产综艺" , "港台综艺" , "韩国综艺" , "日本综艺" , "欧美综艺" , "新马泰综艺", "其他综艺" , "古装短剧" , "虐恋短剧" , "逆袭短剧" , "神豪短剧" , "重生短剧" , "复仇短剧" , "穿越短剧" , "甜宠短剧" , "强者短剧" , "欧美动漫" , "日本动漫" , "韩国动漫" , "国产动漫" , "港台动漫"]},
  8061. {"key": "黑木耳道長","name": "🧲|黑木耳|道長","type": 3,"api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","searchable": 1,"quickSearch": 1,"filterable": 1,"order_num": 0,"ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/黑木耳资源[资].js"},
  8062. {"key": "drjs_爱看","name":"🧲|爱看機器人","type":3,"api":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","ext":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/ikanbot2.js"},
  8063. {"key": "drjs_大全","name":"🧲|影視大全","type":3,"api":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","ext":"https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/影视大全.js"},
  8064. {"key": "vod_360","name":"🧲|360","type":1,"api":"https://360zy.com/api.php/provide/vod","categories":["国产剧","短片","动画片","香港剧","韩国剧","欧美剧","动作片","喜剧片","爱情片","科幻片","恐怖片","剧情片","战争片","NBA","惊悚片","家庭篇","古装片","历史片","悬疑片","犯罪片","纪录片","台湾剧","大陆综艺","国产动漫","日韩动漫","西部片"]},
  8065. {"key": "555影院","name": "🧲|555","type": 3,"api": "csp_AppYsV2","jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/dokilwss.jar;md5;145277452362fe4b1371e8968b414ed1","searchable": 1,"quickSearch": 1,"filterable": 1,"ext": "https://e3wuwu4.com/api.php/app/"},
  8066. {"key": "爱坤资源","name": "🧲|爱坤资源","type": 1,"api": "https://www.ikunzy.com/api.php/provide/vod/","searchable": 1,"categories": [ "动作片" , "喜剧片" , "爱情片" , "科幻片" , "恐怖片" , "剧情片" , "战争片" , "国产剧" , "香港剧" , "台湾剧" , "韩国剧" , "纪录片" , "动画片" , "日本剧" , "泰国剧" , "欧美剧" , "国产动漫", "日本动漫", "欧美" , "海外动漫", "电影解说", "大陆综艺", "港台综艺", "日韩综艺", "欧美综艺"]},
  8067. {"key": "drpy_js_电影港","name": "🧲|电影港","type": 3,"api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/dygang.js","playerType": "1","searchable": 1},
  8068. {"key": "drpy_js_磁力熊搜索","name": "🧲|磁力熊","type": 3,"api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/cilixiong.js","searchable": 1,"quickSearch": 1,"changeable": 1},
  8069. {"key": "drpy_js_xb6v","name": "🧲|新版6v","type": 3,"api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/xb6v.js","playerType": "1","searchable": 1},
  8070. {"key": "drpy_js_MP4US","name": "🧲|MP4电影","type": 3,"api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/mp4us.js","playerType": "1","searchable": 1},
  8071. {"key": "csp_HkTv","name": "🧲|TVB云播","type": 3,"api": "csp_HkTv","searchable": 1,"quickSearch": 1,"filterable": 1,"jar": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/jar1/jar0423.jar;md5;f5f25556deaf4016a82345864b16cd81"},
  8072. {"key": "drpy_js_蛋蛋赞","name": "🧲|蛋蛋赞|T3","type": 3,"api": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_libs1/drpy2.min.js","searchable": 1,"quickSearch": 1,"ext": "https://raw.githubusercontent.com/fastbuild7099/fastbuild7099/refs/heads/main/drpy_js1/蛋蛋赞.js"}
  8073. ],
  8074. "parses": [
  8075. {"name": "解析聚合","type": 3,"url": "Demo"},
  8076. {"name": "Json并发","type": 2,"url": "Parallel"},
  8077. {"name": "Json轮询","type": 2,"url": "Sequence"},
  8078. {"name": "Web聚合","type": 3,"url": "Web"},
  8079. {"name": "七智", "type": 0, "url": "https://jx.2s0.cn/player/?url="},
  8080. {"name": "飞捷","type": 1,"url": "https://fjkkk.cn/toujiexisiquanjia.php?url=","ext": {"flag": ["qq","腾讯","letv","乐视","mgtv","芒果","youku","优酷","qiyi","iqiyi","爱奇艺","奇艺"] }},
  8081. {"name": "集象","type": 1,"url": "http://110.42.2.115:880/analysis/json/?uid=2245&my=cdfhirsuwyEGIPU346&url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","搜狐","letv","乐视","mgtv","芒果","CL4K","renrenmi","ltnb","xigua"] }},
  8082. {"name": "急速1","type": 1,"url": "https://www.daina.hk/api/?key=RXpzyrbMFYySN0sNps&url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","搜狐","letv","乐视","mgtv","芒果","CL4K","renrenmi","ltnb","xigua"] }},
  8083. {"name": "急速2","type": 1,"url": "https://jx.parwix.com:4433/player/?url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","mgtv","芒果","letv","乐视","pptv","PPTV","sohu","bilibili","哔哩哔哩","哔哩"] }},
  8084. {"name": "VIP1","type": 1,"url": "http://jifei.mrcy0.com/home/api?type=ys&uid=2752189&key=aefghtACLNRSZ01247&url=","ext": {"flag": ["qq","腾讯","letv","乐视","mgtv","芒果","youku","优酷","qiyi","iqiyi","爱奇艺","奇艺"] }},
  8085. {"name": "急速3","type": 1,"url": "http://api.vip123kan.vip/?url=","ext": {"flag": ["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","奇艺"] }},
  8086. {"name": "急速4","type": 1,"url": "http://yaluan.520say.cn/home/api?type=ys&uid=65588&key=cdeghikortvAFGI078&url=","ext": {"flag": ["CL4K","饭后独播","芒果视频","youku","rx","ltnb","优酷","qiyi","爱奇艺","奇艺","renrenmi","qq","腾讯","腾讯视频","letv","乐视"] }},
  8087. {"name": "急速5","type": 1,"url": "https://jf.96ym.cn/home/api?type=ys&uid=1319830&key=cefgnoprtvxyzBGKP6&url=","ext": {"flag": ["qq","腾讯","letv","乐视","mgtv","芒果","youku","优酷","qiyi","iqiyi","爱奇艺","奇艺"] }},
  8088. {"name": "急速6","type": 1,"url": "http://ck.laobandq.com/3515240842.php?pltfrom=1100&url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","搜狐","letv","乐视","mgtv","芒果","CL4K","renrenmi","ltnb","xigua"] }},
  8089. {"name": "急速7","type": 1,"url": "https://api.exeyz.cc/api/Json.php?url="},
  8090. {"name": "海星解析","type": 1,"url": "http://110.42.2.115:880/analysis/json/?uid=1735&my=hjklmsuwyzDGHIKXY3&url=","ext": {"flag": ["qq","腾讯","letv","乐视","mgtv","芒果","youku","优酷","qiyi","iqiyi","爱奇艺","奇艺"] }},
  8091. {"name": "VIP2","type": 1,"url": "http://110.42.2.115:880/analysis/json/?uid=2233&my=eginqstBCJMNSUX689&url=","ext": {"flag": ["qq","腾讯","letv","乐视","mgtv","芒果","youku","优酷","qiyi","iqiyi","爱奇艺","奇艺"] }},
  8092. {"name": "MuX蓝光解析(辉夜)","type": 1,"url": "https://vvip.funsline.cn/api/?key=8vMzuXb87MWtyJeECE&url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","搜狐","letv","乐视","mgtv","芒果","CL4K","renrenmi","ltnb","xigua","rongxing","rx","xfy","xueren"] }},
  8093. {"name": "猫群专用解析y1","type": 1,"url": "http://chaloli.cn/home/api?type=ys&uid=705072&key=abcdegipstBCFMSVZ6&url=","ext": {"flag": ["youku","qq","iqiyi","qiyi","letv","sohu","letv","tudou","pptv","mgtv","wasu","bilibili","leduo","fq3","fq4","xueren","duoduo","duoduozy","miaoparty","miaoparty2","miaoparty3","renrenmi","优酷","芒果","腾讯","爱奇艺","奇艺","ltnb","rx","CL4K","xfyun","wuduzy"] }},
  8094. {"name": "猫群专用解析y2","type": 1,"url": "http://chaloli.cn/home/api?type=ys&uid=705072&key=abcdegipstBCFMSVZ6&fs=sm&url=","ext": {"flag": ["youku","qq","iqiyi","qiyi","letv","sohu","letv","tudou","pptv","mgtv","wasu","bilibili","leduo","fq3","fq4","xueren","duoduo","duoduozy","miaoparty","miaoparty2","miaoparty3","renrenmi","优酷","芒果","腾讯","爱奇艺","奇艺","ltnb","rx","CL4K","xfyun","wuduzy"] }},
  8095. {"name": "猫群专用解析y3","type": 1,"url": "http://chaloli.cn/home/api?type=ys&uid=705072&key=abcdegipstBCFMSVZ6&fs=hz&url=","ext": {"flag": ["youku","qq","iqiyi","qiyi","letv","sohu","letv","tudou","pptv","mgtv","wasu","bilibili","leduo","fq3","fq4","xueren","duoduo","duoduozy","miaoparty","miaoparty2","miaoparty3","renrenmi","优酷","芒果","腾讯","爱奇艺","奇艺","ltnb","rx","CL4K","xfyun","wuduzy"] }},
  8096. {"name": "猫群专用解析02","type": 1,"url": "https://json.pangujiexi.com/json.php?url=","ext": {"flag": ["youku","优酷","qq","腾讯","qiyi","爱奇艺","奇艺"] }},
  8097. {"name": "猫群专用解析03","type": 1,"url": "https://vip.aiaine.com/api/?key=8FN8gNAySnvJiMllxZ&url=","ext": {"flag": ["Itnb","wuduzy"] }},
  8098. {"name": "猫群专用解析04","type": 1,"url": "http://api.vip123kan.vip/?url=","ext": {"flag": ["youku","优酷","mgtv","芒果","qq","腾讯","qiyi","爱奇艺","qq","xigua","奇艺"] }},
  8099. {"name": "猫群专用解析05","type": 1,"url": "https://a.dxzj88.com/jxrrm/jiami.php?url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","芒果","mgtv","xigua","wuduzy","bilibili","pptv","leduo","Clk4","哔哩","renrenmi","ltnb","rx"] }},
  8100. {"name": "猫群专用解析06","type": 1,"url": "https://sz.dxzj88.com/jxrjrm/jiaomi.php?url=","ext": {"flag": ["qq","腾讯","qiyi","爱奇艺","奇艺","youku","优酷","sohu","芒果","mgtv","xigua","wuduzy","bilibili","pptv","leduo","Clk4","哔哩","renrenmi","ltnb","rx"] }},
  8101. {"name": "急速8","type": 1,"url": "https://api.m3u8.tv:5678/home/api?type=ys&uid=1931000&key=gktuvyzABEORSYZ135&url=","ext": {"flag": ["youku","优酷","qq","腾讯","mgtv","芒果"] }},
  8102. {"name": "群鑫影视","type": 1,"url": "http://cl.yjhan.com:8090/home/api?type=ys&uid=651075&key=aehuDFGIJSVWX24589&url=","ext": {"flag": ["youku","优酷","qiyi","爱奇艺","奇艺","qq","腾讯"] }},
  8103. {"name": "qiyi[官源]","type": 1,"url": "http://39.104.230.177:1122/lxjx/myyk.php?url="},
  8104. {"name": "肥猫解析","type": 1,"url": "http://xn--ihqu10cn4c.xn--z7x900a.live/jx.php?id=2&url=","ext": { "flag": [ "qq", "腾讯", "qiyi", "爱奇艺", "奇艺", "youku", "优酷", "tucheng", "sohu", "搜狐", "letv", "乐视", "mgtv", "芒果", "tnmb", "seven", "yzm", "aliyun", "RJuMao", "bilibili", "1905", "xinvip", "XAL", "qiqi", "XALS", "YuMi-vip" ]}},
  8105. {"name": "云析","type": 0,"url": "https://jx.yparse.com/index.php?url="},
  8106. {"name": "白云","type": 0,"url": "http://jx.hjfggzs.top/api/diy/?key=ceshi&url="},
  8107. {"name": "虾米1","type": 0,"url": "https://jx.xmflv.cc/?url="},
  8108. {"name": "虾米2","type": 0,"url": "https://jx.xmflv.com/?url="},
  8109. {"name": "虾米3","type": 0,"url": "https://jx.xmflv.com/?url=","ext": { "header": { "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57" }} },
  8110. {"name": "技巧1","type": 1,"url": "http://pan.qiaoji8.com/tvbox/gouzi.php?url=","ext": { "flag": [ "qq", "腾讯","腾云驾雾", "腾 讯", "qiyi", "爱奇艺", "爱 奇 艺", "奇艺", "youku", "优酷", "优 酷", "mgtv", "芒果", "芒 果T V", "imgo", "letv", "乐视", "乐 视", "咪 咕 视 频", "pptv", "PPTV", "C N T V", "sohu", "bilibili", "哔哩哔哩", "哔 哩 哔 哩", "哔哩" ]}},
  8111. {"name": "巧技2","type": 1,"url": "https://zy.qiaoji8.com/neibu.php?url="},
  8112. {"name": "巧技3","type":1,"url":"https://zy.qiaoji8.com/gouzi.php?url="},
  8113. {"name": "8090","type": 0,"url": "https://www.8090g.cn/jiexi/?url="},
  8114. {"name": "蓝天白云3","type": 1,"url": "http://qn6z7b.yun.42jx.com/jx/jx.php?url="},
  8115. {"name": "ik9","type": 0,"url": "https://yparse.ik9.cc/index.php?url="},
  8116. {"name": "冰豆","type": 0,"url": "https://bd.jx.cn/?url="},
  8117. {"name": "寶片", "type": 0, "url": "https://jiexi.ibaopian.pro/player/?url="},
  8118. {"name": "七七雲", "type": 0, "url": "https://jx.77flv.cc/?url="},
  8119. {"name": "M1097", "type": 0, "url": "https://im1907.top/?jx="},
  8120. {"name": "道長解析","type": 0,"url": "https://d.tv999.us.kg/parse/虾米?url="},
  8121. {"name": "m3u8TV-1","type": 0,"url": "https://jx.m3u8.tv/jx/jx.php?url="},
  8122. {"name": "m3u8TV-2","type": 0,"url": "https://jx.m3u8.tv/jiexi/?url="},
  8123. {"name": "41快解","type": 1,"url": "http://41c.ch/vip.php?url="},
  8124. {"name": "CK解析","type": 1,"url": "https://ckflv.icu/neibu.php?url=","header": { "User-Agent": "okhttp/4.9.1"}},
  8125. {"name": "777","type": 0,"url": "https://jx.777jiexi.com/player/?url="},
  8126. {"name": "1080","type": 1,"url": "https://jf.lemiaoyun.cn/api/?key=86950663b3198d25885fdf61501a3366&url="},
  8127. {"name": "杰森","type": 0,"url": "https://jx.jsonplayer.com/player/?url="},
  8128. {"name": "阳途","type": 0,"url": "https://jx.yangtu.top/?url="},
  8129. {"name": "嗅探1", "type": 0, "url": "https://jx.jsonplayer.com/player/?url="},
  8130. {"name": "niu","type": 1,"url": "http://122.228.84.103:7777/api/?key=4Dk5tdayvY6NZufEMG&url="},
  8131. {"name": "云仓","url": "http://43.242.202.173:3636/json.php/?key=182750826&url=","flag": [ "LXTX"],"header": { "User-Agent": "Dalvik/2.1.0"},"type": "1"},
  8132. {"name": "KK","type": 1,"url": "http://112.74.124.75:8899/jiexi/api.php?url="}
  8133. ],
  8134. "rules": [
  8135. { "name": "proxy", "hosts": ["stream-link.org"] },
  8136. {
  8137. "name": "量子",
  8138. "hosts": ["vip.lz", "hd.lz"],
  8139. "regex": [
  8140. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6.433333,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  8141. "#EXTINF.*?\\s+.*?1o.*?\\.ts\\s+"
  8142. ]
  8143. },
  8144. {
  8145. "name": "非凡",
  8146. "hosts": ["vip.ffzy", "hd.ffzy"],
  8147. "regex": [
  8148. "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:6.666667,[\\s\\S]*?#EXT-X-DISCONTINUITY",
  8149. "#EXTINF.*?\\s+.*?1o.*?\\.ts\\s+"
  8150. ]
  8151. },
  8152. { "name": "火山", "hosts": ["huoshan.com"], "regex": ["item_id="] },
  8153. { "name": "抖音", "hosts": ["douyin.com"], "regex": ["is_play_url="] }
  8154. ],
  8155. "flags": [
  8156. "youku" , "优酷" , "优 酷" , "优酷视频" , "qq" , "腾讯" ,
  8157. "腾 讯" , "腾讯视频" , "iqiyi" , "qiyi" , "奇艺" , "爱奇艺" ,
  8158. "爱 奇 艺" , "m1905" , "xigua" , "letv" , "leshi" , "乐视" ,
  8159. "乐 视" , "sohu" , "搜狐" , "搜 狐" , "搜狐视频" , "tudou" ,
  8160. "pptv" , "mgtv" , "芒果" , "imgo" , "芒果TV" , "芒 果 T V" ,
  8161. "bilibili", "哔 哩" , "哔 哩 哔 哩"
  8162. ],
  8163. "ads": [
  8164. "ae01.alicdn.com",
  8165. "c.cnzz.com",
  8166. "cdn.bootcss.com",
  8167. "cdnjs.hnfenxun.com",
  8168. "cms.qdwght.com",
  8169. "cnzz.mmstat.com",
  8170. "cnzz.hhttm.top",
  8171. "ehwe.yhdtns.com",
  8172. "f5w.as12df.top",
  8173. "hd.youyhn.com",
  8174. "hm.baidu.com",
  8175. "img.mosflower.cn",
  8176. "img.xunzhuo123.com",
  8177. "iqiyi.hbuioo.com",
  8178. "k.jinxiuzhilv.com",
  8179. "k.wudejia.com",
  8180. "mav.mavuz.com",
  8181. "mc.usihnbcq.cn",
  8182. "mg.g1mm3d.cn",
  8183. "mimg.0c1q0l.cn",
  8184. "mscs.svaeuzh.cn",
  8185. "ppl.xunzhuo123.com",
  8186. "qiu.xixiqiu.com",
  8187. "q11.cnzz.com",
  8188. "s4.cnzz.com",
  8189. "s9.cnzz.com",
  8190. "s13.cnzz.com",
  8191. "s19.cnzz.com",
  8192. "s23.cnzz.com",
  8193. "s96.cnzz.com",
  8194. "sp.chemacid.cn",
  8195. "stj.v1vo.top",
  8196. "thy.dacedsfa.cn",
  8197. "tips.gamevvip.com",
  8198. "tj.tianwenhu.com",
  8199. "tp.vinuxhome.com",
  8200. "um.cavuc.com",
  8201. "vip.ffzyad.com",
  8202. "vivovip.mmszxc.top",
  8203. "wofwk.aoidf3.com",
  8204. "www.92424.cn",
  8205. "www.baihuillq.com",
  8206. "www.googletagmanager.com",
  8207. "www.google-analytics.com",
  8208. "www.jixunkyy.cn",
  8209. "xc.hubeijieshikj.cn",
  8210. "xdn.cqqc3.com",
  8211. "xg.gars57.cn",
  8212. "xg.huataisangao.cn",
  8213. "xg.whsbpw.cn",
  8214. "xomk.jiangjunmh.top",
  8215. "z1.cnzz.com",
  8216. "z2.cnzz.com",
  8217. "z3.cnzz.com",
  8218. "z5.cnzz.com",
  8219. "z6.cnzz.com",
  8220. "z7.cnzz.com",
  8221. "z8.cnzz.com",
  8222. "wan.51img1.com",
  8223. "iqiyi.hbuioo.com",
  8224. "vip.ffzyad.com",
  8225. "https://lf1-cdn-tos.bytegoofy.com/obj/tos-cn-i-dy/455ccf9e8ae744378118e4bd289288dd"
  8226. ]
  8227. }