| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118 |
- {
- "spider": "https://git.acwing.com/fkaf/fk/-/raw/main/jar/xiaosa.jar1.jar",
- "wallpaper": "http://bobohome.ignorelist.com:20247/bing",
- "logo": "http://127.0.0.1:9978/file/TVBox/logo.png",
- "sites": [
- {
- "key": "豆瓣",
- "name": "豆瓣|首页",
- "type": 3,
- "api": "csp_Douban",
- "searchable": 0
- },
- {
- "key": "预告",
- "name": "新片|预告",
- "type": 3,
- "api": "csp_YGP",
- "searchable": 0
- },
- {
- "key": "本地",
- "name": "本地|视频",
- "type": 3,
- "api": "csp_LocalFile"
- },
- {
- "key": "配置中心",
- "name": "配置|中心",
- "type": 3,
- "api": "csp_Config",
- "searchable": 0,
- "changeable": 0,
- "indexs": 0,
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "热播影视",
- "name": "热播|APP",
- "type": 3,
- "api": "csp_AppRJ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": {
- "url": "http://v.rbotv.cn"
- }
- },
- {
- "key": "天天影视",
- "name": "天天|APP",
- "type": 3,
- "api": "csp_AppRJ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": {
- "url": "http://tt.ysdqjs.cn"
- }
- },
- {
- "key": "浪酷影视",
- "name": "浪酷|APP",
- "type": 3,
- "api": "csp_AppRJ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 0,
- "ext": {
- "url": "http://v.lkuys.cn"
- }
- },
- {
- "key": "星河",
- "name": "星河|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppSy",
- "ext": {
- "url": "http://192.140.161.171:2563",
- "key1": "aassddwwxxllsx1x",
- "key2": "aassddwwxxllsx1x",
- "key3": "aassddwwxxllsx1x"
- }
- },
- {
- "key": "追忆",
- "name": "追忆|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppSy",
- "ext": {
- "url": "http://110.42.7.130:1866",
- "key1": "aassddwwxxllsx1x",
- "key2": "1e765e9b09b4dbba",
- "key3": "1e765e9b09b4dbba"
- }
- },
- {
- "key": "乐达",
- "name": "乐达|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://ledayy.com",
- "site": "",
- "dataKey": "hjjp68c2okw12345",
- "dataIv": "hjjp68c2okw12345",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "灵虎",
- "name": "灵虎|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "https://bind.315999.xyz/89.txt",
- "dataKey": "#getapp@TMD@2025",
- "dataIv": "#getapp@TMD@2025",
- "deviceId": "",
- "version": "120"
- }
- },
- {
- "key": "旗星",
- "name": "旗星|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "http://ys.qist.top",
- "site": "",
- "dataKey": "2SWSPFxugBLPPOKo",
- "dataIv": "2SWSPFxugBLPPOKo",
- "deviceId": "",
- "version": "120"
- }
- },
- {
- "key": "云云",
- "name": "云云|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet2",
- "ext": {
- "url": "",
- "site": "https://staraugust123456.oss-cn-hangzhou.aliyuncs.com/1.txt",
- "dataKey": "staraugust123456",
- "dataIv": "staraugust123456",
- "deviceId": "",
- "version": "120"
- }
- },
- {
- "key": "光影",
- "name": "光影|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://www.guangyingmi.com",
- "dataKey": "230fnsodfsdhfon2",
- "dataIv": "230fnsodfsdhfon2",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "火猫",
- "name": "火猫丨APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "https://cunchu8.obs.cn-north-4.myhuaweicloud.com/03.txt",
- "dataKey": "J6AIORKJ3PQOJKM9",
- "dataIv": "J6AIORKJ3PQOJKM9",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "若雪",
- "name": "若雪丨APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet2",
- "ext": {
- "url": "https://appcms.rx4k.top",
- "site": "",
- "dataKey": "ZX10ysTYZWtIJCTU",
- "dataIv": "ZX10ysTYZWtIJCTU",
- "deviceId": "",
- "version": "120"
- }
- },
- {
- "key": "丫丫",
- "name": "丫丫|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "http://tv.yy-fun.cc",
- "dataKey": "qkxnwkfjwpcnwycl",
- "dataIv": "qkxnwkfjwpcnwycl",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "爱看",
- "name": "爱看丨APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "http://154.37.220.65",
- "dataKey": "uI1TkPJC8B46AyN3",
- "dataIv": "uI1TkPJC8B46AyN3",
- "deviceId": "2112fc5eac600314ba95c4d65da9286b3",
- "version": "120"
- }
- },
- {
- "key": "蓝光",
- "name": "蓝光|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "http://122.228.193.2:9654",
- "dataKey": "ca94b06ca3c7d80e",
- "dataIv": "ca94b06ca3c7d80e",
- "deviceId": "",
- "version": "119"
- }
- },
- {
- "key": "豆丁",
- "name": "豆丁|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "https://vip.123pan.cn/1848451100/zl/xfdd.txt",
- "dataKey": "xasdasdqwertyuio",
- "dataIv": "xasdasdqwertyuio",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "蓝鹰",
- "name": "蓝鹰|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet2",
- "ext": {
- "url": "",
- "site": "https://lanyinghz.oss-cn-hangzhou.aliyuncs.com/lanyingxmy.txt",
- "dataKey": "ca94b06ca359d80e",
- "dataIv": "ca94b06ca359d80e",
- "deviceId": "",
- "version": "120"
- }
- },
- {
- "key": "仓鼠",
- "name": "仓鼠|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet2",
- "ext": {
- "url": "",
- "site": "https://ceshi307386.oss-cn-beijing.aliyuncs.com/csurl.txt",
- "dataKey": "Z98KXaLtO2wC1Pte",
- "dataIv": "Z98KXaLtO2wC1Pte",
- "deviceId": "",
- "version": "120"
- }
- },
- {
- "key": "鲸鱼",
- "name": "鲸鱼|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet2",
- "ext": {
- "url": "",
- "site": "https://jingyu4k-1312635929.cos.ap-nanjing.myqcloud.com/1.json",
- "dataKey": "AAdgrdghjfgswerA",
- "dataIv": "AAdgrdghjfgswerA",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "米诺",
- "name": "米诺|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "http://www.milkidc.cn",
- "dataKey": "20c79c979da8db0f",
- "dataIv": "20c79c979da8db0f",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "云速",
- "name": "云速|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "http://59.153.167.137:7788/1.json",
- "dataKey": "4d83b87c4c5ea111",
- "dataIv": "4d83b87c4c5ea111",
- "deviceId": "",
- "version": "105"
- }
- },
- {
- "key": "瓜萌",
- "name": "瓜萌|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "https://www.guahd.com/1.txt",
- "dataKey": "f2A7D4B9E8C16531",
- "dataIv": "f2A7D4B9E8C16531",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "晴天",
- "name": "晴天|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://qjappcms.sun4k.top",
- "dataKey": "sBxqXVF5pAHbGzrH",
- "dataIv": "sBxqXVF5pAHbGzrH",
- "deviceId": "",
- "version": "119"
- }
- },
- {
- "key": "橘子",
- "name": "橘子|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "http://t.bffree.cn/1.txt",
- "dataKey": "2015692015692015",
- "dataIv": "2015692015692015",
- "deviceId": "",
- "version": "300"
- }
- },
- {
- "key": "萝卜",
- "name": "萝卜|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://apiapplbys.lbys.app:5678",
- "dataKey": "apiapplbyskey168",
- "dataIv": "apiapplbyskey168",
- "deviceId": "",
- "version": "107"
- }
- },
- {
- "key": "米兔",
- "name": "米兔|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://new.tkbot.fun",
- "dataKey": "d032c12876bc6848",
- "dataIv": "d032c12876bc6848",
- "deviceId": "",
- "version": "200"
- }
- },
- {
- "key": "小红",
- "name": "小红|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://www.xiaohys.com",
- "dataKey": "ENonBHeVBoYZhVUV",
- "dataIv": "ENonBHeVBoYZhVUV",
- "deviceId": "298e5fe29c74b35aabb9836ee2f6f449f",
- "version": "166"
- }
- },
- {
- "key": "白蛇",
- "name": "白蛇|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "http://tengxunyunaliyun.oss-cn-shanghai.aliyuncs.com/tengxunyun.txt",
- "dataKey": "n3l2tx5jdkp9s2c8",
- "dataIv": "n3l2tx5jdkp9s2c8",
- "deviceId": "",
- "version": "361"
- }
- },
- {
- "key": "若惜",
- "name": "若惜|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "http://110.40.59.188:9527",
- "dataKey": "ebad3f1a58b13933",
- "dataIv": "ebad3f1a58b13933",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "外剧",
- "name": "外剧|APP",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://guowaiju.com",
- "dataKey": "7xv16h7qgkrs9b1p",
- "dataIv": "7xv16h7qgkrs9b1p",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "移动",
- "name": "移动|APP",
- "type": 3,
- "api": "csp_YD",
- "searchable": 1,
- "quickSearch": 1,
- "style": {
- "type": "list"
- }
- },
- {
- "key": "哔哩视频",
- "name": "哔哩|视频",
- "type": 3,
- "api": "csp_BiliYS",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0,
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/BLSP.json",
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt"
- }
- },
- {
- "key": "腾讯视频",
- "name": "腾讯|视频",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/TXSP.js"
- },
- {
- "key": "优酷视频",
- "name": "优酷|视频",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/YKSP.js"
- },
- {
- "key": "芒果视频",
- "name": "芒果|视频",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/MGSP.js"
- },
- {
- "key": "爱奇艺",
- "name": "爱奇艺|视频",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/AQY.js"
- },
- {
- "key": "三六零",
- "name": "三六零|视频",
- "type": 3,
- "api": "csp_SP360"
- },
- {
- "key": "小斑快映",
- "name": "快映|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/xbky.json"
- },
- {
- "key": "玩偶哥哥",
- "name": "玩偶|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/wogg.json"
- },
- {
- "key": "木偶",
- "name": "木偶|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/mogg.json"
- },
- {
- "key": "蜡笔",
- "name": "蜡笔|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/lb.json"
- },
- {
- "key": "至臻",
- "name": "至臻|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/zz.json"
- },
- {
- "key": "多多",
- "name": "多多|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/yyds.json"
- },
- {
- "key": "欧哥",
- "name": "欧哥|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/og.json"
- },
- {
- "key": "二小",
- "name": "二小|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/ex.json"
- },
- {
- "key": "虎斑",
- "name": "虎斑|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/hb.json"
- },
- {
- "key": "闪电",
- "name": "闪电|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/sd.json"
- },
- {
- "key": "百家",
- "name": "百家|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShare",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/bj.json"
- },
- {
- "key": "团长",
- "name": "团长|4K弹幕",
- "type": 3,
- "api": "csp_PanWebTz",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1
- },
- {
- "key": "雷鲸",
- "name": "雷鲸|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShareCloudLJ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/lj.json"
- },
- {
- "key": "海绵",
- "name": "海绵|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShareCloudHM",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/hm.json"
- },
- {
- "key": "夸父",
- "name": "夸父|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShareCloudKF",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/kf.json"
- },
- {
- "key": "123",
- "name": "123|4K弹幕",
- "type": 3,
- "api": "csp_PanWebShareCloud123",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/123.json"
- },
- {
- "key": "趣盘",
- "name": "趣盘|4K弹幕",
- "type": 3,
- "api": "csp_PanWebQu",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": {
- "url": "https://www.qupanshe.com"
- }
- },
- {
- "key": "盘库",
- "name": "盘库|4K弹幕",
- "type": 3,
- "api": "csp_PanWebKuBa",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "changeable": 1,
- "ext": {
- "url": "https://panku8.com,https://yipanso.com"
- }
- },
- {
- "key": "双星",
- "name": "双星|4K弹幕",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/SX.js",
- "style": {
- "type": "list"
- }
- },
- {
- "key": "校长",
- "name": "校长|4K弹幕",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/XZ.js",
- "style": {
- "type": "list"
- }
- },
- {
- "key": "天堂",
- "name": "天堂|4K弹幕",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/TT.js",
- "style": {
- "type": "list"
- }
- },
- {
- "key": "人人电影网",
- "name": "人人|4K弹幕",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/RRDYW.js",
- "style": {
- "type": "list"
- }
- },
- {
- "key": "糖果",
- "name": "糖果|搜索",
- "type": 3,
- "api": "csp_TGSou",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "音海",
- "name": "音海|搜索",
- "type": 3,
- "api": "csp_YinHai",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "盘搜",
- "name": "盘搜|搜索",
- "type": 3,
- "api": "csp_PanSou",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "百酷",
- "name": "百酷|搜索",
- "type": 3,
- "api": "csp_Baiku"
- },
- {
- "key": "米搜",
- "name": "米搜|搜索",
- "type": 3,
- "api": "csp_MiSou"
- },
- {
- "key": "短剧大全",
- "name": "短剧|大全",
- "type": 3,
- "api": "csp_DuanjuDQ"
- },
- {
- "key": "短剧合集",
- "name": "短剧|合集",
- "type": 3,
- "api": "csp_DuanjuHJ"
- },
- {
- "key": "全盘",
- "name": "全盘|搜索",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/js/QP.js",
- "style": {
- "type": "list"
- }
- },
- {
- "key": "星芽短剧",
- "name": "星芽|短剧",
- "type": 3,
- "api": "csp_AppXY",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0
- },
- {
- "key": "甜圈短剧",
- "name": "甜圈|短剧",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/TQDJ.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "偷乐短剧",
- "name": "偷乐|短剧",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/TLDJ.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "爱看短剧",
- "name": "爱看|短剧",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/AKDJ.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "锦鲤短剧",
- "name": "锦鲤|短剧",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/JLDJ.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "剧王短剧",
- "name": "剧王|短剧",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/JWDJ.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "短剧屋",
- "name": "短剧屋|短剧",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/DJWu.json"
- },
- {
- "key": "七七",
- "name": "七七|影视",
- "type": 1,
- "api": "http://6.qqqtv.top/api.php/provide/vod/",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "categories": [
- "推荐",
- "电影",
- "电视剧",
- "综艺",
- "动漫"
- ]
- },
- {
- "key": "金牌影视",
- "name": "金牌|影视",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/JPYS.py",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "site": "https://m.hkybqufgh.com,https://m.sizhengxt.com,https://m.9zhoukj.com,https://m.sizhengxt.com,https://m.jiabaide.cn"
- }
- },
- {
- "key": "猎手影视",
- "name": "猎手|影视",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/movie/py/LSYS.py",
- "searchable": 1,
- "changeable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "厂长影视",
- "name": "厂长|影视",
- "type": 3,
- "playerType": "2",
- "api": "csp_Czsapp",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.czzymovie.com/"
- },
- {
- "key": "绝对影视",
- "name": "绝对|影视",
- "type": 3,
- "api": "csp_FourK",
- "ext": "https://www.4kvm.tv"
- },
- {
- "key": "云播影视",
- "name": "云播|影视",
- "type": 3,
- "api": "csp_Tvyb",
- "ext": "http://www.viptv01.com"
- },
- {
- "key": "奇优影视",
- "name": "奇优|影视",
- "type": 3,
- "api": "csp_Qiyou"
- },
- {
- "key": "苹果影视",
- "name": "苹果|影视",
- "type": 3,
- "api": "csp_LiteApple",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "全网影视",
- "name": "全看|影视",
- "type": 3,
- "api": "csp_Quanwk",
- "ext": "https://www.91qkw.com"
- },
- {
- "key": "饺子影视",
- "name": "饺子|影视",
- "type": 3,
- "api": "csp_Jiaozi"
- },
- {
- "key": "鸭梨影视",
- "name": "鸭梨|影视",
- "type": 3,
- "api": "csp_KmeiJu"
- },
- {
- "key": "白白影视",
- "name": "白白|影视",
- "type": 3,
- "api": "csp_SuBaiBai",
- "ext": "https://www.subaibai.com"
- },
- {
- "key": "低端影视",
- "name": "低端|影视",
- "type": 3,
- "api": "csp_Ddys",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "瓜子影视",
- "name": "瓜子|影视",
- "type": 3,
- "api": "csp_Gz360",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "采集之王",
- "name": "采集|合集",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/CJZW.js?type=url¶ms=https://gitee.com/PizazzXS/another-d/raw/master/movie/json/CJJT.json$1$1"
- },
- {
- "key": "爱看机器人",
- "name": "爱看|影视",
- "type": 3,
- "api": "csp_Ikanbot",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "面包影视",
- "name": "面包|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/MBYS.json"
- },
- {
- "key": "永乐影视",
- "name": "永乐|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/YLYS.json"
- },
- {
- "key": "雪糕影视",
- "name": "雪糕|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/XGYS.json"
- },
- {
- "key": "骚火影视",
- "name": "骚火|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/SHYS.json"
- },
- {
- "key": "七点影视",
- "name": "七点|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/QDYS.json"
- },
- {
- "key": "三九影视",
- "name": "三九|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/SJYS.json"
- },
- {
- "key": "三四影视",
- "name": "三四|影视",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/SSYS.json"
- },
- {
- "key": "农民影视",
- "name": "农民|影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/NMYS.json"
- },
- {
- "key": "盒子影视",
- "name": "盒子|影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/HZYS.json"
- },
- {
- "key": "电影牛",
- "name": "影牛|影视",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/DYN.json"
- },
- {
- "key": "剧圈圈",
- "name": "剧圈|影视",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/js/JQQ.js"
- },
- {
- "key": "1905",
- "name": "1905|影视",
- "type": 3,
- "api": "csp_Web1905",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0
- },
- {
- "key": "哆啦新番社",
- "name": "哆啦|新番社",
- "type": 3,
- "api": "csp_XBPQ",
- "style": {
- "type": "list"
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/json/DLXFS.json"
- },
- {
- "key": "56动漫",
- "name": "56|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/56DM.js"
- },
- {
- "key": "NT动漫",
- "name": "NT|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/NTDM.js"
- },
- {
- "key": "Anime1",
- "name": "A1|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/Anime1.js"
- },
- {
- "key": "曼波动漫",
- "name": "曼波|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://app.omofun1.top",
- "dataKey": "66dc309cbeeca454",
- "dataIv": "66dc309cbeeca454",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "稀饭动漫",
- "name": "稀饭|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "https://xfapp-1305390065.cos.ap-guangzhou.myqcloud.com/getapp.txt",
- "dataKey": "1yZ2Spn9krnzVKoC",
- "dataIv": "1yZ2Spn9krnzVKoC",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "咕咕动漫",
- "name": "咕咕|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://www.gugu3.com",
- "dataKey": "nKfZ8KX6JTNWRzTD",
- "dataIv": "nKfZ8KX6JTNWRzTD",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "多多动漫",
- "name": "多多|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "",
- "site": "https://app.cf4k.xyz/1.txt",
- "dataKey": "qqqqqqqqqqqqqqqq",
- "dataIv": "qqqqqqqqqqqqqqqq",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "次元动漫",
- "name": "次元|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://jjjj.nilinili.org",
- "dataKey": "672263e98f232a05",
- "dataIv": "672263e98f232a05",
- "deviceId": "",
- "version": "170"
- }
- },
- {
- "key": "派对动漫",
- "name": "派对|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://qjappcms.acg.party",
- "dataKey": "AmtMYFCJDPoTlK7z",
- "dataIv": "AmtMYFCJDPoTlK7z",
- "deviceId": "",
- "version": ""
- }
- },
- {
- "key": "黑猫动漫",
- "name": "黑猫|动漫",
- "type": 3,
- "quickSearch": 1,
- "api": "csp_AppGet",
- "ext": {
- "url": "https://dm.xxdm123.top:9991",
- "dataKey": "0fe3b5781782c621",
- "dataIv": "0fe3b5781782c621",
- "deviceId": "",
- "version": "203"
- }
- },
- {
- "key": "樱花动漫",
- "name": "樱花|动漫",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/json/YHDM.json"
- },
- {
- "key": "巴士动漫",
- "name": "巴士|动漫",
- "type": 3,
- "api": "csp_XYQHiker",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/json/bsdm.json"
- },
- {
- "key": "好看动漫",
- "name": "好看|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/HKDM.js"
- },
- {
- "key": "奇米动漫",
- "name": "奇米|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/QMDM.js"
- },
- {
- "key": "花子动漫",
- "name": "花子|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/HZDM.js"
- },
- {
- "key": "动画片",
- "name": "动画片|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/DHPDQ.js"
- },
- {
- "key": "路漫漫",
- "name": "路漫漫|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/LMM.js"
- },
- {
- "key": "动漫岛",
- "name": "动漫岛|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/DMD.js"
- },
- {
- "key": "去看吧",
- "name": "去看吧|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/QKB.js"
- },
- {
- "key": "爱弹幕",
- "name": "爱弹幕|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/ADM.js"
- },
- {
- "key": "异世界",
- "name": "异世界|动漫",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/js/drpy2.min.js",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/anime/js/YSJ.js"
- },
- {
- "key": "荐片",
- "name": "荐片|磁力",
- "api": "csp_Jianpian",
- "type": 3
- },
- {
- "key": "修罗影视",
- "name": "修罗|磁力",
- "type": 3,
- "api": "csp_XBPQ",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/XLYS.json"
- },
- {
- "key": "七味",
- "name": "七味|磁力",
- "type": 3,
- "api": "csp_QnMp4",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": {
- "url": "https://www.pkmp4.xyz,https://www.qwnull.com,https://www.qwmkv.com,https://www.qwfilm.com,https://www.qnmp4.com,https://www.qnnull.com,https://www.qnhot.com"
- }
- },
- {
- "key": "80S",
- "name": "80S|磁力",
- "type": 3,
- "api": "csp_BLSGod",
- "playerType": 1,
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "New6v",
- "name": "New6V|磁力",
- "type": 3,
- "api": "csp_New6v",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://www.xb6v.com"
- },
- {
- "key": "美剧迷",
- "name": "美剧迷|磁力",
- "type": 3,
- "api": "csp_MeijuMi",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "迅雷吧",
- "name": "迅雷吧|磁力",
- "type": 3,
- "api": "csp_Xunlei8",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "电影港",
- "name": "电影港|磁力",
- "type": 3,
- "api": "csp_XYQHiker",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/magnet/json/DYG.json"
- },
- {
- "key": "狐狸君",
- "name": "狐狸君|磁力",
- "type": 3,
- "api": "csp_XBPQ",
- "changeable": 1,
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1,
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/magnet/json/HLJ.json"
- },
- {
- "key": "Mp4电影",
- "name": "Mp4电影|磁力",
- "type": 3,
- "api": "csp_Mp4Mov",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "美剧天堂",
- "name": "美剧天堂|磁力",
- "type": 3,
- "api": "csp_MeijuTT",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "电影天堂",
- "name": "电影天堂|磁力",
- "type": 3,
- "api": "csp_DyGod",
- "searchable": 1,
- "quickSearch": 1,
- "filterable": 1
- },
- {
- "key": "夸克云盘",
- "name": "夸克|云盘",
- "type": 3,
- "api": "csp_PanQuark",
- "searchable": 0,
- "filterable": 0,
- "changeable": 0,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/quarkShare.json"
- },
- {
- "key": "UC",
- "name": "UC|云盘",
- "type": 3,
- "api": "csp_PanUc",
- "searchable": 0,
- "filterable": 0,
- "changeable": 0,
- "style": {
- "type": "list",
- "ratio": 1.433
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/ucShare.json"
- },
- {
- "key": "百度云盘",
- "name": "百度|云盘",
- "type": 3,
- "api": "csp_PanBaiDu",
- "searchable": 0,
- "filterable": 0,
- "changeable": 0,
- "style": {
- "type": "list",
- "ratio": 1.433
- }
- },
- {
- "key": "AList",
- "name": "AList|合集",
- "type": 3,
- "api": "csp_Alist",
- "searchable": 1,
- "filterable": 1,
- "changeable": 0,
- "style": {
- "type": "list"
- },
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/cloud/json/alist.json"
- },
- {
- "key": "88看球",
- "name": "88|看球",
- "type": 3,
- "api": "csp_Kanqiu",
- "gridview": 3,
- "style": {
- "type": "list"
- }
- },
- {
- "key": "网络直播",
- "name": "网络|直播",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/webcast/py/WLZB.py"
- },
- {
- "key": "哔哩直播",
- "name": "哔哩|直播",
- "type": 3,
- "api": "https://gitee.com/PizazzXS/another-d/raw/master/webcast/py/BLZB.py"
- },
- {
- "key": "哔哩合集",
- "name": "哔哩|合集",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 1,
- "quickSearch": 0,
- "filterable": 0,
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 1.433
- },
- "ext": {
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/movie/json/BLHJ.json",
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt"
- }
- },
- {
- "key": "哔哩哔哩戏曲",
- "name": "哔哩|音乐",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLYCH.json"
- },
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "哔哩哔哩听书",
- "name": "哔哩|听书",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLTS.json"
- },
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "哔哩哔哩相声",
- "name": "哔哩|相声",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLXS.json"
- },
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "哔哩哔哩小品",
- "name": "哔哩|小品",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLXP.json"
- },
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "哔哩哔哩戏曲",
- "name": "哔哩|戏曲",
- "type": 3,
- "api": "csp_Bili",
- "searchable": 0,
- "quickSearch": 0,
- "filterable": 0,
- "ext": {
- "cookie": "http://127.0.0.1:9978/file/TVBox/bili_cookie.txt",
- "json": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/BLXQ.json"
- },
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "急救教学",
- "name": "急救|教学",
- "type": 3,
- "api": "csp_FirstAid",
- "searchable": 0,
- "quickSearch": 0,
- "changeable": 0,
- "style": {
- "type": "rect",
- "ratio": 3.8
- },
- "gridview": "0-0-4.1"
- },
- {
- "key": "养生堂",
- "name": "养生|知识",
- "type": 3,
- "api": "csp_XBPQ",
- "ext": "https://gitee.com/PizazzXS/another-d/raw/master/other/json/YST.json",
- "style": {
- "type": "rect",
- "ratio": 1.597
- }
- },
- {
- "key": "push_agent",
- "name": "手机|推送",
- "type": 3,
- "api": "csp_Push",
- "searchable": 0,
- "filterable": 0,
- "changeable": 0
- }
- ],
- "parses": [
- {
- "name": "无上",
- "type": "1",
- "url": "https://mfjx.iwsyy.xyz/?url=",
- "ext": {
- "flag": [
- "qq",
- "腾讯",
- "qiyi",
- "爱奇艺",
- "奇艺",
- "youku",
- "优酷",
- "sohu",
- "搜狐",
- "letv",
- "乐视",
- "mgtv",
- "芒果",
- "tnmb",
- "seven",
- "bilibili",
- "1905"
- ],
- "header": {
- "User-Agent": "okhttp/4.9.1"
- }
- }
- },
- {
- "name": "巧计",
- "type": 1,
- "url": "https://zy.qiaoji8.com/xiafan.php?url=",
- "ext": {
- "flag": [
- "QD4K",
- "iyf",
- "duanju",
- "gzcj",
- "GTV",
- "GZYS",
- "weggz",
- "Ace"
- ],
- "header": {
- "User-Agent": "okhttp/4.9.1"
- }
- }
- },
- {
- "name": "咸鱼",
- "type": 0,
- "url": "https://jx.xymp4.cc/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.3124.68"
- }
- }
- },
- {
- "name": "虾米",
- "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"
- }
- }
- },
- {
- "name": "淘片",
- "type": 0,
- "url": "https://jx.yparse.com/index.php?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- },
- {
- "name": "冰豆",
- "type": 0,
- "url": "https://bd.jx.cn/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- },
- {
- "name": "七七",
- "type": 0,
- "url": "https://jx.77flv.cc/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- },
- {
- "name": "盘古",
- "type": 0,
- "url": "https://www.playm3u8.cn/jiexi.php?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- },
- {
- "name": "夜幕",
- "type": 0,
- "url": "https://yemu.xyz/?url=",
- "ext": {
- "header": {
- "user-agent": "Mozilla/5.0 (Linux; Android 13; V2049A Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/116.0.0.0 Mobile Safari/537.36"
- }
- }
- }
- ],
- "rules": [
- {
- "name": "农民",
- "hosts": [
- "toutiaovod.com"
- ],
- "regex": [
- "video/tos/cn"
- ]
- },
- {
- "name": "火山",
- "hosts": [
- "huoshan.com"
- ],
- "regex": [
- "item_id="
- ]
- },
- {
- "name": "抖音",
- "hosts": [
- "douyin.com"
- ],
- "regex": [
- "is_play_url="
- ]
- },
- {
- "name": "饭团点击",
- "hosts": [
- "dadagui",
- "freeok",
- "dadagui"
- ],
- "script": [
- "document.querySelector(\"#playleft iframe\").contentWindow.document.querySelector(\"#start\").click();"
- ]
- },
- {
- "name": "毛驴点击",
- "hosts": [
- "www.maolvys.com"
- ],
- "script": [
- "document.getElementsByClassName('swal-button swal-button--confirm')[0].click()"
- ]
- },
- {
- "name": "ofiii",
- "hosts": [
- "www.ofiii.com"
- ],
- "script": [
- "const play=document.getElementsByClassName('play_icon')[0],event=new MouseEvent('click',{bubbles:!0,cancelable:!0,view:window,screenX:100,screenY:100,clientX:50,clientY:50,button:0,shiftKey:!1,ctrlKey:!1,altKey:!1,metaKey:!1,modifierState:0});play.dispatchEvent(event);"
- ]
- }
- ],
- "doh": [
- {
- "name": "Google",
- "url": "https://dns.google/dns-query",
- "ips": [
- "8.8.4.4",
- "8.8.8.8"
- ]
- },
- {
- "name": "Cloudflare",
- "url": "https://cloudflare-dns.com/dns-query",
- "ips": [
- "1.1.1.1",
- "1.0.0.1",
- "2606:4700:4700::1111",
- "2606:4700:4700::1001"
- ]
- },
- {
- "name": "AdGuard",
- "url": "https://dns.adguard.com/dns-query",
- "ips": [
- "94.140.14.140",
- "94.140.14.141"
- ]
- },
- {
- "name": "DNSWatch",
- "url": "https://resolver2.dns.watch/dns-query",
- "ips": [
- "84.200.69.80",
- "84.200.70.40"
- ]
- },
- {
- "name": "Quad9",
- "url": "https://dns.quad9.net/dns-quer",
- "ips": [
- "9.9.9.9",
- "149.112.112.112"
- ]
- }
- ],
- "lives": [],
- "hosts": [
- "cache.ott.*.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
- "cache.ott.ystenlive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
- "cache.ott.bestlive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
- "cache.ott.wasulive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
- "cache.ott.fifalive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com",
- "cache.ott.hnbblive.itv.cmvideo.cn=base-v4-free-mghy.e.cdn.chinamobile.com"
- ],
- "flags": [
- "youku",
- "优酷",
- "优 酷",
- "优酷视频",
- "qq",
- "腾讯",
- "腾 讯",
- "腾讯视频",
- "iqiyi",
- "qiyi",
- "奇艺",
- "爱奇艺",
- "爱 奇 艺",
- "m1905",
- "xigua",
- "letv",
- "leshi",
- "乐视",
- "乐 视",
- "sohu",
- "搜狐",
- "搜 狐",
- "搜狐视频",
- "tudou",
- "pptv",
- "mgtv",
- "芒果",
- "imgo",
- "芒果TV",
- "芒 果 T V",
- "bilibili",
- "哔 哩",
- "哔 哩 哔 哩"
- ],
- "ijk": [
- {
- "group": "软解码",
- "options": [
- {
- "category": 4,
- "name": "opensles",
- "value": "0"
- },
- {
- "category": 4,
- "name": "overlay-format",
- "value": "842225234"
- },
- {
- "category": 4,
- "name": "framedrop",
- "value": "1"
- },
- {
- "category": 4,
- "name": "soundtouch",
- "value": "1"
- },
- {
- "category": 4,
- "name": "start-on-prepared",
- "value": "1"
- },
- {
- "category": 1,
- "name": "http-detect-range-support",
- "value": "0"
- },
- {
- "category": 1,
- "name": "fflags",
- "value": "fastseek"
- },
- {
- "category": 2,
- "name": "skip_loop_filter",
- "value": "48"
- },
- {
- "category": 4,
- "name": "reconnect",
- "value": "1"
- },
- {
- "category": 4,
- "name": "enable-accurate-seek",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-auto-rotate",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-handle-resolution-change",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec-hevc",
- "value": "0"
- },
- {
- "category": 1,
- "name": "dns_cache_timeout",
- "value": "600000000"
- }
- ]
- },
- {
- "group": "硬解码",
- "options": [
- {
- "category": 4,
- "name": "opensles",
- "value": "0"
- },
- {
- "category": 4,
- "name": "overlay-format",
- "value": "842225234"
- },
- {
- "category": 4,
- "name": "framedrop",
- "value": "1"
- },
- {
- "category": 4,
- "name": "soundtouch",
- "value": "1"
- },
- {
- "category": 4,
- "name": "start-on-prepared",
- "value": "1"
- },
- {
- "category": 1,
- "name": "http-detect-range-support",
- "value": "0"
- },
- {
- "category": 1,
- "name": "fflags",
- "value": "fastseek"
- },
- {
- "category": 2,
- "name": "skip_loop_filter",
- "value": "48"
- },
- {
- "category": 4,
- "name": "reconnect",
- "value": "1"
- },
- {
- "category": 4,
- "name": "enable-accurate-seek",
- "value": "0"
- },
- {
- "category": 4,
- "name": "mediacodec",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-auto-rotate",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-handle-resolution-change",
- "value": "1"
- },
- {
- "category": 4,
- "name": "mediacodec-hevc",
- "value": "1"
- },
- {
- "category": 1,
- "name": "dns_cache_timeout",
- "value": "600000000"
- }
- ]
- }
- ],
- "ads": [
- "static-mozai.4gtv.tv"
- ]
- }
|