123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306 |
- [
- {
- "articleStyle": 2,
- "customOrder": -11240,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.myui-panel-box clearfix@ul@li",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "class.myui-vodlist__thumb lazyload@data-original",
- "ruleLink": "class.myui-vodlist__thumb lazyload@href@js:\"https://www.ffys.vip\"+result",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.pic-text text-right@text",
- "ruleTitle": "class.myui-vodlist__thumb lazyload@title",
- "sortUrl": "全部::http://www.ffys.vip/vod/type/id/qitaleixing.html\n综艺::http://www.ffys.vip/index.php/vod/show/id/3.html\n动漫::https://www.ffys.vip/index.php/vod/show/id/4.html\n音乐::http://www.ffys.vip/index.php/vod/show/id/49.html\n搞笑::http://www.ffys.vip/index.php/vod/show/id/51.html\n预告::https://www.ffys.vip/index.php/vod/show/id/50.html\n解说::http://www.ffys.vip/index.php/vod/show/id/28.html\n记录::http://www.ffys.vip/index.php/vod/show/id/48.html\n明星::http://www.ffys.vip/actor/type/id/mingxing.html",
- "sourceGroup": "",
- "sourceIcon": "http://www.ffys.vip/favicon.ico",
- "sourceName": "飞凤影视(修复版)",
- "sourceUrl": "http://www.ffys.vip/vod/type/id/qitaleixing.html"
- },
- {
- "articleStyle": 0,
- "customOrder": -11238,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleDescription": "",
- "ruleLink": "//@href",
- "ruleNextPage": "",
- "ruleTitle": "//text()",
- "sortUrl": "HTML::https://www.w3school.com.cn/html/index.asp\nHTML5::https://www.w3school.com.cn/html5/index.asp\nXHTML::https://www.w3school.com.cn/xhtml/index.asp\nCSS::https://www.w3school.com.cn/css/index.asp\nCSS3::https://www.w3school.com.cn/css3/index.asp\nTCP/IP::https://www.w3school.com.cn/tcpip/index.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\nHTML",
- "sourceUrl": "https://www.w3school.com.cn/html/index.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": -10719,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "tag.item",
- "ruleContent": "class.title.0@all&&class.cnbeta-article-body@all## 条评论.*?</strong></span></a></span>| <div class=\"article-share-code\">[\\s\\S]+| <div class=\"article-content\" id=\"artibody\"> ##<hr>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.guid@text",
- "rulePubDate": "tag.pubDate@text",
- "ruleTitle": "tag.title@text",
- "sourceGroup": "🛰 科技",
- "sourceIcon": "https://m.cnbeta.com/favicon.ico",
- "sourceName": "cnBeta",
- "sourceUrl": "https://www.cnbeta.com/backend.php",
- "style": "img { height: auto;width:100%; }"
- },
- {
- "articleStyle": 0,
- "customOrder": -10251,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.content@class.placeholder",
- "ruleContent": "tag.main@html&&class.all-comment@html##我要纠错@js:result.replace(/data-original/g,\"src\")",
- "ruleImage": "tag.img@data-original",
- "ruleLink": "tag.a@href##$##,{\"webView\":true}",
- "rulePubDate": "class.post-time@text",
- "ruleTitle": "class.plc-title@text",
- "sortUrl": "最新::https://m.ithome.com/newsm\n精读::https://m.ithome.com/jingdum\n原创::https://m.ithome.com/originalm\n评测::https://m.ithome.com/labsm\n直播::https://m.ithome.com/livem\n5G::https://m.ithome.com/5gm\n专题::https://m.ithome.com/specialm\n阳台::https://m.ithome.com/balconym\n投票::https://m.ithome.com/votenews\n手机::https://m.ithome.com/phonem\n数码::https://m.ithome.com/digim\n学院::https://m.ithome.com/geekm\nVR::https://m.ithome.com/vrm\n智能汽车::https://m.ithome.com/autom\n电脑::https://m.ithome.com/pcm\n京东精选::https://m.ithome.com/jdm\n安卓::https://m.ithome.com/androidm\n苹果::https://m.ithome.com/iosm\n网络焦点::https://m.ithome.com/internetm\n行业前沿::https://m.ithome.com/itm\n游戏电竞::https://m.ithome.com/gamem\nWindows::https://m.ithome.com/windowsm\nLinux::https://m.ithome.com/linuxsm\n科普::https://m.ithome.com/discoverym",
- "sourceGroup": "科技",
- "sourceIcon": "https://www.ithome.com/img/t.png",
- "sourceName": "IT之家",
- "sourceUrl": "https://m.ithome.com"
- },
- {
- "articleStyle": 0,
- "customOrder": -10250,
- "enableJs": false,
- "enabled": true,
- "header": "{\n \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.0.0; zh-cn; MIX 2 Build/OPR1.170623.027) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1\"\n}",
- "loadWithBaseUrl": false,
- "ruleArticles": "class.recommend-list@tag.article",
- "ruleContent": "class.article-content@html&&class.comment_list@html@js:result.replace(/data-src=\\\"/g,\"src=\\\"https\\:\")",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a@href",
- "rulePubDate": "tag.span@text",
- "ruleTitle": "tag.h3@text",
- "sortUrl": "首页::https://3g.163.com/touch/exclusive/?referFrom=163##$##,{\"webView\":true}\n轻松一刻::https://3g.163.com/touch/exclusive/subchannel/qsyk/?referFrom=163##$##,{\"webView\":true}\n槽值::https://3g.163.com/touch/exclusive/subchannel/cz/?referFrom=163##$##,{\"webView\":true}\n人间::https://3g.163.com/touch/exclusive/subchannel/rj/?referFrom=163##$##,{\"webView\":true}\n大国小民::https://3g.163.com/touch/exclusive/subchannel/dgxm/?referFrom=163##$##,{\"webView\":true}\n三二有梗::https://3g.163.com/touch/exclusive/subchannel/seyg/?referFrom=163##$##,{\"webView\":true}\n数读::https://3g.163.com/touch/exclusive/subchannel/sd/?referFrom=163##$##,{\"webView\":true}\n看客::https://3g.163.com/touch/exclusive/subchannel/kk/?referFrom=163##$##,{\"webView\":true}\n下划线::https://3g.163.com/touch/exclusive/subchannel/xhx/?referFrom=163##$##,{\"webView\":true}\n谈心社::https://3g.163.com/touch/exclusive/subchannel/txs/?referFrom=163##$##,{\"webView\":true}\n哒哒::https://3g.163.com/touch/exclusive/subchannel/dada/?referFrom=163##$##,{\"webView\":true}\n胖编怪聊::https://3g.163.com/touch/exclusive/subchannel/pbgl/?referFrom=163##$##,{\"webView\":true}\n曲一刀::https://3g.163.com/touch/exclusive/subchannel/qyd/?referFrom=163##$##,{\"webView\":true}\n今日之声::https://3g.163.com/touch/exclusive/subchannel/jrzs/?referFrom=163##$##,{\"webView\":true}\n浪潮::https://3g.163.com/touch/exclusive/subchannel/lc/?referFrom=163##$##,{\"webView\":true}\n沸点::https://3g.163.com/touch/exclusive/subchannel/fd/?referFrom=163##$##,{\"webView\":true}",
- "sourceGroup": "",
- "sourceIcon": "https://mail.163.com/favicon.ico",
- "sourceName": "网易-轻松一刻",
- "sourceUrl": "https://3g.163.com/touch/exclusive/?referFrom=163##$##,{\"webView\":true}",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": -10250,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.recommend-list@tag.article",
- "ruleContent": "class.article-content@html&&class.comment_list@html##data-src##src",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a@href##$##,{\"webView\":true}",
- "rulePubDate": "tag.span@text",
- "ruleTitle": "tag.h3@text",
- "sortUrl": "轻松一刻::https://3g.163.com/touch/exclusive/subchannel/qsyk/?referFrom=163##$##,{\"webView\":true}\n槽值::https://3g.163.com/touch/exclusive/subchannel/cz/?referFrom=163##$##,{\"webView\":true}\n人间::https://3g.163.com/touch/exclusive/subchannel/rj/?referFrom=163##$##,{\"webView\":true}\n大国小民::https://3g.163.com/touch/exclusive/subchannel/dgxm/?referFrom=163##$##,{\"webView\":true}\n三二有梗::https://3g.163.com/touch/exclusive/subchannel/seyg/?referFrom=163##$##,{\"webView\":true}\n数读::https://3g.163.com/touch/exclusive/subchannel/sd/?referFrom=163##$##,{\"webView\":true}\n看客::https://3g.163.com/touch/exclusive/subchannel/kk/?referFrom=163##$##,{\"webView\":true}\n下划线::https://3g.163.com/touch/exclusive/subchannel/xhx/?referFrom=163##$##,{\"webView\":true}\n谈心社::https://3g.163.com/touch/exclusive/subchannel/txs/?referFrom=163##$##,{\"webView\":true}\n哒哒::https://3g.163.com/touch/exclusive/subchannel/dada/?referFrom=163##$##,{\"webView\":true}\n胖编怪聊::https://3g.163.com/touch/exclusive/subchannel/pbgl/?referFrom=163##$##,{\"webView\":true}\n曲一刀::https://3g.163.com/touch/exclusive/subchannel/qyd/?referFrom=163##$##,{\"webView\":true}\n今日之声::https://3g.163.com/touch/exclusive/subchannel/jrzs/?referFrom=163##$##,{\"webView\":true}\n浪潮::https://3g.163.com/touch/exclusive/subchannel/lc/?referFrom=163##$##,{\"webView\":true}\n沸点::https://3g.163.com/touch/exclusive/subchannel/fd/?referFrom=163##$##,{\"webView\":true}",
- "sourceGroup": "",
- "sourceIcon": "https://3g.163.com/favicon.ico",
- "sourceName": "网易-轻松一刻",
- "sourceUrl": "https://3g.163.com/touch/exclusive/subchannel/qsyk/?referFrom=163##$##,{\"webView\":true}",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": -10248,
- "enableJs": false,
- "enabled": true,
- "header": "{\n\"X-Requested-With\": \"XMLHttpRequest\"\n}",
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "http://yck.mumuceo.com/yuedu/shuyuan/yuan/id/{$.id}.html",
- "ruleNextPage": "<js>\r\nvar path1=String(baseUrl).match(/page=.*&li/)[0]\r\nvar path2=path1.replace(/page=/,'').replace(/&li/,'')\r\nvar num1=Number(path2)+1\r\nvar objk=String(baseUrl).replace(/page.*&li/, 'page='+num1+'&li' )\r\nresult=objk\r\n</js>",
- "rulePubDate": "$.time",
- "ruleTitle": "$.yuansite",
- "sortUrl": "全部::http://yck.mumuceo.com/yuedu/shuyuan/index.html,{\"method\": \"POST\",\"body\": \"page=1&limit=50&keys=&var=&faxian=&sousuo=&audio=&tupian=\"}\r\n发现::http://yck.mumuceo.com/yuedu/shuyuan/index.html,{\"method\": \"POST\",\"body\": \"page=1&limit=50&keys=&var=&faxian=1&sousuo=&audio=&tupian=\"}\r\n有声::http://yck.mumuceo.com/yuedu/shuyuan/index.html,{\"method\": \"POST\",\"body\": \"page=1&limit=50&keys=&var=&faxian=&sousuo=&audio=1&tupian=\"}\n图片::http://yck.mumuceo.com/yuedu/shuyuan/index.html,{\"method\": \"POST\",\"body\": \"page=1&limit=50&keys=&var=&faxian=&sousuo=&audio=&tupian=1\"}",
- "sourceGroup": "⚡常用",
- "sourceIcon": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2110974511,4205650978&fm=26&gp=0.jpg",
- "sourceName": "源仓库修复",
- "sourceUrl": "http://yck.mumuceo.com/yuedu/index/getlist?page=1&limit=50&keys=&var=&faxian=&sousuo=&audio="
- },
- {
- "articleStyle": 2,
- "customOrder": -10248,
- "enableJs": true,
- "enabled": true,
- "header": "{\n\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@class=\"aui-scrollView-type-right\"]/a",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "//div[@class=\"aui-books-img\"]/img/@src",
- "ruleLink": "//@href",
- "ruleNextPage": "",
- "rulePubDate": "//div[2]/h4/text()|//div[2]/h4/em/text()",
- "ruleTitle": "//div[2]/h3/text()",
- "sortUrl": "最新::http://m.zxcs.info/index.php\n\n都市::http://m.zxcs.info/index.php?sid=3\n\n武侠::http://m.zxcs.info/index.php?sid=6\n仙侠::http://m.zxcs.info/index.php?sid=7\n奇幻::http://m.zxcs.info/index.php?sid=9\n玄幻::http://m.zxcs.info/index.php?sid=10\n科幻::http://m.zxcs.info/index.php?sid=12\n\n灵异::http://m.zxcs.info/index.php?sid=13\n\n历史::http://m.zxcs.info/index.php?sid=15\n\n游戏::http://m.zxcs.info/index.php?sid=19\n\n二次元::http://m.zxcs.info/index.php?sid=20",
- "sourceIcon": "http://www.zxcs.me/favicon.ico",
- "sourceName": "知轩藏书[半成品,求大佬修复",
- "sourceUrl": "http://m.zxcs.info"
- },
- {
- "articleStyle": 0,
- "customOrder": -10075,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "$.itemList",
- "ruleContent": "",
- "ruleDescription": "<html><head><meta charset=\"utf-8\"><title>开眼</title><style>body{background-color:#8e8e8e}</style></head><body><a href=\"{{$.data.content.data.webUrl.raw||$.data.webUrl.raw}}\" style=\"color:#e0e0e0\">原文地址</a>\n<p style=\"text-align:center;color:#ffffff\"><strong>{{$.data.content.data.title||$.data.title}}</strong></p><video src=\"{{$.data.content.data.playUrl||$.data.playUrl}}\" width=\"350px\" height=\"200px\" controls=\"controls\" poster=\"{{$.data.content.data.cover.feed||$.data.feed}}\"></video><p style=\"color:#f0f0f0;text-indent: 2em\">{{$.data.content.data.description||$.data.description}}</p></body></html>",
- "ruleImage": "$.data.content.data.cover.feed",
- "ruleLink": "$.data.text||$.data.content.data.webUrl.raw||$.data.web.raw",
- "ruleNextPage": "{{$.nextPageUrl}}&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28",
- "rulePubDate": "$.data.header.description",
- "ruleTitle": "$.data.text||$.data.content.data.title||$.data.title",
- "sortUrl": "日报::http://baobab.kaiyanapp.com/api/v5/index/tab/feed?udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&广告::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=16&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&剧情::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=12&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&运动::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=1022&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&创意::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=2&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&旅行::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=1019&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&记录::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=24&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&音乐::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=1018&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&影视::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=1025&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&科技::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=1024&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&开胃::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=1020&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&游戏::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=30&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&搞笑::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=140&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&时尚::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=26&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&综艺::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=28&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28&&生活::http://baobab.kaiyanapp.com/api/v1/tag/videos?id=666&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28",
- "sourceGroup": "",
- "sourceIcon": "https://mip-haote-com.mipcdn.com/i/s/img.haote.com/upload/info/20170621/1498024249458069.png",
- "sourceName": "开眼",
- "sourceUrl": "http://baobab.kaiyanapp.com/api/v1/tag/videos?id=12&udid=187de68fafce4bcf8d6cca9e147574226a2e711e&vc=570&vn=6.0&size=1080X2255&deviceModel=JKM-AL00b&first_channel=eyepetizer_zhihuiyun_market&last_channel=eyepetizer_zhihuiyun_market&system_version_code=28"
- },
- {
- "articleStyle": 0,
- "customOrder": -10060,
- "enableJs": true,
- "enabled": true,
- "header": "{\n\"Cookie\":\"\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "<js>result.replace(/\\\\\"/g,'\\\"')</js>\ntag.article||tag.a",
- "ruleContent": "@js:\nif(result.match(/a\\/ac/)){\njson=result.match(/<script>window.articleInfo\\s*=([\\s\\S]+?);<\\/script>/)[1].replace(/style='([^']+)'/g,\"\");\n$=JSON.parse(json);\ntitle=$.title;time=$.createTime;\ntagList=$.tagList;\ntags='';\nfor(i in tagList){\ntags+='<a class=\\'tag\\'>'+tagList[i].name+'</a>'\n}\ncontent=$.parts[0].content;\nresult=\"<h3 class='title'>\"+title+\"</h3><div><a class='time'>\"+time+\"</a>\"+tags+\"</div>\"+content\n}else{\na='{{@@class.title@html}}';\nresult='<iframe style=\"width: 100vw;height: 56.25vw\" src=\"https://www.acfun.cn/player/ac'+baseUrl.match(/ac(\\d+)/)[1]+'\" id=\"ACPlayer-re\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'+a;\nresult\n}",
- "ruleDescription": "",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a.0@href##^##https://www.acfun.cn",
- "ruleNextPage": "page",
- "rulePubDate": "class.info@text||class.play-info@text",
- "ruleTitle": "class.title@text",
- "sortUrl": "视频::https://www.acfun.cn/u/2872448?quickViewId=ac-space-video-list&reqID=1&ajaxpipe=1&type=video&order=newest&page={{page}}&pageSize=20&t=1597753788575\n文章::https://www.acfun.cn/u/2872448?quickViewId=ac-space-article-list&reqID=2&ajaxpipe=1&type=article&order=newest&page={{page}}&pageSize=10&t=1597678371955",
- "sourceGroup": "DIY",
- "sourceIcon": "https://tx-free-imgs.acfun.cn/content/2020_8_8/1.5968172918955564E9.png?imageMogr2/format/webp/quality/75!/ignore-error/1",
- "sourceName": "AcFun\n思维实验室",
- "sourceUrl": "https://www.acfun.cn/u/2872448",
- "style": "div{width:100%;height:3rem;margin-top:0px;border:0px solid #ffffff;}\r\n.box{background:-moz-linear-gradient(#FD4C5D,#ffffff);background:-webkit-gradient(linear,center top,center bottom,from(#FD4C5D),to(#ffffff));background:-webkit-linear-gradient(#FD4C5D,#ffffff);background:-o-linear-gradient(#FD4C5D,#ffffff);background:-ms-linear-gradient(#FD4C5D,#ffffff);background:linear-gradient(#FD4C5D,#ffffff);}\n.title{\r\n color: #000;\r\n font-size: 1.5rem;\r\n font-weight: 700;\r\r\n}\n.time{\r\n font-size: 0.8rem;\n font-weight: 400;\r\r\n color: #999;\r\n vertical-align: top;\r\n line-height: 1.9rem;\r\n margin-right: 1rem;\r\n}\n.tag{\r\n font-family: PingFangSC-Regular;\r\n font-size: 0.8rem;\n font-weight: 400;\r\n color: #557eb1;\r\n padding: .3rem .5rem;\r\n padding-top: 0.3rem;\r\n padding-right: 0.5rem;\r\n padding-bottom: 0.3rem;\r\n padding-left: 0.5rem;\r\n display: inline-block;\r\n background-color: #f6f6f6;\r\n border-radius: 1.5rem;\n border-top-left-radius: 1.5rem;\r\n border-top-right-radius: 1.5rem;\r\n border-bottom-right-radius: 1.5rem;\r\n border-bottom-left-radius: 1.5rem;\r\n margin-right: 1rem;\r\n margin-bottom: .55rem;\r\n text-decoration: none;\r\n text-decoration-line: none;\r\n text-decoration-style: initial;\r\n text-decoration-color: initial;\r\n line-height: 1.2rem;\r\n}\nimg{\r\n max-width: 100%!important;\r\n height: auto!important;\r\n margin: 0 auto;\n border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;\n -webkit-box-shadow:0px 3px 3px #c8c8c8 ;\r\n -moz-box-shadow:0px 3px 3px #c8c8c8 ;\r\n box-shadow:0px 3px 3px #c8c8c8 ;\n}\n.content{\r\n color: #333;\r\n font-size: 1.2rem;\n font-weight: 500;\r\n line-height: 1.9rem;\r\n overflow: hidden;\r\n overflow-x: hidden;\r\n overflow-y: hidden;\n font-family: pingfang SC,Microsoft YaHei,helvetica,arial,verdana,Verdana,Geneva,Tahoma,sans-serif;\r\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": -10047,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.children",
- "ruleContent": "<html lang=\"en\" data-dpr=\"1\" style=\"font-size: 39.3091px;\"><head>\n <meta charset=\"UTF-8\">\n <link rel=\"stylesheet\" href=\"http://m.6yueting.com/css/play.css?v=1.0.2\">\n <div class=\"outer-wrapper page-width\">\n <div class=\"player page-width\">\n\n <div class=\"top\">\n <h2 class=\"title episode-name\">{{$..channel_name}}</h2>\n </div>\n <div class=\"background\">\n <div class=\"background-mask\">\n </div>\n </div>\n <div class=\"player-cover p-run\">\n <img class=\"image\" src=\"{{$..cover_url}}\">\n </div>\n <div class=\"bottom\">\n <div class=\"personalized\">\n <div class=\"item to-list-link\">\n<audio id=\"kugou\" height=\"100%\" width=\"100%\" controls=\"\" src=\"http://open.ls.qingting.fm/live/{{$..qt_channel_id}}/24k.m3u8?deviceid=652f2086-a7ae-3c71-afb1-ef1fd020ff23\"></audio> </div>\n </div>\n </div>\n\n</body></html>",
- "ruleDescription": "",
- "ruleImage": "$..pic_large_url",
- "ruleLink": "https://fm.music.xiaomi.com{$..request_url}",
- "rulePubDate": "{{$..subtitle}}",
- "ruleTitle": "$.data..name",
- "sortUrl": "国家台::https://fm.music.xiaomi.com/fm/v1/category/channel/370?pageType=%2Ffm_broadcast_list%2F%E5%B9%BF%E6%92%AD%2F%E5%9B%BD%E5%AE%B6%E5%8F%B0&version_info=%7B%22apk_version%22%3A%22230%22%2C%22apk_version_name%22%3A%221.0.230%22%2C%22device%22%3A%22platina%22%2C%22language%22%3A%22zh_CN%22%2C%22sys_verversion%22%3A%229_V10.3.7.0.PDTCNXM%22%7D&sign=2a57df4bf0b8a5e428b079783f529eeddac4f39d&nonce=9213596406902170431&i=37828e023677ad6e78e96f1c8506e8c4&oaid=56fbb3561e299e40&oaid_imei_both_have=true&ui_version=87&is_pad=false&miui_version=V10&package_name=com.miui.fm&support_fmservice=false\n交通台::https://fm.music.xiaomi.com/fm/v1/category/channel/401?pageType=%2Ffm_broadcast_list/广播/交通台&version_info=%7B%22apk_version%22%3A%22230%22%2C%22apk_version_name%22%3A%221.0.230%22%2C%22device%22%3A%22platina%22%2C%22language%22%3A%22zh_CN%22%2C%22sys_verversion%22%3A%229_V10.3.7.0.PDTCNXM%22%7D&sign=95a7b18a89cb3419d1b54658f25216aec5d4df21&nonce=-5530817897123709456&i=37828e023677ad6e78e96f1c8506e8c4&oaid=56fbb3561e299e40&oaid_imei_both_have=true&ui_version=87&is_pad=false&miui_version=V10&package_name=com.miui.fm&support_fmservice=false\n资讯广播::https://fm.music.xiaomi.com/fm/v1/category/channel/397?pageType=%2Ffm_broadcast_list%2F%E5%B9%BF%E6%92%AD%2F%E8%B5%84%E8%AE%AF%E5%8F%B0&version_info=%7B%22apk_version%22%3A%22230%22%2C%22apk_version_name%22%3A%221.0.230%22%2C%22device%22%3A%22platina%22%2C%22language%22%3A%22zh_CN%22%2C%22sys_verversion%22%3A%229_V10.3.7.0.PDTCNXM%22%7D&sign=bdabdf5fe65fe58bc800c2bcd9c3658e1847da6b&nonce=-5845902009413785201&i=37828e023677ad6e78e96f1c8506e8c4&oaid=56fbb3561e299e40&oaid_imei_both_have=true&ui_version=87&is_pad=false&miui_version=V10&package_name=com.miui.fm&support_fmservice=false",
- "sourceGroup": "音频",
- "sourceIcon": "http://pic.greenxf.com/2019/0731/1907315d4129bfd416f.png",
- "sourceName": "广播电台",
- "sourceUrl": "https://fm.music.xiaomi.com/fm/"
- },
- {
- "articleStyle": 2,
- "customOrder": -10000,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.vodlist@li",
- "ruleContent": "class.btn_primary.0@href\n<js>java.ajax('http://www.niubiyy.com'+result)</js>",
- "ruleImage": "tag.a@data-background||tag.a@data-original",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "page",
- "rulePubDate": "{{@@class.pic_text@text}}•{{@@class.vodlist_sub@text}}",
- "ruleTitle": "class.vodlist_title@a@textNodes",
- "sortUrl": "搜索::http://www.niubiyy.com/search/-------------.html?wd=我的\n\n首页::http://www.niubiyy.com/\n电影::http://www.niubiyy.com/list/dianying--------{{page}}---.html\n电视剧::http://www.niubiyy.com/list/dianshiju--------{{page}}---.html\n动漫::http://www.niubiyy.com/list/dongman--------{{page}}---.html\n综艺::http://www.niubiyy.com/list/zongyi--------{{page}}---.html\n微电影::http://www.niubiyy.com/list/weidianying--------{{page}}---.html",
- "sourceIcon": "",
- "sourceName": "牛逼影院",
- "sourceUrl": "http://www.niubiyy.com"
- },
- {
- "articleStyle": 0,
- "customOrder": -9999,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.list[*]",
- "ruleContent": "<js>result</js>",
- "ruleImage": "$.pic",
- "ruleLink": "$.url",
- "rulePubDate": "$.time",
- "ruleTitle": "$.title",
- "sourceGroup": "VIP",
- "sourceIcon": "https://gitee.com/alanskycn/yuedu/raw/master/JS/icon.jpg",
- "sourceName": "Legado",
- "sourceUrl": "https://gitee.com/alanskycn/yuedu/raw/master/JS/RSS/custom/customRss.json"
- },
- {
- "articleStyle": 0,
- "customOrder": -1033,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.article well clearfix@tag.div",
- "ruleContent": "class.centent-article@html",
- "ruleDescription": "",
- "ruleImage": "class.attachment-full size-full wp-post-image@src",
- "ruleLink": "class.title-article@h1@a@href",
- "ruleNextPage": "class.pagination pagination-zan pull-right@\ntag.li.10@a@href",
- "rulePubDate": "class.tag-article@span@text",
- "ruleTitle": "tag.a.-1@title",
- "sortUrl": "作品项目::https://vcb-s.com/archives/category/works\n科普系列::https://vcb-s.com/archives/category/kb\n计划与日志::https://vcb-s.com/archives/category/planlog",
- "sourceGroup": "动漫论坛",
- "sourceIcon": "https://cache.cswsadlab.com/wp-content/uploads/2020/07/Nakitai-Watashi-wa-Neko-o-Kaburu_1500px_slide_2.jpg",
- "sourceName": "VCB-Studio",
- "sourceUrl": "https://vcb-s.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": -210,
- "enableJs": true,
- "enabled": true,
- "header": "{\n \"User-Agent\": \"Dalvik/2.1.0 (Linux; U; Android 10; MI CC 9 Meitu Edition MIUI/20.5.14)\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.note-item note-item",
- "ruleContent": "<body style=\"background-color:#F2F2F1\">\n<a href='{{baseUrl}}'>原网页</a>\n<iframe src='{{@@class.video-player@video@src}}'width='100%' height='60%'></iframe>\n<img src='{{@@class.note-image-container.0@img@src}}'>\n<img src='{{@@class.note-image-container.1@img@src}}'>\n<p style='color:#333333'>{{@@class.content.0@html}}</p>\n@js:result.replace(/src=''width='100%' height='60%'/,\"src=''width='0' height='0'\").replace(/amp;/,'')",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a.0@href@js:result='https://www.xiaohongshu.com'+result",
- "rulePubDate": "",
- "ruleTitle": "tag.h3@text",
- "sortUrl": "冬冬和37::https://www.xiaohongshu.com/user/profile/5657ca019eb578266cdb51e7?xhsshare=CopyLink&appuid=5de8f9fa0000000001001964&apptime=1589732864\n宝妮::https://www.xiaohongshu.com/user/profile/5cd003f000000000160079bf?xhsshare=CopyLink&appuid=5de8f9fa0000000001001964&apptime=1589734320\n皮皮雪::https://www.xiaohongshu.com/user/profile/5dc959e30000000001009564?xhsshare=CopyLink&appuid=5de8f9fa0000000001001964&apptime=1589736354",
- "sourceGroup": "🌈其他",
- "sourceIcon": "https://pic.17qq.com/uploads/gfwmppwkwy.jpeg",
- "sourceName": "小红书",
- "sourceUrl": "https://www.xiaohongshu.com",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": -152,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.m-post",
- "ruleContent": "class.ctc@html",
- "ruleDescription": "",
- "ruleImage": "class.img@img@src",
- "ruleLink": "class.img@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.lnks@a@text##/ 评论.*|/ 热度.*",
- "ruleTitle": "class.text@text",
- "sourceIcon": "https://avaimg.nosdn0.126.net/avaimg/WEo5QkZsc0NQOEU9.png",
- "sourceName": "摄影独角兽",
- "sourceUrl": "http://unicornwj.lofter.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": -125,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data",
- "ruleContent": "class.article@html",
- "ruleDescription": "",
- "ruleImage": "$.thumbnails",
- "ruleLink": "$.ext_data.om_url",
- "ruleNextPage": "<js>\nvar id=baseUrl.match(/page=\\d/)[0].replace(/page=/,'')\nid=Number(id)\nid=id+1\nvar id2=baseUrl.replace(/page=\\d/,'page='+id)\nreuslt=id2\n</js>",
- "rulePubDate": "$.timestamp@js:var date = new Date(parseInt(result)*1000);date.getFullYear()+\"-\"+(date.getMonth()+1)+\"-\"+date.getDate()",
- "ruleTitle": "$.title",
- "sourceGroup": "Novel",
- "sourceIcon": "http://img.100weidu.com/weixin/head/MzI5NTA4NjgwNw==",
- "sourceName": "赤戟的书荒救济所",
- "sourceUrl": "https://pacaio.match.qq.com/om/mediaArticles?mid=7743178&num=30&page=0"
- },
- {
- "articleStyle": 0,
- "customOrder": -114,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.2u",
- "ruleContent": "<js>\nresult='<body style=\"background-color:#000\"><iframe src=\"'+baseUrl+'\" width=\"100%\" height=\"280px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a.1@href",
- "rulePubDate": "",
- "ruleTitle": "tag.p@text##\\+",
- "sourceGroup": "🍀直播",
- "sourceIcon": "http://img2.3png.com/a507fc72abc2eea3b9ad8780d7c33155ffde.png",
- "sourceName": "电视直播",
- "sourceUrl": "http://ivi.bupt.edu.cn/"
- },
- {
- "articleStyle": 0,
- "customOrder": -41,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-container",
- "ruleContent": "",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "text.下页@href",
- "ruleTitle": "tag.a@text",
- "sortUrl": "读者::http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=ea265b17-0d79-4240-b3db-0b4cf94de08b\n读者欣赏::http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=b4f38850-dda4-4559-a1a7-59479a2e05e6\n读者校园版::http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=9e236705-8f62-4007-9dc6-0ce02ae32a4c\n意林::http://qk.lifves.com/magazine.php?s=%E6%84%8F%E6%9E%97&key=7e788766-77a0-4093-b1f1-e3f55dd55137\n意林原创版::http://qk.lifves.com/magazine.php?s=%E6%84%8F%E6%9E%97&key=4fd8f670-f98d-459d-8263-044f6d5e4d4a\n故事会::http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=08dc3c17-262e-4f58-b7d9-932ab966e582\n故事林::http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=95ad621a-64c6-4535-a0b1-7168523387d7\n民间故事选刊上::http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=4b794331-6c37-4d62-8ab4-c9bbd553afb1\n民间故事选刊下::http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=fff4cc15-0856-43e8-b431-3163b53fb57d\n上海故事::http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=2f49b65d-8585-4b27-84d8-c59949902ac8\n文苑经典美文::http://qk.lifves.com/magazine.php?s=%E6%96%87%E8%8B%91&key=8eb793ed-1e66-4579-b9df-bd0341d56f03\n北京青年周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=71db0147-01dc-4e40-bdff-73a27c661bbe\n瞭望东方周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=8b13db7e-11c6-4cdc-bad9-531af3d8e730\n南都周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=ab027cf3-8a09-4d9f-b4bf-c4a99de3aba4\n南方人物周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=e29202e8-f6a9-4001-93cc-a6d383b505c7\n汽车周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=cb9c9f96-f991-45d6-9ef9-c9d81517df91\n新民周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=07fdb325-2d3a-42eb-9f69-ee041ba1b48b\n中国经济周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=4a07226a-70b4-41a8-b61a-3a45a4e09fec\n中国新闻周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=9015a0e8-eca9-4560-9c5e-317420aee8f5\n中国周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=77ef8d4a-33be-4ac5-8b9d-cfc9fea0ec9f\n证券市场周刊::http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=c0f4014b-b677-4dcc-b48b-b1fe4d602a45\n知音海外版上半月::http://qk.lifves.com/magazine.php?s=%E7%9F%A5%E9%9F%B3&key=175f46d3-3f5f-4f81-be66-c80ca5b809da\n知音海外版下半月::http://qk.lifves.com/magazine.php?s=%E7%9F%A5%E9%9F%B3&key=ce4008ad-37e1-4e33-b392-4956e54c782d\n知音上半月::http://qk.lifves.com/magazine.php?s=%E7%9F%A5%E9%9F%B3&key=048e8141-5aa7-4423-83c0-5e93439bd8e6\n知音下半月::http://qk.lifves.com/magazine.php?s=%E7%9F%A5%E9%9F%B3&key=d2635bc7-e2ad-412d-b01b-23224c1a0552\n知音月末版::http://qk.lifves.com/magazine.php?s=%E7%9F%A5%E9%9F%B3&key=5d99c3e8-32a3-4709-a263-bf2371314b65\n看天下::http://qk.lifves.com/magazine.php?s=%E7%9C%8B%E5%A4%A9%E4%B8%8B&key=65545c2e-bb1c-4f32-8cdf-5995ef0bd73f\n新民晚报::http://qk.lifves.com/magazine.php?s=%E6%8A%A5%E7%BA%B8&key=320700001254\n扬子晚报::http://qk.lifves.com/magazine.php?s=%E6%8A%A5%E7%BA%B8&key=320700001264\n羊城晚报::http://qk.lifves.com/magazine.php?s=%E6%8A%A5%E7%BA%B8&key=320700001265\n经济日报::http://qk.lifves.com/magazine.php?s=%E6%8A%A5%E7%BA%B8&key=320700000125",
- "sourceGroup": "📖 阅读",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=2250790218,1530043097&fm=15&gp=0.jpg",
- "sourceName": "期刊杂志",
- "sourceUrl": "http://qk.lifves.com"
- },
- {
- "articleStyle": 0,
- "customOrder": -36,
- "enableJs": true,
- "enabled": true,
- "header": " {\n\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.news_list@tag.li&&class.Revision_list@tag.li&&class.yc_warp_list@tag.li",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "class.next@tag.a@href",
- "rulePubDate": "class.time@text",
- "ruleTitle": "class.bt@text",
- "sortUrl": "原创::https://www.3dmgame.com/original\n评测::https://www.3dmgame.com/original_40_1\n投票::https://www.3dmgame.com/original_41_1\n\n\n\n游戏::https://www.3dmgame.com/news/game_1\n影视::https://www.3dmgame.com/news/acg_1\n数码::https://www.3dmgame.com/news/next_1\n时事::https://www.3dmgame.com/news_36_1\n八卦::https://www.3dmgame.com/bagua_62_1\n囧图::https://www.3dmgame.com/bagua_65_1\n涨姿势::https://www.3dmgame.com/bagua_63_1\n壁纸::https://www.3dmgame.com/bagua_66_1",
- "sourceGroup": "",
- "sourceIcon": "https://gss3.bdstatic.com/84oSdTum2Q5BphGlnYG/timg?wapp&quality=80&size=b150_150&subsize=20480&cut_x=0&cut_w=0&cut_y=0&cut_h=0&sec=1369815402&srctrace&di=57da2c371025792feffdde2ca2591e57&wh_rate=null&src=http%3A%2F%2Fimgsrc.baidu.com%2Fforum%2Fpic%2Fitem%2Fb90e7bec54e736d18efb66569a504fc2d4626980.jpg",
- "sourceName": "3DM",
- "sourceUrl": "https://www.3dmgame.com",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": -34,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "tag.ol@tag.li",
- "ruleContent": "<js>result</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sortUrl": "【三洞真经】\n洞真上清经::http://www.daorenjia.com/c8\n洞玄灵宝经::http://www.daorenjia.com/c9\n洞神三皇经::http://www.daorenjia.com/c10\n三洞经教::http://www.daorenjia.com/c11\n【四辅真经】\n太平部诸经::http://www.daorenjia.com/c12\n太玄部经诀::http://www.daorenjia.com/c13\n正一部经籙::http://www.daorenjia.com/c14\n道德真经::http://www.daorenjia.com/c15\n四子真经::http://www.daorenjia.com/c16\n黄帝阴符经::http://www.daorenjia.com/c17\n道教易学::http://www.daorenjia.com/c18\n太清金丹经::http://www.daorenjia.com/c19\n太清摄养经::http://www.daorenjia.com/c20\n【道教论集】\n诸子文集::http://www.daorenjia.com/c21\n道学论著::http://www.daorenjia.com/c22\n全真文集::http://www.daorenjia.com/c23\n道教类书::http://www.daorenjia.com/c24\n【道法众术】\n道法诸经::http://www.daorenjia.com/c25\n道法总集::http://www.daorenjia.com/c26\n【道教科仪】\n科戒威仪::http://www.daorenjia.com/c27\n灵宝诸斋仪::http://www.daorenjia.com/c28\n灯仪法忏章表::http://www.daorenjia.com/c29\n【道史仙传】\n神仙高道传::http://www.daorenjia.com/c30\n仙境名山志::http://www.daorenjia.com/c31",
- "sourceGroup": "📖 阅读",
- "sourceIcon": "https://p2.ssl.qhimgs1.com/t01a4ef0a3b59e725b2.jpg",
- "sourceName": "道人家",
- "sourceUrl": "http://www.daorenjia.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": -33,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.fl_g",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.dt@tag.a@href@js:\"https://www.xn--cjztj18l.com/\"+result",
- "rulePubDate": "tag.dd@text",
- "ruleTitle": "tag.dt@text",
- "sourceGroup": "📰 资讯",
- "sourceIcon": "https://www.xn--cjztj18l.com/template/xinshutouch/touch/static/images/shaizi.gif",
- "sourceName": "神秘网",
- "sourceUrl": "https://www.xn--cjztj18l.com/forum.php"
- },
- {
- "articleStyle": 0,
- "customOrder": -33,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.wqindex_list_ul@li&&class.wqfooter@tag.li.1&&class.wqplate_warp@tag.li.5",
- "ruleContent": "",
- "ruleImage": "",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "text.下一页@tag.a@href",
- "rulePubDate": "@js:\nif(baseUrl.match(/forum/)){\nvar doc = org.jsoup.Jsoup.parse(result);\nvar info = doc.select(\"p.list_info\").select(\"span\").textNodes();\nvar author = info.get(0);\nvar views = info.get(2);\nvar reply = info.get(1);\nresult = '作者: '+author+' 浏览: '+views+' 回复: '+reply\n}",
- "ruleTitle": "tag.a@text@js:if(baseUrl.match(/forum/)){\nresult = \"{{@@class.wqtitle_list.0@text}}\"}\nelse{result}",
- "sortUrl": "快捷::https://www.abooky.com\n发书审核::https://www.abooky.com/forum-37-1.html\n二次元小说::https://www.abooky.com/forum-38-1.html\n全本小说::https://www.abooky.com/forum-39-1.html\n常规小说::https://www.abooky.com/forum-40-1.html\n女频小说::https://www.abooky.com/forum-42-1.html",
- "sourceGroup": "",
- "sourceIcon": "https://www.abooky.com/template/wq_app/static/images/gz_logo.png",
- "sourceName": "阅次元(修正)",
- "sourceUrl": "https://www.abooky.com"
- },
- {
- "articleStyle": 0,
- "customOrder": -31,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.xing_vb@ul",
- "ruleContent": "@js:\nplay1=java.getElements('@@id.play_1@ul@li').toArray();\nhtml='';\nfor(i in play1){\ntitle=play1[i].text().match(/(.*?)\\$/)[1];\nsrc=play1[i].text().match(/\\$(.*)/)[1];\nhtml+='<h3>'+title+' <a>'+src+'</a></h3><video src=\"'+src+'\"></video>'\n}\nplay2=java.getElements('@@id.down_1@ul@li').toArray();\nhtml+='<hr>'\nfor(i in play2){\ntitle=play2[i].text().match(/(.*?)\\$/)[1];\nsrc=play2[i].text().match(/\\$(.*)/)[1];\nhtml+='<h3>'+title+' <a>'+src+'</a></h3><video src=\"'+src+'\"></video>'\n}\nhtml",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "page",
- "rulePubDate": "{{@@class.xing_vb5@text}}·{{@@class.xing_vb7@text||class.xing_vb6@text}}",
- "ruleTitle": "class.xing_vb4@text",
- "sortUrl": "首页::http://www.zuidazy4.net/?m=vod-index<,-pg-{{page}}>.html\n电影片::http://www.zuidazy4.net/?m=vod-type-id-1<,-pg-{{page}}>.html\n动作片::http://www.zuidazy4.net/?m=vod-type-id-5<,-pg-{{page}}>.html\n喜剧片::http://www.zuidazy4.net/?m=vod-type-id-6<,-pg-{{page}}>.html\n爱情片::http://www.zuidazy4.net/?m=vod-type-id-7<,-pg-{{page}}>.html\n科幻片::http://www.zuidazy4.net/?m=vod-type-id-8<,-pg-{{page}}>.html\n恐怖片::http://www.zuidazy4.net/?m=vod-type-id-9<,-pg-{{page}}>.html\n剧情片::http://www.zuidazy4.net/?m=vod-type-id-10<,-pg-{{page}}>.html\n战争片::http://www.zuidazy4.net/?m=vod-type-id-11<,-pg-{{page}}>.html\n记录片::http://www.zuidazy4.net/?m=vod-type-id-22<,-pg-{{page}}>.html\n连续剧::http://www.zuidazy4.net/?m=vod-type-id-2<,-pg-{{page}}>.html\n国产剧::http://www.zuidazy4.net/?m=vod-type-id-12<,-pg-{{page}}>.html\n香港剧::http://www.zuidazy4.net/?m=vod-type-id-13<,-pg-{{page}}>.html\n韩国剧::http://www.zuidazy4.net/?m=vod-type-id-14<,-pg-{{page}}>.html\n欧美剧::http://www.zuidazy4.net/?m=vod-type-id-15<,-pg-{{page}}>.html\n台湾剧::http://www.zuidazy4.net/?m=vod-type-id-19<,-pg-{{page}}>.html\n日本剧::http://www.zuidazy4.net/?m=vod-type-id-20<,-pg-{{page}}>.html\n海外剧::http://www.zuidazy4.net/?m=vod-type-id-21<,-pg-{{page}}>.html\n综艺片::http://www.zuidazy4.net/?m=vod-type-id-3<,-pg-{{page}}>.html\n动漫片::http://www.zuidazy4.net/?m=vod-type-id-4<,-pg-{{page}}>.html\n福利片::http://www.zuidazy4.net/?m=vod-type-id-16<,-pg-{{page}}>.html\n伦理片::http://www.zuidazy4.net/?m=vod-type-id-17<,-pg-{{page}}>.html\n音乐片::http://www.zuidazy4.net/?m=vod-type-id-18<,-pg-{{page}}>.html",
- "sourceIcon": "",
- "sourceName": "最大资源网",
- "sourceUrl": "http://www.zuidazy4.net/",
- "style": "a{font-size:12px}\nvideo{width:100%;height:auto}"
- },
- {
- "articleStyle": 0,
- "customOrder": -30,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\",\"Cookie\":\"NTqy_0a02_saltkey=YbiHkNN4; NTqy_0a02_lastvisit=1601374731; NTqy_0a02_nofavfid=1; NTqy_0a02_study_nge_extstyle=zdy; NTqy_0a02_study_nge_extstyle_default=zdy; NTqy_0a02_smile=4D1; NTqy_0a02_pc_size_c=0; NTqy_0a02_auth=5bc3PMNdm4Bq3uosUDPKGErtwAEErxtfmWs3NWs3KtjAqBiItVZwj04EBlVBPo5rXGQnFmpDADFf4qUb4Ne9fWbu9w; NTqy_0a02_lastcheckfeed=20613%7C1601905196; NTqy_0a02_ulastactivity=55f0TTyDVToK9XJ9H1OhzmXDb1pHCqbakctQbQGySF%2FKbP24t1j7; NTqy_0a02_visitedfid=18D63D62D60D57D55D65D6; NTqy_0a02_secqaa=70913.56e693a15018e8eb92; NTqy_0a02_sid=Nhl5tS; NTqy_0a02_lip=123.145.58.34%2C1601907580; NTqy_0a02_lastact=1601907681%09forum.php%09forumdisplay; NTqy_0a02_st_t=20613%7C1601907681%7Cd71ae7f6ef2d41b4c63f051b44d14748; NTqy_0a02_forum_lastvisit=D_63_1601906022D_18_1601907681\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.n5jj_hjeh cl@tag.a.0&&class.n5_htnrbt cl@tag.a&&class.n5qj_tbys nbg cl@tag.a.1",
- "ruleContent": "",
- "ruleImage": "",
- "ruleLink": "href",
- "ruleNextPage": "text.下一页@tag.a@href",
- "rulePubDate": "",
- "ruleTitle": "text&&class@js:if(baseUrl.match(/forum/)){result = \"{{@@text}}\"}else{result = result.replace(/每日签到/,\"签到\").replace(/n5qj_ycan sousuo/,\"搜索\")}",
- "sortUrl": "快捷::https://www.lemao8.com/\nYY小说::https://www.lemao8.com/forum-18-1.html\n玄幻修真::https://www.lemao8.com/forum-55-1.html\n武侠小说::https://www.lemao8.com/forum-56-1.html\n都市校园::https://www.lemao8.com/forum-57-1.html\n游戏竞技::https://www.lemao8.com/forum-59-1.html\n科幻小说::https://www.lemao8.com/forum-60-1.html\n灵异盗墓::https://www.lemao8.com/forum-61-1.html\n穿越历史::https://www.lemao8.com/forum-62-1.html\n同人小说::https://www.lemao8.com/forum-65-1.html\n其它小说::https://www.lemao8.com/forum-8-1.html",
- "sourceGroup": "注:yy类需要cookie验证",
- "sourceIcon": "https://s1.ax1x.com/2020/10/05/0tDeiT.png",
- "sourceName": "书悦吧",
- "sourceUrl": "https://www.lemao8.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": -23,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.video-list@li",
- "ruleContent": "<js>\ndoc=org.jsoup.Jsoup.parse(result);\nAppKey=result.match(/modeServerAppKey = \"([^\"]+)\"/)[1];\nvid=result.match(/vid = \"([^\"]+)\"/)[1];\nurl=\"https://openapi-vtom.vmovier.com/v3/video/\"+vid+\"?expand=resource&usage=xpc_web&appKey=\"+AppKey;\njson=java.ajax(url);\n$=JSON.parse(json);\ntitle=$.data.video.title;\ndec=doc.select(\".desc\").text();\nvideo=$.data.resource.default != undefined?$.data.resource.default.url:$.data.resource.progressive[0].url;\nimg=$.data.video.cover;\nhtml='<h3>'+title+'</h3>'+'<video width=\"100%\" height=\"250px\" controls=\"controls\" poster=\"'+img+'\" src=\"'+video+'\"></video>'+'<p>'+dec+'</p>'</js>",
- "ruleDescription": "",
- "ruleImage": "class.lazy-img@_src",
- "ruleLink": "tag.li@data-articleid@js:\"https://www.xinpianchang.com/a\"+result+\"?from=ArticleList\"",
- "ruleNextPage": "##href=\"([^\"]+)\" title=\"下一页\"##$1###",
- "rulePubDate": "class.video-hover-con@tag.p.0@text&&class.new-cate@tag.span.0@text##发布,##·",
- "ruleTitle": "class.video-con-top@tag.a.0@text",
- "sortUrl": "最新::https://www.xinpianchang.com/channel/index/type-/sort-addtime/duration_type-0/resolution_type-/page-1&&精选::https://www.xinpianchang.com/channel/index/type-/sort-pick/duration_type-0/resolution_type-/page-1&&热门::https://www.xinpianchang.com/channel/index/type-/sort-like/duration_type-0/resolution_type-/page-1",
- "sourceGroup": "影视",
- "sourceIcon": "https://m-fxxz-com.mipcdn.com/i/s/pic.fxxz.com/up/2018-7/20187231225528558.png",
- "sourceName": "新片场",
- "sourceUrl": "https://www.xinpianchang.com/channel/index/type-/sort-addtime/duration_type-0/resolution_type-/page-1",
- "style": "p{color:#8e8e8e;text-indent: 2em}\nh3{text-align:center;color:#8e8e8e}"
- },
- {
- "articleStyle": 0,
- "customOrder": -23,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "section@class.tsj-book-item||span@class.tsj-rank-book-item||class.tsj-article-summary",
- "ruleImage": "tag.img@data-src",
- "ruleLink": "tag.a.0@href@js:\"https://www.tuishujun.com\"+result",
- "rulePubDate": "class.tsj-book-item__info__right__book-subtitle@text||tag.a.1@text||tag.div.1@text",
- "ruleTitle": "tag.h3@text&&tag.h2@text",
- "sortUrl": "精选::https://www.tuishujun.com/\n幼苗::https://www.tuishujun.com/newest-books\n新书::https://www.tuishujun.com/rank/newest\n连载::https://www.tuishujun.com/rank/unfinished\n完本::https://www.tuishujun.com/rank/finished\n文章::https://www.tuishujun.com/articles",
- "sourceGroup": "📚 书荒",
- "sourceIcon": "https://m-youxiniao-com.mipcdn.com/i/s/imgo.youxiniao.com/img2019/12/4/9/2019120427733500_APP.png",
- "sourceName": "推书君",
- "sourceUrl": "https://www.tuishujun.com"
- },
- {
- "articleStyle": 0,
- "customOrder": -18,
- "enableJs": true,
- "enabled": true,
- "header": " {\n\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\",\"Cookie\":\"__cfduid=d150f32feeec7048d35993a8a642d2c0e1600348724; AVS=k29ctap8qhbuncoijpdkckr5v7\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.left@class.row@class.game-item&&class.left@class.row@class.video-item",
- "ruleContent": "@js:\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)}\nif(baseUrl.match(/gif/)){\nvar doc = org.jsoup.Jsoup.parse(result);\nvar gif = String(doc).match(/gif.{5,10}.webm/);\nvar preview = 'https://www.hentaicloud.com/media/'+gif;\n\nif(String(doc).match(/From Video/)){\nvar url = doc.select(\"div.fromvideo\").select(\"a\").attr(\"href\");\nvar allUrl = 'https://www.hentaicloud.com'+url;\nvar doc = org.jsoup.Jsoup.connect(allUrl).get();\nvar spt = doc.select(\"source\").toString();\nvar src = spt.match(/https.{36}hd.{5,10}mp4/);\nresult = '<body><div><video controls=\"true\" width=\"100%\" autoplay=\"true\" src ='+preview+'></div><div><a href='+src+' >点击看全片</a></div></body>'\n}else{ \nresult = '<body><div><video controls=\"true\" width=\"100%\" autoplay=\"true\" src ='+preview+'></div><div><a>此片暂无出处</a></div></body>'\n}\n\n}else{\nvar doc = org.jsoup.Jsoup.parse(result);\nvar spt = doc.select(\"source\").toString();\nvar src = spt.match(/https.{36}hd.{5,10}mp4/);\nvar video='<iframe src='+src+' width=\"100%\" height=\"560\" frameborder=\"no\" allowfullscreen=\"true\">' \nresult = video}",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "page",
- "rulePubDate": "@js:\nvar doc = org.jsoup.Jsoup.parse(result)\nvar text = doc.select(\"div.info\").select(\"span\").textNodes();\nif(text.size()==3){\nvar view = text.get(2).toString();\nif(view==\" \"){view =\"无\";}\nvar episode =text.get(0).toString();\nif(episode ==\" \"|| episode ==\"-\"){episode =\"无\";}\nresult = episode+\" 观看:\"+view}else if(text.size()==4){\nvar view = text.get(3).toString();\nif(view==\" \"){view =\"无\";}\nvar episode =text.get(0).toString();\nif(episode ==\" \"|| episode ==\"-\"){episode =\"无\";}\nresult = episode+\" 观看:\"+view\n}else{result = \"可通过动图预览查找动画\"}\n",
- "ruleTitle": "tag.div@id&&class.name@text",
- "sortUrl": "搜索::https://www.hentaicloud.com/search?search_type=videos&search_query=&search_type=videos&page={{page}}\n\n\n动图::https://www.hentaicloud.com/gifs?page={{page}}\n3D::https://www.hentaicloud.com/videos/3d-hentai?page={{page}}\n口交::https://www.hentaicloud.com/tags/Blowjob?page={{page}}\n无码::https://www.hentaicloud.com/tags/Uncensored?page={{page}}\n触手::https://www.hentaicloud.com/tags/Tentacle?page={{page}}\n扶她::https://www.hentaicloud.com/videos/futanari?page={{page}}\n恶魔::https://www.hentaicloud.com/tags/Demon?page={{page}}\n自慰::https://www.hentaicloud.com/tags/Masturbation?page={{page}}\n后宫::https://www.hentaicloud.com/tags/Harem?page={{page}}",
- "sourceGroup": "搜索在search_query=后面加上你搜索的目标名\n\n可用virtual hosts更改hosts实现免root直连",
- "sourceIcon": "https://s1.ax1x.com/2020/09/17/wfUhsU.png",
- "sourceName": "动漫",
- "sourceUrl": "https://www.hentaicloud.com",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": -15,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.comment-body",
- "ruleContent": "<js>\nresult='<style>img{width:98%;display: block;margin: 0 auto;}</style><img src=\"'+baseUrl+'\">'\n</js>",
- "ruleDescription": "",
- "ruleImage": "tag.p@tag.img@data-original",
- "ruleLink": "tag.p@tag.img@data-original",
- "ruleNextPage": "class.prev page-numbers@href",
- "rulePubDate": "",
- "ruleTitle": "class.comment-meta commentmetadata@tag.a.0@text",
- "sortUrl": "妹子自拍::https://www.mzitu.com/zipai/\n美女街拍::https://www.mzitu.com/jiepai/",
- "sourceGroup": "图文",
- "sourceIcon": "http://img.smzy.com/imges/2019/1021/20191021015913748.png",
- "sourceName": "妹子图",
- "sourceUrl": "https://www.mzitu.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": -7,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "$..vlist[*]||$.data.articles",
- "ruleContent": "<js>\nif(baseUrl.match(/player/)){\nlist=JSON.parse(result).data;\naid=baseUrl.match(/aid=(.*?)&/)[1];\nbid=baseUrl.match(/bvid=(.*?)&/)[1];\nhtml='';\nfor(i=0;i<list.length;i++){\npage=list[i].page;\ncid=list[i].cid;\ntitle=list[i].part;\nhtml +='<h3><strong>'+title+'</strong></h3><iframe src=\"https://player.bilibili.com/player.html?aid='+aid+'&bvid='+bid+'&cid='+cid+'&page='+page+'\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe><p></p><hr>'\n}}else{\nhtml=String(java.getString('@@class.article-holder@html',false)).replace(/data-src/g,'src');\ntag=java.getString('@@class.tag-container@li@html',false);\nhtml+'<hr>'+tag\n\n}\n</js>",
- "ruleDescription": "",
- "ruleImage": "$.pic||$.origin_image_urls[0]",
- "ruleLink": "@js:\nif(baseUrl.match(/article/)){\nresult='http://www.bilibili.com/read/cv{{$.id}}';\n}else{\nresult='https://api.bilibili.com/x/player/pagelist?bvid={{$.bvid}}&aid={{$.aid}}&jsonp=jsonp'\n}",
- "ruleNextPage": "page",
- "rulePubDate": "@js:\ncreate='{{$.created}}';\nlength='{{$.length}}';\nplay='{{$.play}}';\ntime='{{$.publish_time}}';\ntag1=java.getString('$.categories[0].name',false);\ntag2=java.getString('$.categories[1].name',false)\nif(!time){\nif(parseInt(parseInt(play)/10000)){\nplay=parseInt(parseInt(play)/10000)+'万';}\nresult=java.timeFormat(create+'000')+' 播放量:'+play+' 时长:'+length;}else{\nresult=java.timeFormat('{{$.publish_time}}000')+'·'+tag1+'/'+tag2\n}",
- "ruleTitle": "$.title",
- "sortUrl": "老番茄/视频::https://api.bilibili.com/x/space/arc/search?mid=546195&ps=30&tid=0&keyword=&jsonp=jsonp&pn={{page}}&order=pubdate\npapi酱/视频::https://api.bilibili.com/x/space/arc/search?mid=1532165&ps=30&tid=0&keyword=&jsonp=jsonp&pn={{page}}&order=pubdate\n未来事务管理局/专栏::https://api.bilibili.com/x/space/article?mid=27942566&ps=12&jsonp=jsonp&pn={{page}}\n狐九白_天/专栏::https://api.bilibili.com/x/space/article?mid=402958123&ps=12&jsonp=jsonp&pn={{page}}",
- "sourceGroup": "",
- "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
- "sourceName": "哔哩哔哩up主",
- "sourceUrl": "请按格式在分类url添加\n\n视频按以下格式\nUP主名称::https://api.bilibili.com/x/space/arc/search?mid=UP主的UID(进UP主主页可以获得)&ps=30&tid=0&keyword=&jsonp=jsonp&pn={{page}}\n\n专栏按以下格式\nUP主名称::https://api.bilibili.com/x/space/article?mid=UP主的UID(进UP主主页可以获得)&ps=12&jsonp=jsonp&pn={{page}}",
- "style": "h3{text-align:center}\nimg{width:100%;height:auto}\n.article-holder p{text-indent: 2em}"
- },
- {
- "articleStyle": 1,
- "customOrder": -3,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": false,
- "ruleArticles": "<js>\ntitle='';\nurl=baseUrl.match(/com\\/(.*)/)[1];\nc=String(org.jsoup.Jsoup.parse(result).select(\"#post-list li\"));\nif(url !='hot'){\npage=result.match(/\"cur\">(\\d+)</)[1];\na=java.ajax(\"https://www.vmovier.com/post/getbytab?tab=\"+url+\"&page=\"+page+\"&pagepart=2&type=0&controller=index\");\n\nb=java.ajax(\"https://www.vmovier.com/post/getbytab?tab=\"+url+\"&page=\"+page+\"&pagepart=3&type=0&controller=index\");\n\ntitle=String(JSON.parse(a).data)+String(JSON.parse(b).data);}\nhtml=c+title;\norg.jsoup.Jsoup.parse(html)\n</js>tag.li",
- "ruleContent": "<js>\ndoc=org.jsoup.Jsoup.parse(result);\nAppKey=result.match(/modeServerAppKey = \"([^\"]+)\"/)[1];\nvid=result.match(/vid = \"([^\"]+)\"/)[1];\nurl=\"https://openapi-vtom.vmovier.com/v3/video/\"+vid+\"?expand=resource&usage=xpc_web&appKey=\"+AppKey;\njson=java.ajax(url);\n$=JSON.parse(json);\ntitle=$.data.video.title;\ndec=doc.select(\".desc\").text();\nvideo=$.data.resource.default != undefined?$.data.resource.default.url:$.data.resource.progressive[0].url;\nimg=$.data.video.cover;\nhtml='<h3>'+title+'</h3>'+'<video width=\"100%\" height=\"250px\" controls=\"controls\" poster=\"'+img+'\" src=\"'+video+'\"></video>'+'<p>'+dec+'</p><h4>视频地址:'+video+'</h4>'</js>",
- "ruleDescription": "",
- "ruleImage": "##img src=\"([^\"]+)\"##$1###",
- "ruleLink": "##href=\"([^\"]+)\"##https://www.vmovier.com$1###",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "##n>\\s*<span class=\"time\">([^<]+)<##$1###",
- "ruleTitle": "##title=\"([^\"]+)\"##$1###",
- "sortUrl": "最新::https://www.vmovier.com/new\n热门::https://www.vmovier.com/hot\n精选::https://www.vmovier.com/stars",
- "sourceGroup": "影视",
- "sourceIcon": "https://m-qqtn-com.mipcdn.com/i/s/pic.qqtn.com/up/2018-7/2018071311175882832.jpg!100_100",
- "sourceName": "场库",
- "sourceUrl": "https://www.vmovier.com/hot",
- "style": "p{color:#8e8e8e;text-indent: 2em}\nh3{text-align:center;color:#8e8e8e}\nh4{color:#8e8e8e;font-size:10px}"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "@css:.booklist-card",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "@css:.booklist-card-content>a@href##^##http://www\\.yousuu\\.com",
- "rulePubDate": "@css:.ResultBooklistItemClasses,.ResultBooklistItemUpdateAt@text##,,##,",
- "ruleTitle": "@css:.booklist-card-content>a@text",
- "sourceGroup": "",
- "sourceIcon": "https://gitee.com/alanskycn/yuedu/raw/master/JS/youshuwang.png",
- "sourceName": "优书网",
- "sourceUrl": "http://www.yousuu.com/booklists?type=man&screen=latest&page=1"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//entry",
- "ruleContent": "<js>\nvar doc=org.jsoup.Jsoup.parse(result);\nString(doc.select(\".markdown-body\").outerHtml())\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "//link/@href",
- "rulePubDate": "//updated/text()",
- "ruleTitle": "//title/text()",
- "sourceGroup": "VIP",
- "sourceIcon": " https://gitee.com/alanskycn/yuedu/raw/master/JS/icon.jpg",
- "sourceName": "legado更新信息",
- "sourceUrl": " https://github.com/gedoor/legado/releases.atom"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "<media:content url=pic</media:content>",
- "ruleLink": "",
- "rulePubDate": "",
- "ruleTitle": "",
- "sourceGroup": "新闻",
- "sourceIcon": "https://news.un.org/en/sites/all/themes/bootstrap_un_news/images/un-emblem-for-rss.png",
- "sourceName": "联合国新闻(英文版)",
- "sourceUrl": "https://freefullrss.com/feed.php?url=https%3A%2F%2Fnews.un.org%2Ffeed%2Fsubscribe%2Fen%2Fnews%2Fall%2Frss.xml&max=10&links=perserve&exc=&submit=Create+Full+Text+RSS"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.excerpt excerpt-one.!-1",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "class.thumbnail@tag.img@src",
- "ruleLink": "tag.h2@tag.a.0@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.h2@tag.a.0@text",
- "sourceGroup": "",
- "sourceIcon": "",
- "sourceName": "博海拾贝",
- "sourceUrl": "https://bh.sb/post/category/main/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data.images",
- "ruleContent": "",
- "ruleDescription": "{{$.description}}<br>\n<img src=\"http://wpstatic.zuimeia.com/{{$.image_url}}\"</>",
- "ruleImage": "http://wpstatic.zuimeia.com/{{$.image_url}}",
- "ruleLink": "http://wpstatic.zuimeia.com/{{$.image_url}}",
- "rulePubDate": "$.pub_time",
- "ruleTitle": "$.description",
- "sourceGroup": "订阅源",
- "sourceIcon": "",
- "sourceName": "每日一图",
- "sourceUrl": "http://lab.zuimeia.com/wallpaper/category/2"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "tag.article",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "class.focus@tag.img@data-src",
- "ruleLink": "class.focus@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.cat@text&&tag.time@text",
- "ruleTitle": "tag.h2.tag.a@text",
- "sourceGroup": "陌染",
- "sourceIcon": "https://tva1.sinaimg.cn/large/007awY0bly1g2oaya6trhj307i01x3yx.jpg",
- "sourceName": "福利吧",
- "sourceUrl": "http://fulibus.net/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.woo-pcont@class.j",
- "ruleContent": "class.de-img@html",
- "ruleDescription": "",
- "ruleImage": "class.a@img@src",
- "ruleLink": "class.a@href@js:\"https://www.duitang.com\"+result",
- "ruleNextPage": "@js:\"https://www.duitang.com/category/?cat=wallpaper&sub=壁纸-动漫&page=3\"",
- "rulePubDate": "",
- "ruleTitle": "class.g@text",
- "sourceIcon": "https://c-ssl.duitang.com/uploads/item/201806/21/20180621181320_zXad3.png",
- "sourceName": "堆糖-壁纸-动漫",
- "sourceUrl": "https://www.duitang.com/category/?cat=wallpaper&sub=壁纸-动漫"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-table@tr!0",
- "ruleContent": "id.content_left@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.list-title@href",
- "rulePubDate": "",
- "ruleTitle": "class.keyword@class.list-title@text",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585388584437&di=8613fe6e2b56115fb56b310a0a0b384f&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F02%2F26%2F59%2F065774716e50469.jpg",
- "sourceName": "百度-实时热点",
- "sourceUrl": "http://top.baidu.com/buzz?b=1&fr=topindex"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-table@tr!0",
- "ruleContent": "id.content_left@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.list-title@href",
- "rulePubDate": "",
- "ruleTitle": "class.keyword@class.list-title@text",
- "sourceGroup": "百度",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585388584437&di=8613fe6e2b56115fb56b310a0a0b384f&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F02%2F26%2F59%2F065774716e50469.jpg",
- "sourceName": "百度-娱乐热点",
- "sourceUrl": "http://top.baidu.com/buzz?b=344&c=513&fr=topbuzz_b342_c513"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-table@tr!0",
- "ruleContent": "id.content_left@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.list-title@href",
- "rulePubDate": "",
- "ruleTitle": "class.keyword@class.list-title@text",
- "sourceGroup": "百度",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585388584437&di=8613fe6e2b56115fb56b310a0a0b384f&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F02%2F26%2F59%2F065774716e50469.jpg",
- "sourceName": "百度-七日热点",
- "sourceUrl": "http://top.baidu.com/buzz?b=42&c=513&fr=topbuzz_b341_c513"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-table@tr!0",
- "ruleContent": "id.content_left@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.list-title@href",
- "rulePubDate": "",
- "ruleTitle": "class.keyword@class.list-title@text",
- "sourceGroup": "百度",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585388584437&di=8613fe6e2b56115fb56b310a0a0b384f&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F02%2F26%2F59%2F065774716e50469.jpg",
- "sourceName": "百度-体育热点",
- "sourceUrl": "http://top.baidu.com/buzz?b=11&c=513&fr=topbuzz_b11_c513"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-table@tr!0",
- "ruleContent": "id.content_left@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.list-title@href",
- "rulePubDate": "",
- "ruleTitle": "class.keyword@class.list-title@text",
- "sourceGroup": "百度",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585388584437&di=8613fe6e2b56115fb56b310a0a0b384f&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F02%2F26%2F59%2F065774716e50469.jpg",
- "sourceName": "百度-民生热点",
- "sourceUrl": "http://top.baidu.com/buzz?b=342&c=513&fr=topbuzz_b42_c513"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-table@tr!0",
- "ruleContent": "id.content_left@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.list-title@href",
- "rulePubDate": "",
- "ruleTitle": "class.keyword@class.list-title@text",
- "sourceGroup": "百度",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585388584437&di=8613fe6e2b56115fb56b310a0a0b384f&imgtype=0&src=http%3A%2F%2Fbpic.588ku.com%2Felement_origin_min_pic%2F02%2F26%2F59%2F065774716e50469.jpg",
- "sourceName": "百度-今日热点",
- "sourceUrl": "http://top.baidu.com/buzz?b=341&c=513&fr=topbuzz_b1_c513"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.part1",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "a@img@src",
- "ruleLink": "a@href@js:\"http://www.cf555.com/\"+result",
- "rulePubDate": "",
- "ruleTitle": "class.title@text",
- "sourceIcon": "http://www.cf555.com/image/logo_c.png",
- "sourceName": "百食阁",
- "sourceUrl": "http://www.cf555.com/mm.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.archives\t",
- "ruleContent": "",
- "ruleDescription": "<p style=\"text-align:center\">\n<strong>{{$.title}}</strong>\n</p>\n<iframe src=\"https://player.bilibili.com/player.html?aid={{$.aid}}\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\">\n</iframe>",
- "ruleImage": "$.pic",
- "ruleLink": "https://player.bilibili.com/player.html?aid={{$.aid}}",
- "rulePubDate": "",
- "ruleTitle": "$.title",
- "sourceGroup": "B站",
- "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
- "sourceName": "B站-最新列表",
- "sourceUrl": "https://api.bilibili.com/x/web-interface/newlist"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.result",
- "ruleContent": "",
- "ruleDescription": "<p style=\"text-align:center\">\n<strong>{{$.title}}</strong>\n</p>\n<iframe src=\"https://player.bilibili.com/player.html?aid={{$.id}}\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\">\n</iframe>",
- "ruleImage": "$.pic",
- "ruleLink": "https://player.bilibili.com/player.html?aid={{$.id}}",
- "ruleNextPage": "",
- "rulePubDate": "",
- "ruleTitle": "$..title",
- "sourceGroup": "B站",
- "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
- "sourceName": "B站-翻唱-最热排布",
- "sourceUrl": "https://s.search.bilibili.com/cate/search?callback=jqueryCallback_bili_06444281429157561&main_ver=v3&search_type=video&view_type=hot_rank&order=click©_right=-1&cate_id=31&page=1&pagesize=100&json=json&time_from=20200324&time_to=20200331&_=1585647509801"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.block-video",
- "ruleContent": "",
- "ruleDescription": "<p style=\"text-align:center\">\n<strong>{class.block-title@a!1@text}</strong>\n</p>\n<iframe src=\"https://www.acfun.cn/player{class.block-title@a!1@href}\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\">\n</iframe>",
- "ruleImage": "a@img@data-original",
- "ruleLink": "class.block-title@a!1@href##/v##https://www.acfun.cn/player",
- "rulePubDate": "class.clearfix@class.fr@text",
- "ruleTitle": "class.block-title@a!1@text",
- "sourceGroup": "A站",
- "sourceIcon": "https://cdn.aixifan.com/dotnet/20130418/umeditor/dialogs/emotion/images/ac/47.gif",
- "sourceName": "AC正义",
- "sourceUrl": "https://www.acfun.cn/v/list177/index.htm"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.result",
- "ruleContent": "",
- "ruleDescription": "<p style=\"text-align:center\">\n<strong>{{$.title}}</strong>\n</p>\n<iframe src=\"https://player.bilibili.com/player.html?aid={{$.id}}\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\">\n</iframe>",
- "ruleImage": "$.pic",
- "ruleLink": "https://player.bilibili.com/player.html?aid={{$.id}}",
- "ruleNextPage": "",
- "rulePubDate": "",
- "ruleTitle": "$..title",
- "sourceGroup": "B站",
- "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
- "sourceName": "B站-生活-日常-HR",
- "sourceUrl": "https://s.search.bilibili.com/cate/search?callback=jqueryCallback_bili_023927589479682432&main_ver=v3&search_type=video&view_type=hot_rank&order=click©_right=-1&cate_id=21&page=1&pagesize=100&json=json&time_from=20200325&time_to=20200401&_=1585711602607"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list@li",
- "ruleContent": "class.block recipe-show@html",
- "ruleDescription": "",
- "ruleImage": "class.cover@img@data-src",
- "ruleLink": "class.name@a@href@js:\"https://www.xiachufang.com\"+result",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.score@text",
- "ruleTitle": "class.cover@img@alt",
- "sortUrl": "家常::https://www.xiachufang.com/category/40076/\n快手::https://www.xiachufang.com/category/40077/\n下饭::https://www.xiachufang.com/category/40078/\n早餐::https://www.xiachufang.com/category/40071/\n鱼::https://www.xiachufang.com/category/957/\n鸡蛋::https://www.xiachufang.com/category/394/\n汤羹::https://www.xiachufang.com/category/20130/\n烘焙::https://www.xiachufang.com/category/51761/\n主食::https://www.xiachufang.com/category/51490/\n面::https://www.xiachufang.com/category/20133/\n素食::https://www.xiachufang.com/special/vegetarian/",
- "sourceGroup": "",
- "sourceIcon": "https://s.chuimg.com/favicon.ico",
- "sourceName": "下厨房",
- "sourceUrl": "https://www.xiachufang.com/category/40076/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.articles",
- "ruleContent": "<js>var doc=org.jsoup.Jsoup.parse(result);\nString(doc.select(\"h1\").outerHtml()).replace(/h1/g,\"h2\")+doc.select(\"#A_content\").html()</js>",
- "ruleDescription": "",
- "ruleImage": "poster_url",
- "ruleLink": "https://m.adline.com.cn{$.url}",
- "rulePubDate": "{{$.source_name}}|{{$.summary}}",
- "ruleTitle": "title",
- "sortUrl": "推荐::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=1&page_token=1&article_id=0&create_time=0&c=24&t=1585921627273&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n社会::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=5&page_token=1&article_id=0&create_time=0&c=24&t=1585921940023&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n娱乐::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=7&page_token=1&article_id=0&create_time=0&c=24&t=1585921946698&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n国际::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=30&page_token=1&article_id=0&create_time=0&c=24&t=1585921953856&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n健康::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=8&page_token=1&article_id=0&create_time=0&c=24&t=1585921958829&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n军事::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=32&page_token=1&article_id=0&create_time=0&c=24&t=1585921963211&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n体育::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=4&page_token=1&article_id=0&create_time=0&c=24&t=1585921984457&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n时尚::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=33&page_token=1&article_id=0&create_time=0&c=24&t=1585921989181&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n汽车::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=11&page_token=1&article_id=0&create_time=0&c=24&t=1585921993754&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n科技::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=10&page_token=1&article_id=0&create_time=0&c=24&t=1585921999614&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n逗比::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=34&page_token=1&article_id=0&create_time=0&c=24&t=1585922004871&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n财经::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=6&page_token=1&article_id=0&create_time=0&c=24&t=1585922009648&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n股票::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=13&page_token=1&article_id=0&create_time=0&c=24&t=1585922017199&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n家具::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=15&page_token=1&article_id=0&create_time=0&c=24&t=1585922053900&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n房产::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=24&page_token=1&article_id=0&create_time=0&c=24&t=1585922064960&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n美食::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=37&page_token=1&article_id=0&create_time=0&c=24&t=1585922072921&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=\n数码::https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=20&page_token=1&article_id=0&create_time=0&c=24&t=1585922078084&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn=",
- "sourceGroup": "",
- "sourceIcon": "https://c1.adline.com.cn/static/img/favicon.ico",
- "sourceName": "今日头条-合集",
- "sourceUrl": "https://api.adline.com.cn/api/v2/article?app_id=20197855&cid=1&page_token=1&article_id=0&create_time=0&c=24&t=1585921627273&uid=70a014599cdc4ccf82888e13a665037f&adline_newsdn="
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.news-top-list-content@li@a||$.data",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "$.pic",
- "ruleLink": "a@href||$.url",
- "rulePubDate": "",
- "ruleTitle": "class.c-title-s@text||$.title",
- "sortUrl": "热搜::https://quark.sm.cn/s?q=热搜\n微博::https://quark.sm.cn/api/rest?method=newstoplist.weibo\n知乎::https://quark.sm.cn/api/rest?method=Newstoplist.zhihu\n小说::https://quark.sm.cn/api/rest?method=Newstoplist.novel&uc_param_str=frpfvepcntnwprutssei&fr=android&pf=3300&ve=3.6.1.121&nt=2&pr=ucpro&ut=AAOGr%2BT5AH8cPWaQJuM05etT2eUYBpKXT2z%2BqxrCqGHQlQ%3D%3D&ss=360x733&format=json&nw=",
- "sourceGroup": "",
- "sourceIcon": "https://sm01.alicdn.com/L1/272/1990/favicon/favi.ico",
- "sourceName": "夸克搜索",
- "sourceUrl": "https://quark.sm.cn/s?q=热搜"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.response.videos",
- "ruleContent": "<js>\ndata=baseUrl\nvideo='<video height=\"100%\" width=\"100%\" controls=\"controls\" src=\"'+data+'\">\nresult=video\n</js>",
- "ruleDescription": "<video height=\"100%\" width=\"100%\" controls=\"controls\" src=\"{{$.play_url}}\">",
- "ruleImage": "$.poster_pc",
- "ruleLink": "$.play_url",
- "rulePubDate": "$.publish_time",
- "ruleTitle": "$.title",
- "sortUrl": "影视::https://haokan.baidu.com/videoui/api/videorec?tab=yingshi&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086268802\n音乐::https://haokan.baidu.com/videoui/api/videorec?tab=yinyue&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086388269\n搞笑::https://haokan.baidu.com/videoui/api/videorec?tab=gaoxiao&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086408725\n娱乐::https://haokan.baidu.com/videoui/api/videorec?tab=yule&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086473421\n动漫::https://haokan.baidu.com/videoui/api/videorec?tab=dongman&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086508113\n生活::https://haokan.baidu.com/videoui/api/videorec?tab=shenghuo&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086530166\n小品::https://haokan.baidu.com/videoui/api/videorec?tab=xiaopin&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086560367\n综艺::https://haokan.baidu.com/videoui/api/videorec?tab=zongyi&act=pcFeed&pd=pc&num=100&shuaxin_id=1586086580591",
- "sourceGroup": "",
- "sourceIcon": "https://vv.bdstatic.com/static/videoui/img/favicon-4_f4b9465.ico",
- "sourceName": "好看视频",
- "sourceUrl": "https://haokan.baidu.com/videoui/api/videorec?tab=dongman&act=pcFeed&pd=pc&num=100&shuaxin_id=1585713808755"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.list||$.data",
- "ruleContent": "",
- "ruleDescription": "<p style=\"text-align:center\">\n<strong>{{$.title}}</strong>\n</p>\n<iframe src=\"https://player.bilibili.com/player.html?aid={{$.aid}}\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\">\n</iframe>",
- "ruleImage": "$.pic",
- "ruleLink": "https://player.bilibili.com/player.html?aid={{$.aid}}",
- "rulePubDate": "$.duration",
- "ruleTitle": "$.title",
- "sortUrl": "首页::https://api.bilibili.com/x/web-interface/ranking?rid=160&day=3&json=json\n国创::https://api.bilibili.com/x/web-interface/ranking?rid=168&day=3&json=json\r\n动画::https://api.bilibili.com/x/web-interface/ranking?rid=1&day=3&json=json\r\n音乐::https://api.bilibili.com/x/web-interface/ranking?rid=3&day=3&json=json\r\n舞蹈::https://api.bilibili.com/x/web-interface/ranking?rid=129&day=3&json=json\r\n科技::https://api.bilibili.com/x/web-interface/ranking?rid=36&day=3&json=json\r\n数码::https://api.bilibili.com/x/web-interface/ranking?rid=188&day=3&json=json\r\n游戏::https://api.bilibili.com/x/web-interface/ranking?rid=4&day=3&json=json\r\n娱乐::https://api.bilibili.com/x/web-interface/ranking?rid=5&day=3&json=json\r\n鬼畜::https://api.bilibili.com/x/web-interface/ranking?rid=119&day=3&json=json\r\n电影::https://api.bilibili.com/x/web-interface/ranking?rid=23&day=3&json=json\r\n影视::https://api.bilibili.com/x/web-interface/ranking?rid=181&day=3&json=json\r\n时尚::https://api.bilibili.com/x/web-interface/ranking?rid=155&day=3&json=json\r\n生活::https://api.bilibili.com/x/web-interface/ranking?rid=160&day=3&json=json\n番剧::https://api.bilibili.com/x/web-interface/ranking/region?rid=13&day=7&json=json",
- "sourceGroup": "B站",
- "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
- "sourceName": "B站-集合",
- "sourceUrl": "https://api.bilibili.com/x/web-interface/ranking?rid=168&day=3&json=json"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.bklist@tag.a",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sortUrl": "北京::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1&cl=0.1.&na=%b1%b1%be%a9%ca%d0 \n广东::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1997&cl=0.1997.&na=%b9%e3%b6%ab%ca%a1\n上海::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=20&cl=0.20.&na=%c9%cf%ba%a3%ca%d0\n 天津::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=40&cl=0.40.&na=%cc%ec%bd%f2%ca%d0 \n重庆::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=59&cl=0.59.&na=%d6%d8%c7%ec%ca%d0 \n河北::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=100&cl=0.100.&na=%ba%d3%b1%b1%ca%a1 \n山西::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=284&cl=0.284.&na=%c9%bd%ce%f7%ca%a1 \n内蒙::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=415&cl=0.415.&na=%c4%da%c3%c9%b9%c5%d7%d4%d6%ce%c7%f8 \n辽宁::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=529&cl=0.529.&na=%c1%c9%c4%fe%ca%a1 \n吉林::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=644&cl=0.644.&na=%bc%aa%c1%d6%ca%a1\n 黑龙江::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=714&cl=0.714.&na=%ba%da%c1%fa%bd%ad%ca%a1 \n江苏::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=858&cl=0.858.&na=%bd%ad%cb%d5%ca%a1\n 浙江::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=978&cl=0.978.&na=%d5%e3%bd%ad%ca%a1 \n安徽::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1080&cl=0.1080.&na=%b0%b2%bb%d5%ca%a1 \n福建::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1203&cl=0.1203.&na=%b8%a3%bd%a8%ca%a1 \n江西::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1298&cl=0.1298.&na=%bd%ad%ce%f7%ca%a1 \n山东::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1409&cl=0.1409.&na=%c9%bd%b6%ab%ca%a1\n 河南::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1567&cl=0.1567.&na=%ba%d3%c4%cf%ca%a1 \n湖北::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1744&cl=0.1744.&na=%ba%fe%b1%b1%ca%a1 \n湖南::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=1860&cl=0.1860.&na=%ba%fe%c4%cf%ca%a1\n 广西::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2140&cl=0.2140.&na=%b9%e3%ce%f7%d7%b3%d7%e5%d7%d4%d6%ce%c7%f8 \n海南::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2264&cl=0.2264.&na=%ba%a3%c4%cf%ca%a1\n 四川::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2290&cl=0.2290.&na=%cb%c4%b4%a8%ca%a1 \n贵州::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2493&cl=0.2493.&na=%b9%f3%d6%dd%ca%a1 \n云南::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2591&cl=0.2591.&na=%d4%c6%c4%cf%ca%a1 \n西藏::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2737&cl=0.2737.&na=%ce%f7%b2%d8%d7%d4%d6%ce%c7%f8\n 陕西::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2818&cl=0.2818.&na=%c9%c2%ce%f7%ca%a1 \n甘肃::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=2936&cl=0.2936.&na=%b8%ca%cb%e0%ca%a1 \n青海::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=3037&cl=0.3037.&na=%c7%e0%ba%a3%ca%a1 \n宁夏::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=3089&cl=0.3089.&na=%c4%fe%cf%c4%bb%d8%d7%e5%d7%d4%d6%ce%c7%f8 \n新疆::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=3116&cl=0.3116.&na=%d0%c2%bd%ae%ce%ac%ce%e1%b6%fb%d7%d4%d6%ce%c7%f8 \n台湾::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=3230&cl=0.3230.&na=%cc%a8%cd%e5%ca%a1 \n香港::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=3256&cl=0.3256.&na=%cf%e3%b8%db%cc%d8%b1%f0%d0%d0%d5%fe%c7%f8 \n澳门::http://www.53bk.com/baokan/citybk.aspx?bk=1&cn=1&di=3275&cl=0.3275.&na=%b0%c4%c3%c5%cc%d8%b1%f0%d0%d0%d5%fe%c7%f8",
- "sourceGroup": "报刊",
- "sourceIcon": "https://dss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=1856958915,917951624&fm=85&app=79&f=JPEG?w=121&h=75&s=14D7EF36E8E6EF134C2248EC0300E02B",
- "sourceName": "报刊",
- "sourceUrl": "http://www.53bk.com/baokan/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.bm_c@tag.tbody",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.th@tag.img.0@src",
- "ruleLink": "tag.th@tag.a.1@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.by@tag.span@text",
- "ruleTitle": "tag.th@tag.a.1@text",
- "sortUrl": "广州区::http://www.ditiezu.com/forum-23-1.html\n城际高铁区::http://www.ditiezu.com/forum-46-1.html\n北京区::http://www.ditiezu.com/forum-7-1.html\n天津区::http://www.ditiezu.com/forum-6-1.html\n上海区::http://www.ditiezu.com/forum-8-1.html\n长春区::http://www.ditiezu.com/forum-40-1.html\n大连区::http://www.ditiezu.com/forum-41-1.html\n武汉区::http://www.ditiezu.com/forum-39-1.html\n重庆区::http://www.ditiezu.com/forum-38-1.html\n深圳区::http://www.ditiezu.com/forum-24-1.html\n南京区::http://www.ditiezu.com/forum-22-1.html\n成都区::http://www.ditiezu.com/forum-53-1.html\n沈阳区::http://www.ditiezu.com/forum-50-1.html\n佛山区::http://www.ditiezu.com/forum-56-1.html\n西安区::http://www.ditiezu.com/forum-54-1.html\n苏州区::http://www.ditiezu.com/forum-51-1.html\n昆明区::http://www.ditiezu.com/forum-70-1.html\n杭州区::http://www.ditiezu.com/forum-52-1.html\n哈尔滨区::http://www.ditiezu.com/forum-55-1.html\n郑州区::http://www.ditiezu.com/forum-64-1.html\n长沙区::http://www.ditiezu.com/forum-67-1.html\n宁波区::http://www.ditiezu.com/forum-65-1.html\n无锡区::http://www.ditiezu.com/forum-68-1.html\n青岛区::http://www.ditiezu.com/forum-66-1.html\n南昌区::http://www.ditiezu.com/forum-71-1.html\n福州区::http://www.ditiezu.com/forum-72-1.html\n东莞区::http://www.ditiezu.com/forum-75-1.html\n南宁区::http://www.ditiezu.com/forum-73-1.html\n合肥区::http://www.ditiezu.com/forum-74-1.html\n石家庄区::http://www.ditiezu.com/forum-140-1.html\n贵阳区::http://www.ditiezu.com/forum-76-1.html\n厦门区::http://www.ditiezu.com/forum-77-1.html\n乌鲁木齐区::http://www.ditiezu.com/forum-143-1.html\n温州区::http://www.ditiezu.com/forum-66-1.html\n济南区::http://www.ditiezu.com/forum-148-1.html\n香港区::http://www.ditiezu.com/forum-28-1.html\n台湾区::http://www.ditiezu.com/forum-36-1.html\n海外区::http://www.ditiezu.com/forum-47-1.html\n综合区::http://www.ditiezu.com/forum-37-1.html\n站前广场::http://www.ditiezu.com/forum-21-1.html",
- "sourceGroup": "论坛",
- "sourceIcon": "https://tva2.sinaimg.cn/crop.0.0.180.180.180/608b0a6bjw1e8qgp5bmzyj2050050aa8.jpg?KID=imgbed,tva&Expires=1586263928&ssig=CAI8QH0EZ9",
- "sourceName": "地铁族",
- "sourceUrl": "http://www.ditiezu.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.bklist@tag.a",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sortUrl": "北京::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1&cl=0.1.&na=%b1%b1%be%a9%ca%d0 &&广东::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1997&cl=0.1997.&na=%b9%e3%b6%ab%ca%a1 &&上海::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=20&cl=0.20.&na=%c9%cf%ba%a3%ca%d0 &&天津::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=40&cl=0.40.&na=%cc%ec%bd%f2%ca%d0 &&重庆::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=59&cl=0.59.&na=%d6%d8%c7%ec%ca%d0 &&河北::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=100&cl=0.100.&na=%ba%d3%b1%b1%ca%a1 &&山西::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=284&cl=0.284.&na=%c9%bd%ce%f7%ca%a1 &&辽宁::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=529&cl=0.529.&na=%c1%c9%c4%fe%ca%a1 &&吉林::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=644&cl=0.644.&na=%bc%aa%c1%d6%ca%a1 &&黑龙江::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=714&cl=0.714.&na=%ba%da%c1%fa%bd%ad%ca%a1 &&江苏::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=858&cl=0.858.&na=%bd%ad%cb%d5%ca%a1&& 浙江::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=978&cl=0.978.&na=%d5%e3%bd%ad%ca%a1 &&安徽::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1080&cl=0.1080.&na=%b0%b2%bb%d5%ca%a1 &&福建::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1203&cl=0.1203.&na=%b8%a3%bd%a8%ca%a1 &&江西::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1298&cl=0.1298.&na=%bd%ad%ce%f7%ca%a1&&山东::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1409&cl=0.1409.&na=%c9%bd%b6%ab%ca%a1 &&河南::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1567&cl=0.1567.&na=%ba%d3%c4%cf%ca%a1 &&湖北::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1744&cl=0.1744.&na=%ba%fe%b1%b1%ca%a1 &&湖南::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=1860&cl=0.1860.&na=%ba%fe%c4%cf%ca%a1 &&广西::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2140&cl=0.2140.&na=%b9%e3%ce%f7%d7%b3%d7%e5%d7%d4%d6%ce%c7%f8 &&海南::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2264&cl=0.2264.&na=%ba%a3%c4%cf%ca%a1 &&四川::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2290&cl=0.2290.&na=%cb%c4%b4%a8%ca%a1 &&贵州::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2493&cl=0.2493.&na=%b9%f3%d6%dd%ca%a1 &&云南::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2591&cl=0.2591.&na=%d4%c6%c4%cf%ca%a1 &&西藏::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2737&cl=0.2737.&na=%ce%f7%b2%d8%d7%d4%d6%ce%c7%f8 &&陕西::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2818&cl=0.2818.&na=%c9%c2%ce%f7%ca%a1 &&甘肃::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=2936&cl=0.2936.&na=%b8%ca%cb%e0%ca%a1 &&青海::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=3037&cl=0.3037.&na=%c7%e0%ba%a3%ca%a1 &&宁夏::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=3089&cl=0.3089.&na=%c4%fe%cf%c4%bb%d8%d7%e5%d7%d4%d6%ce%c7%f8 &&新疆::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=3116&cl=0.3116.&na=%d0%c2%bd%ae%ce%ac%ce%e1%b6%fb%d7%d4%d6%ce%c7%f8 &&台湾::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=3230&cl=0.3230.&na=%cc%a8%cd%e5%ca%a1 &&香港::http://www.53bk.com/baokan/citybk.aspx?bk=6&cn=1&di=3256&cl=0.3256.&na=%cf%e3%b8%db%cc%d8%b1%f0%d0%d0%d5%fe%c7%f8",
- "sourceGroup": "杂志",
- "sourceIcon": "https://dss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=1856958915,917951624&fm=85&app=79&f=JPEG?w=121&h=75&s=14D7EF36E8E6EF134C2248EC0300E02B",
- "sourceName": "杂志",
- "sourceUrl": "http://www.53bk.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.books",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "$.cover",
- "ruleLink": "https://www.yousuu.com/book/{{$.bookId}}",
- "ruleNextPage": "\n<js>\nvar path1=String(baseUrl).match(/page=.*&/)[0]\nvar path2=path1.replace(/page=/,'').replace(/&/,'')\nvar num1=Number(path2)+1\nvar objk=String(baseUrl).replace(/page.*&/, 'page='+num1+'&' )\nresult=objk\n</js>",
- "rulePubDate": "$.updateAt",
- "ruleTitle": "$.title",
- "sortUrl": "全部::https://www.yousuu.com/api/bookStore/books?page=1&t=1585667544106\\r\\n\n男频::https://www.yousuu.com/api/bookStore/books?channel=0&page=1&t=1585667792745\\r\\n\n女频::https://www.yousuu.com/api/bookStore/books?channel=1&page=1&t=1585668085986\\r\\n\n玄幻::https://www.yousuu.com/api/bookStore/books?classId=2&page=1&t=1585668118258\\r\\n\n奇幻::https://www.yousuu.com/api/bookStore/books?classId=3&page=1&t=1585668124057\\r\\n\n武侠::https://www.yousuu.com/api/bookStore/books?classId=4&page=1&t=1585668128860\\r\\n\n仙侠::https://www.yousuu.com/api/bookStore/books?classId=5&page=1&t=1585668134561\\r\\n\n都市::https://www.yousuu.com/api/bookStore/books?classId=6&page=1&t=1585668142376\\r\\n\n现实::https://www.yousuu.com/api/bookStore/books?classId=7&page=1&t=1585668148993\\r\\n\n军事::https://www.yousuu.com/api/bookStore/books?classId=8&page=1&t=1585668192897\\r\\n\n历史::https://www.yousuu.com/api/bookStore/books?classId=9&page=1&t=1585668197503\\r\\n\n悬疑::https://www.yousuu.com/api/bookStore/books?classId=10&page=1&t=1585668201265\\r\\n\n游戏::https://www.yousuu.com/api/bookStore/books?classId=11&page=1&t=1585668205527\\r\\n\n竞技::https://www.yousuu.com/api/bookStore/books?classId=12&page=1&t=1585668209894\\r\\n\n科幻::https://www.yousuu.com/api/bookStore/books?classId=13&page=1&t=1585668215512\\r\\n\n灵异::https://www.yousuu.com/api/bookStore/books?classId=15&page=1&t=1585668220365\\r\\n\n同人::https://www.yousuu.com/api/bookStore/books?classId=16&page=1&t=1585668242842\\r\\n\n其他::https://www.yousuu.com/api/bookStore/books?classId=29&page=1&t=1585668247871\\r\\n\n二次元::https://www.yousuu.com/api/bookStore/books?classId=14&page=1&t=1585668225017\\r\\n\n轻小说::https://www.yousuu.com/api/bookStore/books?classId=27&page=1&t=1585668324390\\r\\n\n穿越时空::https://www.yousuu.com/api/bookStore/books?classId=17&page=1&t=1585668254182\\r\\n\n架空历史::https://www.yousuu.com/api/bookStore/books?classId=18&page=1&t=1585668280899\\r\\n\n总裁豪门::https://www.yousuu.com/api/bookStore/books?classId=20&page=1&t=1585668285015\\r\\n\n都市言情::https://www.yousuu.com/api/bookStore/books?classId=21&page=1&t=1585668289052\\r\\n\n仙侠奇缘::https://www.yousuu.com/api/bookStore/books?classId=22&page=1&t=1585668294656\\r\\n\n幻想言情::https://www.yousuu.com/api/bookStore/books?classId=23&page=1&t=1585668300385\\r\\n\n悬疑推理::https://www.yousuu.com/api/bookStore/books?classId=24&page=1&t=1585668305015\n耽美纯爱::https://www.yousuu.com/api/bookStore/books?classId=25&page=1&t=1586325573941",
- "sourceIcon": "https://gitee.com/alanskycn/yuedu/raw/master/JS/youshuwang.png",
- "sourceName": "优书书籍",
- "sourceUrl": "https://www.yousuu.com/api/bookStore/books?page=1&t=1585667544106"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.content.u2||$.content.u1||$.content.u0||$.content.roomList",
- "ruleContent": "",
- "ruleDescription": "<video poster=\"{{$.pic}}\" src=\"http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8?_=\" width=\"100%\" controls=\"controls\" ></video>\n <p>{{$.userMood}}</p>",
- "ruleImage": "$.pic",
- "ruleLink": "http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8",
- "rulePubDate": "",
- "ruleTitle": "$.userMood",
- "sortUrl": "推荐::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-guessyoulike.php&av=3.0&encpass=&logiuid=&type=&recid=&reft=5004\n热门::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=&reft=5004\n舞蹈::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=u1&reft=5004\n好声音::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=u0&reft=5004\n脱口秀::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=u2&reft=5004",
- "sourceGroup": "直播•温某某",
- "sourceIcon": "http://vr0.6rooms.com/v/d3/8746b065fc1d40d19144b38809698e46.png",
- "sourceName": "六间房",
- "sourceUrl": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.item-inner",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "class.item-thumb@all##.+url\\(|\\).+##",
- "ruleLink": "tag.a.0@href@js:\"https://ifish.fun\"+result",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.item-summary@text",
- "ruleTitle": "class.left@text",
- "sortUrl": "每日精选::https://ifish.fun/\n落网精选::https://ifish.fun/music/luoo",
- "sourceGroup": "陌染",
- "sourceIcon": "",
- "sourceName": "洛奇Town",
- "sourceUrl": "https://ifish.fun/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list-group CAIlist CAIlist_list@tag.li",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "<js>\r\nvar path1=String(baseUrl).match(/page=.*/)[0]\r\nvar path2=path1.replace(/page=/,'')\r\nvar num1=Number(path2)+1\r\nvar objk=String(baseUrl).replace(/page.*/, 'page='+num1 )\r\nresult=objk\r\n</js>",
- "rulePubDate": "",
- "ruleTitle": "class.csc@title",
- "sortUrl": "作文头条::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=119&page=1\n作文 365 ::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=121&page=1\n时文选粹::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=120&page=1\n美文选粹::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=133&page=1\n读写计划::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=132&page=1\n师说::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=122&page=1",
- "sourceIcon": "https://img.nync.com/f/2018/08/10/1d7b1b9a2a878e1f_640.jpg",
- "sourceName": "新课标作文",
- "sourceUrl": "http://www.jiaoshi100.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.news-view",
- "ruleContent": "class.article-view@html\n<js>\nvar data=org.jsoup.Jsoup.parse(result)\nvar text=String(data.select('.jm-app')).replace(/\\s+/g,'')\nvar text2=String(data).replace(/\\s+/g,'').replace(text,'')\n\nresult='<link rel=\"stylesheet\" type=\"text/css\" href=\"https://damingzhijun.gitee.io/yueduwenben/play/img.css\" />'+text2\n</js>",
- "ruleDescription": "",
- "ruleImage": "class.news-img@a@img@src",
- "ruleLink": "class.news-img@a@href",
- "ruleNextPage": "",
- "rulePubDate": "class.news-footer@text",
- "ruleTitle": "class.news-img@a@title",
- "sortUrl": "天下::https://www.jiemian.com/lists/32.html\n中国::https://www.jiemian.com/lists/71.html\n宏观::https://www.jiemian.com/lists/174.html\n数据::https://www.jiemian.com/lists/154.html\n国事::https://www.jiemian.com/lists/422.html\n评论::https://www.jiemian.com/lists/8.html\n文娱::https://www.jiemian.com/lists/63.html\n体育::https://www.jiemian.com/lists/82.html\n时尚::https://www.jiemian.com/lists/68.html\n文化::https://www.jiemian.com/lists/130.html\n旅行::https://www.jiemian.com/lists/105.html\n生活::https://www.jiemian.com/lists/135.html\n游戏::https://www.jiemian.com/lists/118.html\n商场::https://www.jiemian.com/lists/2.html\n科技::https://www.jiemian.com/lists/65.html\n汽车::https://www.jiemian.com/lists/51.html\n地产::https://www.jiemian.com/lists/62.html\n证券::https://www.jiemian.com/lists/112.html\n金融::https://www.jiemian.com/lists/9.html\n消费::https://www.jiemian.com/lists/31.html\n工业::https://www.jiemian.com/lists/28.html\n交通::https://www.jiemian.com/lists/30.html\n投资::https://www.jiemian.com/lists/86.html\n股市::https://www.jiemian.com/lists/418.html\n健康::https://www.jiemian.com/lists/472.html\n教育::https://www.jiemian.com/lists/256.html\n营销::https://www.jiemian.com/lists/49.html\n职场::https://www.jiemian.com/lists/50.html\n商学院::https://www.jiemian.com/lists/605.html\n创业::https://www.jiemian.com/lists/141.html\n楼市::https://www.jiemian.com/lists/181.html\n财富::https://www.jiemian.com/lists/410.html",
- "sourceIcon": "https://gitee.com/Damingzhijun/yueduwenben/raw/master/img/jlq.png",
- "sourceName": "界面新闻",
- "sourceUrl": "https://www.jiemian.com/lists/71.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "ol@li",
- "ruleContent": "<js>\nresult='<html lang=\"en\" data-dpr=\"1\" style=\"font-size: 39.3091px;\"><head><link rel=\"stylesheet\" href=\"https://damingzhijun.gitee.io/yueduwenben/play/play.css\"><div class=\"outer-wrapper page-width\"><div class=\"player page-width\"><div class=\"top\"><h2 class=\"title episode-name\"></h2></div><div class=\"background\"><div class=\"background-mask\"></div></div><div class=\"player-cover p-run\"><img class=\"image\" src=\"'+'https://ifish.fun/img/fish.png'+'\"></div><div class=\"bottom\"><div class=\"personalized\"><div class=\"item to-list-link\"><audio id=\"kugou\" height=\"100%\" width=\"100%\" controls=\"\" src=\"'+baseUrl+'\"></audio> '\n</js>",
- "ruleDescription": "",
- "ruleImage": "class.player-list-pic@text",
- "ruleLink": "class.player-list-url@text@js:'https://ifish.fun'+result",
- "rulePubDate": "class.player-list-author@text",
- "ruleTitle": "class.player-list-name@text",
- "sortUrl": "云春部落::https://ifish.fun/music/daily?t=wy\n大虾世界::https://ifish.fun/music/daily?t=xm\n杂食天下::https://ifish.fun/music/daily?t=qq",
- "sourceGroup": "",
- "sourceIcon": "https://ifish.fun/img/fish.png",
- "sourceName": "洛奇TownFA",
- "sourceUrl": "https://ifish.fun/music/daily?t=wy"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.commentlist@li",
- "ruleContent": "@js:var doc=org.jsoup.Jsoup.parse(String(result).replace(/\\/\\//g,\"http://\"));\nb=doc.select(\".entry a\").toArray();\nc=doc.select(\".entry img\").toArray();\nd=String(doc.select(\".entry\")).replace(/<a[\\s\\S]+?<hr>/,\"\");\nf=\"\";\nfor(i=0;i<b.length;i++){\na=String(b[i]).match(/href=\"([^\"]+)\"/)[1];\ne=String(c[i]).replace(/src=\"([^\"]+)\"/,'src=\"'+a+'\"');\nf=f+b[i]+\"<br>\"+e\n}\nresult=d+f+\"</p>\"",
- "ruleDescription": "",
- "ruleImage": "tag.p.0@tag.img@src",
- "ruleLink": "class.righttext@tag.a@href@js:\"http://i.jandan.net\"+result",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.author@text",
- "ruleTitle": "class.righttext@text",
- "sortUrl": "无聊图::http://jandan.net/pic\n随手拍::http://jandan.net/ooxx\n动物园::http://jandan.net/zoo\n无聊热榜::http://jandan.net/top\n随手热榜::http://jandan.net/top-ooxx",
- "sourceGroup": "",
- "sourceIcon": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1587014243366&di=78818cb15cb602d146d53d83ce838325&imgtype=0&src=http%3A%2F%2Fimg.mp.sohu.com%2Fupload%2F20151215%2Fd0d0be9fcdfa4126b72ee4e42e83a031.jpg",
- "sourceName": "煎蛋网",
- "sourceUrl": "http://jandan.net/pic"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\n \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.container@class.col-md-3 col-xs-6",
- "ruleContent": "all## <script type=\"text/javascript\">var cnzz_protocol = [\\s\\S]+?</script> ",
- "ruleDescription": "",
- "ruleImage": "img@src",
- "ruleLink": "h4@tag.a.0@href",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.table@span@text##\\n##•",
- "ruleTitle": "h4@tag.a@text",
- "sourceIcon": "http://srvcn.xbext.com/touch_icons/96x96/mobile.h5_games.png",
- "sourceName": "在线游戏",
- "sourceUrl": "https://www.yikm.net"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.dd-list@class.dd-item",
- "ruleContent": "<js>\nvar data=org.jsoup.Jsoup.parse(result)\nvar title=data.select('h1')\nvar cont=data.select('.content-intro')\nresult='<link rel=\"stylesheet\" type=\"text/css\" href=\"https://damingzhijun.gitee.io/yueduwenben/play/img.css\" />'+title+cont\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "class.dd-content@a@href@js:'https://www.w3cschool.cn'+result",
- "rulePubDate": "",
- "ruleTitle": "class.dd-content@a@text",
- "sourceIcon": "https://www.w3cschool.cn/favicon.ico",
- "sourceName": "正则表达式三十分钟入门",
- "sourceUrl": "https://www.w3cschool.cn/regex_rmjc/regex_rmjc-n5a328cn.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.datas",
- "ruleContent": "",
- "ruleDescription": "<iframe width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\" src=\"http://liveshare.huya.com/iframe/{{$.profileRoom}}\"></iframe>\n",
- "ruleImage": "$.screenshot",
- "ruleLink": "$.profileRoom",
- "ruleNextPage": "<js>\nvar id=baseUrl.match(/page=\\d/)[0].replace(/page=/,'')\nid=Number(id)\nid=id+1\nvar id2=baseUrl.replace(/page=\\d/,'page='+id)\nreuslt=id2\n</js>",
- "rulePubDate": "$.introduction",
- "ruleTitle": "$.roomName",
- "sortUrl": "英雄联盟::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=1&tagAll=0&page=1\nlol云顶之弈::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=5485&tagAll=0&page=1\r\n穿越火线::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=4&tagAll=0&page=1\nDNF::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=2&tagAll=0&page=1\n魔兽世界::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=8&tagAll=0&page=1\n炉石传说::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=393&tagAll=0&page=1\n魔兽世界3::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=4615&tagAll=0&page=1\n绝地求生::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=2793&tagAll=0&page=1\n我的世界::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=1732&tagAll=0&page=1\n二次元::https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=2633&tagAll=0&page=1",
- "sourceIcon": "https://www.huya.com/favicon.ico",
- "sourceName": "虎牙直播",
- "sourceUrl": "https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=1&tagAll=0&page=1"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data.site.subs[0].items",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "https://www.anyknew.com/go/{$.iid}",
- "rulePubDate": "$.add_date@js:\nresult=result+\"000\"\njava.timeFormat(result)",
- "ruleTitle": "$.title",
- "sortUrl": "微博热搜::https://www.anyknew.com/api/v1/sites/weibo&&知乎热榜::https://www.anyknew.com/api/v1/sites/zhihu&&今日头条热搜::https://www.anyknew.com/api/v1/sites/toutiao&&360热搜::https://www.anyknew.com/api/v1/sites/360&&百度热点::https://www.anyknew.com/api/v1/sites/baidu&&搜狗热搜::https://www.anyknew.com/api/v1/sites/sogou&&网易新闻(国际)::https://www.anyknew.com/api/v1/sites/163&&果壳(科学人)::https://www.anyknew.com/api/v1/sites/guokr&&36kr热榜::https://www.anyknew.com/api/v1/sites/36kr&&科学松鼠会::https://www.anyknew.com/api/v1/sites/songshuhui&&cnBate::https://www.anyknew.com/api/v1/sites/cnbeta&&哔哩哔哩日排行::https://www.anyknew.com/api/v1/sites/bilibili&&梨视频::https://www.anyknew.com/api/v1/sites/pearvideo&&澎湃(视频)::https://www.anyknew.com/api/v1/sites、thepaper&&艺恩实时::https://www.anyknew.com/api/v1/sites/cbo&&汽车之家::https://www.anyknew.com/api/v1/sites/autohome&&腾讯新闻::https://www.anyknew.com/api/v1/sites/tencent&&zol(手机)::https://www.anyknew.com/api/v1/sites/zol&&界面新闻::https://www.anyknew.com/api/v1/sites/jiemian&&什么值得买::https://www.anyknew.com/api/v1/sites/smzdm&&游民星空::https://www.anyknew.com/api/v1/sites/gamesky&&steam实时::https://www.anyknew.com/api/v1/sites/steam&&时光网::https://www.anyknew.com/api/v1/sites/mtime&&开发者头条::https://www.anyknew.com/api/v1/sites/toutiaoio&&掘金::https://www.anyknew.com/api/v1/sites/juejin&&开源中国::https://www.anyknew.com/api/v1/sites/oschina&&雪球::https://www.anyknew.com/api/v1/sites/xueqiu&&财新数据::https://www.anyknew.com/api/v1/sites/caixin&&英为财情::https://www.anyknew.com/api/v1/sites/investing",
- "sourceIcon": "http://www.diyiziti.com/Res/Images//Temp/435/06c58b6e0ba642978dde7f2b771f4d54.PNG",
- "sourceName": "AnyKnew",
- "sourceUrl": "https://www.anyknew.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.table.0@tbody@tr",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a@href",
- "rulePubDate": "tag.td.-2@text",
- "ruleTitle": "tag.td!-1:-2@text##\\n",
- "sortUrl": "知乎热榜::https://tophub.today/n/mproPpoq6O\r\n微博热搜榜::https://tophub.today/n/KqndgxeLl9\r\n微信24h热文榜::https://tophub.today/n/WnBe01o371\r\n澎湃今日排行::https://tophub.today/n/wWmoO5Rd4E\r\n哔哩哔哩全站日榜::https://tophub.today/n/74KvxwokxM\r\n百度实时热点::https://tophub.today/n/Jb0vmloB1G\r\n知乎日报Today::https://tophub.today/n/KMZd7VOvrO\n梨视频::https://tophub.today/n/WYKd69jvaP",
- "sourceIcon": "https://file.ipadown.com/tophub/assets/images/logo.png",
- "sourceName": "今日热榜",
- "sourceUrl": "https://tophub.today/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\r\n \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; BLA-AL00 Build/HUAWEIBLA-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/8.9 Mobile Safari/537.36\"\r\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.list||$.data",
- "ruleContent": "<js>\nresult='<iframe src=\"'+baseUrl.replace(/\\,[\\s\\S]+?}/,'')+'\" width=\"350px\" height=\"500px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'\n</js>",
- "ruleDescription": "",
- "ruleImage": "$.cover",
- "ruleLink": "https://live.bilibili.com{{$.link}},{\"charset\": \"utf-8\",\"method\": \"GET\",\"webView\": true }",
- "ruleNextPage": "<js>\nvar p=baseUrl.match(/page=\\d+/)[0].replace(/page=/g,'')\nvar t=Number(p)\nt=t+1\nresult=baseUrl.replace(/page=\\d+/,'page='+t)\n</js>",
- "rulePubDate": "$.uname",
- "ruleTitle": "$.title",
- "sortUrl": "全部::https://api.live.bilibili.com/room/v1/room/get_user_recommend?page=1\n绘画::https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=4&cate_id=0&area_id=0&sort_type=sort_type_56&page=1&page_size=30&tag_version=1\n娱乐::https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=1&cate_id=0&area_id=0&sort_type=sort_type_152&page=1&page_size=30&tag_version=1\n单机::https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=6&cate_id=0&area_id=0&sort_type=sort_type_150&page=1&page_size=30&tag_version=1\n手游::https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=3&cate_id=0&area_id=0&sort_type=sort_type_121&page=1&page_size=30&tag_version=1\n网游::https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=2&cate_id=0&area_id=0&sort_type=sort_type_124&page=1&page_size=30&tag_version=1",
- "sourceIcon": "https://www.bilibili.com/favicon.ico",
- "sourceName": "BILIBILI直播",
- "sourceUrl": "https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=4&cate_id=0&area_id=0&sort_type=sort_type_56&page=1&page_size=30&tag_version=1"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.pic-list pic-list-tag pic-list-shadow@li",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "img@lazysrc",
- "ruleLink": "a@href@js:\"https://m.umei.cc\"+result",
- "rulePubDate": "",
- "ruleTitle": "class.New-PL-tit@text",
- "sortUrl": "国内套图::https://m.umei.cc/p/gaoqing/cn/\n日韩套图::https://m.umei.cc/p/gaoqing/rihan/\n港台套图::https://m.umei.cc/p/gaoqing/gangtai/\n欧美套图::https://m.umei.cc/p/gaoqing/oumei/\n秀人模特::https://m.umei.cc/p/gaoqing/xiuren_VIP/",
- "sourceGroup": "🌫 美图",
- "sourceIcon": "http://i1.shaodiyejin.com/uploads/tu/201911/10133/743e1b888e_77.jpg",
- "sourceName": "优美图库-精品套图",
- "sourceUrl": "https://m.umei.cc/gaoqing/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.pic-list pic-list-2 pic-list-shadow@li",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "img@data-original",
- "ruleLink": "a@href@js:\"https://m.umei.cc\"+result",
- "rulePubDate": "",
- "ruleTitle": "class.New-PL-tit@text",
- "sortUrl": "美女壁纸::https://m.umei.cc/bizhitupian/meinvbizhi/\n养眼美女::https://m.umei.cc/bizhitupian/meinvbizhi/yangyanmeinv.htm\n动漫美女::https://m.umei.cc/bizhitupian/meinvbizhi/dongmammeinv.htm\n清纯美女::https://m.umei.cc/bizhitupian/meinvbizhi/qingchunmeinv.htm\n性感美女::https://m.umei.cc/bizhitupian/meinvbizhi/xingganmeinv.htm",
- "sourceGroup": "🌫 美图",
- "sourceIcon": "http://kr.shaodiyejin.com/file/2019/1226/small009e180a8900012cc63790c1d68d885c.jpg",
- "sourceName": "优美图库-美女壁纸",
- "sourceUrl": "https://m.umei.cc/bizhitupian/meinvbizhi/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.pic-list pic-list-2 pic-list-shadow@li",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "img@data-original",
- "ruleLink": "a@href@js:\"https://m.umei.cc\"+result",
- "rulePubDate": "",
- "ruleTitle": "class.New-PL-tit@text",
- "sortUrl": "美女图片::https://m.umei.cc/meinvtupian/\n性感美女::https://m.umei.cc/meinvtupian/xingganmeinv/\n丝袜美女::https://m.umei.cc/meinvtupian/siwameinv/\n美女写真::https://m.umei.cc/meinvtupian/meinvxiezhen/\n外国美女::https://m.umei.cc/meinvtupian/waiguomeinv/\n街拍美女::https://m.umei.cc/meinvtupian/jiepaimeinv/",
- "sourceGroup": "🌫 美图",
- "sourceIcon": "http://kr.shaodiyejin.com/file/2020/0503/small2711f2c54cbc99a400938c0347019fec.jpg",
- "sourceName": "优美图库-美女图片",
- "sourceUrl": "https://m.umei.cc/meinvtupian/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\r\n \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; BLA-AL00 Build/HUAWEIBLA-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/8.9 Mobile Safari/537.36\"\r\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.col-md-12.8@a&&class.col-md-12.7@a",
- "ruleContent": "<js>\nresult='<body style=\"background-color:#000\"><iframe src=\"'+baseUrl+'\" width=\"100%\" height=\"280px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
- "rulePubDate": "",
- "ruleTitle": "a@text",
- "sourceGroup": "🥂 娱乐",
- "sourceIcon": "https://p1.ssl.qhimg.com/dmsmty/1080_902_/t01633e643b500fbcbc.webp",
- "sourceName": "64码-港澳国外",
- "sourceUrl": "http://live.64ma.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\r\n \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; BLA-AL00 Build/HUAWEIBLA-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/8.9 Mobile Safari/537.36\"\r\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.col-md-12.2@a&&class.col-md-12.3@a&&class.col-md-12.4@a&&class.col-md-12.5@a&&class.col-md-12.6@a",
- "ruleContent": "<js>\nresult='<body style=\"background-color:#000\"><iframe src=\"'+baseUrl+'\" width=\"100%\" height=\"280px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
- "rulePubDate": "",
- "ruleTitle": "a@text",
- "sourceGroup": "🥂 娱乐",
- "sourceIcon": "http://tv.cn/favicon.ico",
- "sourceName": "64码-分类频道",
- "sourceUrl": "https://live.64ma.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\r\n \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; BLA-AL00 Build/HUAWEIBLA-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/8.9 Mobile Safari/537.36\"\r\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.col-md-12.9@a&&class.col-md-12.10@a&&class.col-md-12.11@a&&class.col-md-12.12@a&&class.col-md-12.13@a&&class.col-md-12.14@a&&class.col-md-12.15@a&&class.col-md-12.16@a&&class.col-md-12.17@a&&class.col-md-12.18@a&&class.col-md-12.19@a&&class.col-md-12.20@a&&class.col-md-12.21@a&&class.col-md-12.22@a&&class.col-md-12.23@a&&class.col-md-12.24@a&&class.col-md-12.25@a&&class.col-md-12.26@a&&class.col-md-12.27@a&&class.col-md-12.28@a&&class.col-md-12.29@a&&class.col-md-12.30@a&&class.col-md-12.31@a&&class.col-md-12.32@a&&class.col-md-12.33@a&&class.col-md-12.34@a&&class.col-md-12.35@a&&class.col-md-12.36@a&&class.col-md-12.37@a&&class.col-md-12.38@a&&class.col-md-12.39@a",
- "ruleContent": "<js>\nresult='<body style=\"background-color:#000\"><iframe src=\"'+baseUrl+'\" width=\"100%\" height=\"280px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
- "rulePubDate": "",
- "ruleTitle": "a@text",
- "sourceGroup": "🥂 娱乐",
- "sourceIcon": "http://www.ahtv.cn/t/1/3/images/indexlogo.png",
- "sourceName": "64码-地方台",
- "sourceUrl": "http://live.64ma.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\r\n \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 8.1.0; zh-cn; BLA-AL00 Build/HUAWEIBLA-AL00) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/8.9 Mobile Safari/537.36\"\r\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.col-md-12.0@a&&class.col-md-12.1@a",
- "ruleContent": "<js>\nresult='<body style=\"background-color:#000\"><iframe src=\"'+baseUrl+'\" width=\"100%\" height=\"280px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>'\n</js>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
- "rulePubDate": "",
- "ruleTitle": "a@text",
- "sourceGroup": "🥂 娱乐",
- "sourceIcon": "https://p1.ssl.qhimg.com/dmsmty/1080_1080_/t01da7b315b4828436d.webp",
- "sourceName": "64码-央视卫视",
- "sourceUrl": "https://live.64ma.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "@css:#masonry>div",
- "ruleContent": "<js>\nvar doc=org.jsoup.Jsoup.parse(result)\nString(doc.select(\".content\").html()).replace(/src/g,/xxxx/).replace(/data-original/g,\"src\")\n</js>",
- "ruleDescription": "",
- "ruleImage": "img@data-original",
- "ruleLink": "@css:a@href",
- "ruleNextPage": "@css:li.next>a@href",
- "rulePubDate": "",
- "ruleTitle": "@css:.item-link-text@text",
- "sortUrl": "小姐姐::https://a7a7.net/meitu/index.php/category/xjj/\n森罗财团::https://a7a7.net/meitu/index.php/category/slct/\nROSI::https://a7a7.net/meitu/index.php/category/rosi/\n第四印象::https://a7a7.net/meitu/index.php/category/disi/\nCosplay::https://a7a7.net/meitu/index.php/category/Cosplay/\n私房写真::https://a7a7.net/meitu/index.php/category/Portrait/",
- "sourceGroup": "美图",
- "sourceIcon": "https://a7a7.net/meitu/usr/themes/photograph/favicon.png",
- "sourceName": "阿七美图馆",
- "sourceUrl": "https://a7a7.net/meitu/index.php/category/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.list",
- "ruleContent": "",
- "ruleDescription": "<video poster=\"{{$.cover}}\" src=\"{{$.m3u8url}}\" width=\"100%\" controls=\"controls\" ></video>\n <p>{{$.title}}</p>",
- "ruleImage": "$.cover",
- "ruleLink": "$.playurl",
- "ruleNextPage": "$.title",
- "rulePubDate": "",
- "ruleTitle": "$.title",
- "sortUrl": "",
- "sourceGroup": "直播•温某某",
- "sourceIcon": "https://static.yizhibo.com/v2/h5/share/icons/apple-touch-icon-152x152.png",
- "sourceName": "一直播",
- "sourceUrl": "https://m.yizhibo.com/www/live/visitor_hot_list"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.content.u2||$.content.u1||$.content.u0||$.content.roomList",
- "ruleContent": "",
- "ruleDescription": "<video poster=\"{{$.pic}}\" src=\"http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8?_=\" width=\"100%\" controls=\"controls\" ></video>\n <p>{{$.userMood}}</p>",
- "ruleImage": "$.pic",
- "ruleLink": "http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8",
- "rulePubDate": "$.username",
- "ruleTitle": "$.userMood",
- "sortUrl": "推荐::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-guessyoulike.php&av=3.0&encpass=&logiuid=&type=&recid=&reft=5004\n热门::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=&reft=5004\n舞蹈::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=u1&reft=5004\n好声音::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=u0&reft=5004\n脱口秀::http://v.6.cn/coop/mobile/index.php?padapi=coop-mobile-getlivelistnew.php&av=3.0&encpass=&logiuid=&type=u2&reft=5004",
- "sourceGroup": "直播•温某某",
- "sourceIcon": "http://vr0.6rooms.com/v/d3/8746b065fc1d40d19144b38809698e46.png",
- "sourceName": "六间房",
- "sourceUrl": "v.6.cn"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "tag.article",
- "ruleContent": "",
- "ruleDescription": "class.entry-content@html",
- "ruleImage": "tag.img@src",
- "ruleLink": "class.entry-title@tag.a@href",
- "ruleNextPage": "class.wp-pagenavi@class.nextpostslink@href",
- "rulePubDate": "tag.div.2@text",
- "ruleTitle": "class.entry-title@text",
- "sortUrl": "首页::https://www.html5tricks.com/\nHTML5应用::https://www.html5tricks.com/category/html5-demo\nHTML5教程::https://www.html5tricks.com/category/html5-tutorials\nCSS3教程::https://www.html5tricks.com/category/css3-tutorials\njQuery插件::https://www.html5tricks.com/category/jquery-plugin\njQuery分页插件::https://www.html5tricks.com/category/jquery-plugin/jquery-paging\nHTML教程::https://www.html5tricks.com/category/html-tutorials\nCSS教程::https://www.html5tricks.com/category/css-tutorials",
- "sourceGroup": "自定义☆",
- "sourceIcon": "",
- "sourceName": "HTML5素材",
- "sourceUrl": "https://www.html5tricks.com/",
- "style": ".tricksButtons{\r\ntext-align:center;\r\n}\r\n.tricksButtons a,.read-more a {\r\nmargin-right: 16px;\r\nmargin-bottom: 10px;\r\ndisplay: inline-block;\r\ntext-transform: uppercase;\r\npadding: 1em 1.5em 0.75em;\r\nborder-radius: 2px;\r\nfont-weight: bold;\r\nborder: none;\r\ncolor: #fff !important;\r\ntext-decoration: none;\r\nfont-family: 'Open Sans Condensed',sans-serif;\r\nfont-size: 14px;\r\nline-height: 1;\r\ncursor: pointer;\r\n}\r\n.tricksButtons a:hover,.read-more a:hover{\r\nopacity:0.9;\r\n}\r\n.tricksButtons .demo{\r\nfont-size: 18px;\r\npadding: 1.2em 2.5em 1em;\r\nbackground-color: #a4cf6c;\r\nbox-shadow: 0 0 5px #a4cf6c inset, 0 1px 1px #eee;\r\n}\r\n.tricksButtons .download{\r\nmargin-right:0;\r\nfont-size: 18px;\r\npadding: 1.2em 2.5em 1em;\r\nbackground-color: #93d0ea;\r\nbox-shadow: 0 0 5px #8fcde7 inset, 0 1px 1px #eee;\r\n}\r\n\r\n.tricksButtons .disabled{\r\nfont-size: 18px;\r\npadding: 1.2em 2.5em 1em;\r\nbackground-color: #999;\r\nbox-shadow: 0 0 5px #999 inset, 0 1px 1px #eee;\r\ncursor: not-allowed;\r\n}\r\n\r\n.read-more{\r\ntext-align:center\r\n}\r\n.read-more a{\r\nfont-size: 18px;\r\npadding: 1.2em 2.5em 1em;\r\nbackground-color: #a5d16d;\r\nbox-shadow: 0 0 5px #a4cf6c inset, 0 1px 1px #eee;\r\n}\r\n\r\n.contactItem{ float:right;margin-left:70px;text-align:center}\r\n.contactItem .txt{font-weight:bold;font-size:16px;text-align:center;padding:3px 0}\r\n.contactItem a{ text-decoration:none;color:#6a6a6a}\r\nimg{width:100%;height:auto}"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@class=\"main-content\"]/div[2]/div",
- "ruleContent": ".main-body@html",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "//*[@class=\"pin-coat\"]/a[1]/@href",
- "ruleNextPage": "//div[@class=\"main-content\"]/div[4]/a[@title=\"下一页\"]/@href",
- "rulePubDate": "//div/div/span/span/text()",
- "ruleTitle": "//div/a/span/text()",
- "sortUrl": "首页::http://www.jueduifucong.com/\ncosplay::http://www.jueduifucong.com/cos\n二次元::http://www.jueduifucong.com/ecy\n写真::http://www.jueduifucong.com/xz\n自拍::http://www.jueduifucong.com/zp\n套图::http://www.jueduifucong.com/tag/tt\n性感::http://www.jueduifucong.com/tag/sexy\n美腿::http://www.jueduifucong.com/tag/mt\n少女::http://www.jueduifucong.com/tag/sn\n丝袜::http://www.jueduifucong.com/tag/sw\n内衣::http://www.jueduifucong.com/tag/ny\n胖次::http://www.jueduifucong.com/tag/pc\n巨乳::http://www.jueduifucong.com/tag/ru\n果体::http://www.jueduifucong.com/tag/luo\n制服::http://www.jueduifucong.com/tag/zf\n御姐::http://www.jueduifucong.com/tag/yu\n日系::http://www.jueduifucong.com/tag/jp\n臀控::http://www.jueduifucong.com/tag/tk\n校服::http://www.jueduifucong.com/tag/sf\n萝莉::http://www.jueduifucong.com/tag/loli",
- "sourceGroup": "福利",
- "sourceIcon": "https://android-artworks.25pp.com/fs08/2016/06/09/4/1_6f8d82c3c8a0cc7722c2fb4959090044_con_130x130.png",
- "sourceName": "绝对服从",
- "sourceUrl": "http://www.jueduifucong.com/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//*[@class=\"post-body clearfix\"]/article\n|| //*[@class=\"classic-list clearfix\"]",
- "ruleContent": "//*[@class=\"post-body clearfix\"]",
- "ruleDescription": "",
- "ruleImage": "//*[@id=\"article\"]/div[1]/a/img/@src",
- "ruleLink": "//*[@id=\"article\"]/div[2]/h3/a/@href",
- "ruleNextPage": "//div[@class=\"pagination clearfix\"]/a[-2]/@href || class.pagination clearfix@tag.a.-2@href || text.下一页@href",
- "rulePubDate": "//*[@id=\"article\"]/div[2]/div[1]/span[2]/a/text()",
- "ruleTitle": "//*[@id=\"article\"]/div[2]/h3/a/text()",
- "sortUrl": "今日推送::http://hackernews.cc/archives/category/今日推送\n国际动态::http://hackernews.cc/archives/category/国际动态\n漏洞事件::http://hackernews.cc/archives/category/漏洞事件\n黑客事件::http://hackernews.cc/archives/category/黑客事件\n数据泄露::http://hackernews.cc/archives/category/数据泄露\n推荐阅读::http://hackernews.cc/archives/category/推荐阅读",
- "sourceGroup": "黑客新闻",
- "sourceIcon": "http://hackernews.cc/wp-includes/images/HackerNews_w.png",
- "sourceName": "Hacker News",
- "sourceUrl": "http://hackernews.cc"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.archive-row@li",
- "ruleContent": "",
- "ruleImage": "tag.img@data-src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "",
- "ruleTitle": "tag.h2@text",
- "sortUrl": "COS小姐姐::http://www.huapuzi.com/cos/cosjj\nCOS性感套图::http://www.huapuzi.com/cos/cosxg\nCOS绅士向::http://www.huapuzi.com/cos/cosss\n写真套图::http://www.huapuzi.com/xztt\n机构写真::http://www.huapuzi.com/jigouxiezhen\n绅士本子::http://www.huapuzi.com/ssbz",
- "sourceIcon": "http://www.huapuzi.com/wp-content/uploads/2020/07/cropped-dd_%E5%89%AF%E6%9C%AC-1-192x192.png",
- "sourceName": "花铺子",
- "sourceUrl": "http://www.huapuzi.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.wap_home_album_list_container@li&&class.wap_font_list@li",
- "ruleContent": "all",
- "ruleImage": "img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "page",
- "rulePubDate": "",
- "ruleTitle": "h5@text||tag.a@title",
- "sortUrl": "首页::http://m.fonts.net.cn\n幼圆::http://m.fonts.net.cn/fonts-zh/tag-youyuan-{{page}}.html\n行书::http://m.fonts.net.cn/fonts-zh/tag-xingshu-{{page}}.html\n草书::http://m.fonts.net.cn/fonts-zh/tag-caoshu-{{page}}.html\n隶书::http://m.fonts.net.cn/fonts-zh/tag-lishu-{{page}}.html\n行楷::http://m.fonts.net.cn/fonts-zh/tag-xingkai-{{page}}.html\n篆体::http://m.fonts.net.cn/fonts-zh/tag-zhuanti-{{page}}.html\n黑体::http://m.fonts.net.cn/fonts-zh/tag-heiti-{{page}}.html\n广告::http://m.fonts.net.cn/fonts-zh/tag-guanggao-{{page}}.html\n宋体::http://m.fonts.net.cn/fonts-zh/tag-songti-{{page}}.html\n楷体::http://m.fonts.net.cn/fonts-zh/tag-kaiti-{{page}}.html\n魏碑::http://m.fonts.net.cn/fonts-zh/tag-weibei-{{page}}.html\n毛笔::http://m.fonts.net.cn/fonts-zh/tag-maobi-{{page}}.html\n手写::http://m.fonts.net.cn/fonts-zh/tag-shouxie2-{{page}}.html\n彩云::http://m.fonts.net.cn/fonts-zh/tag-caiyun-{{page}}.html\n卡通::http://m.fonts.net.cn/fonts-zh/tag-katong2-{{page}}.html\n综艺::http://m.fonts.net.cn/fonts-zh/tag-zhongyi-{{page}}.html\n书法::http://m.fonts.net.cn/fonts-zh/tag-shufa2-{{page}}.html\n新魏::http://m.fonts.net.cn/fonts-zh/tag-xinwei-{{page}}.html\n仿宋::http://m.fonts.net.cn/fonts-zh/tag-fangsong-{{page}}.html\n大黑::http://m.fonts.net.cn/fonts-zh/tag-dahei-{{page}}.html\n娃娃::http://m.fonts.net.cn/fonts-zh/tag-wawa-{{page}}.html\n钢笔::http://m.fonts.net.cn/fonts-zh/tag-gangbi-{{page}}.html\n琥珀::http://m.fonts.net.cn/fonts-zh/tag-hupo-{{page}}.html\n细黑::http://m.fonts.net.cn/fonts-zh/tag-xihei-{{page}}.html\n古印::http://m.fonts.net.cn/fonts-zh/tag-guyin-{{page}}.html\n空心::http://m.fonts.net.cn/fonts-zh/tag-kongxin-{{page}}.html\n姚体::http://m.fonts.net.cn/fonts-zh/tag-yaoti-{{page}}.html\n颜楷::http://m.fonts.net.cn/fonts-zh/tag-yankai-{{page}}.html\n海报::http://m.fonts.net.cn/fonts-zh/tag-haibao-{{page}}.html\n明体::http://m.fonts.net.cn/fonts-zh/tag-mingti-{{page}}.html\n瘦金体::http://m.fonts.net.cn/fonts-zh/tag-shoujin-{{page}}.html\n方正字体::http://m.fonts.net.cn/fonts-zh/tag-fangzheng-{{page}}.html\n汉仪字体::http://m.fonts.net.cn/fonts-zh/tag-hanyi-{{page}}.html\n腾祥字体::http://m.fonts.net.cn/fonts-zh/tag-tengxiang-{{page}}.html\nAa字体::http://m.fonts.net.cn/fonts-zh/tag-Aafont-{{page}}.html\n新蒂字体::http://m.fonts.net.cn/fonts-zh/tag-xindi-{{page}}.html\n锐字家族::http://m.fonts.net.cn/fonts-zh/tag-ruizi-{{page}}.html\n字心坊::http://m.fonts.net.cn/fonts-zh/tag-zixinfang-{{page}}.html\n造字工房::http://m.fonts.net.cn/fonts-zh/tag-zaozigongfang-{{page}}.html\n书法家字体::http://m.fonts.net.cn/fonts-zh/tag-shufajia-{{page}}.html\n上首造字::http://m.fonts.net.cn/fonts-zh/tag-shangshou-{{page}}.html\n逐浪字体::http://m.fonts.net.cn/fonts-zh/tag-zhulang-{{page}}.html\n苏新诗字体::http://m.fonts.net.cn/fonts-zh/tag-suxinshi-{{page}}.html\n经典字体::http://m.fonts.net.cn/fonts-zh/tag-jingdian-{{page}}.html\n创艺字体::http://m.fonts.net.cn/fonts-zh/tag-chuangyi-{{page}}.html\n中国龙字体::http://m.fonts.net.cn/fonts-zh/tag-zhongguolong-{{page}}.html\n金桥字体::http://m.fonts.net.cn/fonts-zh/tag-jinqiao-{{page}}.html\n金梅字体::http://m.fonts.net.cn/fonts-zh/tag-jinmei-{{page}}.html\n华康字体::http://m.fonts.net.cn/fonts-zh/tag-huakang-{{page}}.html\n汉鼎字体::http://m.fonts.net.cn/fonts-zh/tag-handing-{{page}}.html\n迷你字体::http://m.fonts.net.cn/fonts-zh/tag-mini-{{page}}.html\n华文字体::http://m.fonts.net.cn/fonts-zh/tag-huawen-{{page}}.html\n超世纪字体::http://m.fonts.net.cn/fonts-zh/tag-chaoshiji-{{page}}.html\n长城字体::http://m.fonts.net.cn/fonts-zh/tag-changcheng-{{page}}.html\n博洋字体::http://m.fonts.net.cn/fonts-zh/tag-boyangshouxie-{{page}}.html\n书体坊字体::http://m.fonts.net.cn/fonts-zh/tag-shufafang-{{page}}.html\n微软字体::http://m.fonts.net.cn/fonts-zh/tag-weiruan-{{page}}.html\n三极字库::http://m.fonts.net.cn/fonts-zh/tag-sanji-{{page}}.html\n蒙纳字体::http://m.fonts.net.cn/fonts-zh/tag-mengna-{{page}}.html\n文鼎字体::http://m.fonts.net.cn/fonts-zh/tag-wending-{{page}}.html\n全真字体::http://m.fonts.net.cn/fonts-zh/tag-quanzhen-{{page}}.html\n超研泽字体::http://m.fonts.net.cn/fonts-zh/tag-chaoyanze-{{page}}.html\n张海山字体::http://m.fonts.net.cn/fonts-zh/tag-zhanghaishan-{{page}}.html\n文泉驿字体::http://m.fonts.net.cn/fonts-zh/tag-wenquanyi-{{page}}.html\n文悦字体::http://m.fonts.net.cn/fonts-zh/tag-wenyue-{{page}}.html\n思源字体::http://m.fonts.net.cn/fonts-zh/tag-siyuan-{{page}}.html\n田氏字体::http://m.fonts.net.cn/fonts-zh/tag-tianshi-{{page}}.html\n北师大字体::http://m.fonts.net.cn/fonts-zh/tag-beishida-{{page}}.html\n雅坊字体::http://m.fonts.net.cn/fonts-zh/tag-yafang-{{page}}.html\n富汉通字体::http://m.fonts.net.cn/fonts-zh/tag-fuhantong-{{page}}.html\n四通利方字体::http://m.fonts.net.cn/fonts-zh/tag-sitonglifang-{{page}}.html\n白舟字体::http://m.fonts.net.cn/fonts-zh/tag-baizhou-{{page}}.html\n昆仑字体::http://m.fonts.net.cn/fonts-zh/tag-kunlun-{{page}}.html\n王汉宗字体::http://m.fonts.net.cn/fonts-zh/tag-wanghanzong-{{page}}.html\n日系中文::http://m.fonts.net.cn/fonts-zh/tag-rixi-{{page}}.html\n吉页字体::http://m.fonts.net.cn/fonts-zh/tag-jiyeziku-{{page}}.html\n刻石录字体::http://m.fonts.net.cn/fonts-zh/tag-keshilu-{{page}}.html\n喜鹊造字::http://m.fonts.net.cn/fonts-zh/tag-xique-{{page}}.html\n汉标字库::http://m.fonts.net.cn/fonts-zh/tag-hanbiao-{{page}}.html\n其它字体::http://m.fonts.net.cn/fonts-zh/tag-qitaziku-{{page}}.html\nA::http://m.fonts.net.cn/fonts-zh/letter-a-{{page}}.html\nB::http://m.fonts.net.cn/fonts-zh/letter-b-{{page}}.html\nC::http://m.fonts.net.cn/fonts-zh/letter-c-{{page}}.html\nD::http://m.fonts.net.cn/fonts-zh/letter-d-{{page}}.html\nE::http://m.fonts.net.cn/fonts-zh/letter-e-{{page}}.html\nF::http://m.fonts.net.cn/fonts-zh/letter-f-{{page}}.html\nG::http://m.fonts.net.cn/fonts-zh/letter-g-{{page}}.html\nH::http://m.fonts.net.cn/fonts-zh/letter-h-{{page}}.html\nI::http://m.fonts.net.cn/fonts-zh/letter-i-{{page}}.html\nJ::http://m.fonts.net.cn/fonts-zh/letter-j-{{page}}.html\nK::http://m.fonts.net.cn/fonts-zh/letter-k-{{page}}.html\nL::http://m.fonts.net.cn/fonts-zh/letter-l-{{page}}.html\nM::http://m.fonts.net.cn/fonts-zh/letter-m-{{page}}.html\nN::http://m.fonts.net.cn/fonts-zh/letter-n-{{page}}.html\nO::http://m.fonts.net.cn/fonts-zh/letter-o-{{page}}.html\nP::http://m.fonts.net.cn/fonts-zh/letter-p-{{page}}.html\nQ::http://m.fonts.net.cn/fonts-zh/letter-q-{{page}}.html\nR::http://m.fonts.net.cn/fonts-zh/letter-r-{{page}}.html\nS::http://m.fonts.net.cn/fonts-zh/letter-s-{{page}}.html\nT::http://m.fonts.net.cn/fonts-zh/letter-t-{{page}}.html\nU::http://m.fonts.net.cn/fonts-zh/letter-u-{{page}}.html\nV::http://m.fonts.net.cn/fonts-zh/letter-v-{{page}}.html\nW::http://m.fonts.net.cn/fonts-zh/letter-w-{{page}}.html\nX::http://m.fonts.net.cn/fonts-zh/letter-x-{{page}}.html\nY::http://m.fonts.net.cn/fonts-zh/letter-y-{{page}}.html\nZ::http://m.fonts.net.cn/fonts-zh/letter-z-{{page}}.html\n其它::http://m.fonts.net.cn/fonts-zh/letter-else-{{page}}.html",
- "sourceIcon": "https://img04.sogoucdn.com/v2/thumb/crop/xy/ai/x/0/y/0/w/200/h/200/iw/70/ih/70/t/0/ir/3/retype_exclude_gif/ext/auto/q/75?t=2&appid=200965&url=http%3A%2F%2Fimg03.sogoucdn.com%2Fapp%2Fa%2F10010016%2F070598442766ca845f6017ac4eb5a4bc&sign=dd6435fdfdc768ce466aa7bf27ec525c",
- "sourceName": "字体天下",
- "sourceUrl": "http://m.fonts.net.cn/fonts-zh/tag-lishu-1.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.news_tlist_item",
- "ruleLink": "tag.a@href",
- "rulePubDate": "class.n_item_date@text",
- "ruleTitle": "tag.a@text",
- "sortUrl": "",
- "sourceIcon": "",
- "sourceName": "博客园IT新闻",
- "sourceUrl": "https://news.cnblogs.com/n/date?date="
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "id.article-list@ul@li",
- "ruleContent": "class.article-content clearfix@html",
- "ruleLink": "a@href",
- "ruleTitle": "a@text",
- "sourceGroup": "💠 其他",
- "sourceIcon": "https://www.yaozuopan.top/usr/themes/GreenGrapes/favicon.ico",
- "sourceName": "tracker",
- "sourceUrl": "https://www.yaozuopan.top/index.php/11.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "html",
- "ruleContent": "<js>\norg.jsoup.Jsoup.parse(result).select(\"html\").html()\n</js>##<div class=\"banquan\">[\\s\\S]*</div>",
- "ruleImage": "@js:'http://img.alicdn.com/imgextra/i1/0/O1CN01eobjjy1K4sdBtNtzu_!!0-rate.jpg'",
- "ruleLink": "@js:result=baseUrl",
- "rulePubDate": "",
- "ruleTitle": "title@text",
- "sortUrl": "",
- "sourceGroup": "",
- "sourceIcon": "https://img.alicdn.com/tfs/TB1qpwlQXXXXXcCXXXXXXXXXXXX-256-256.png",
- "sourceName": "淘宝买家秀",
- "sourceUrl": "http://www.zheng800.com/xiu/",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "HTML::https://www.w3school.com.cn/html/index.asp\nHTML5::https://www.w3school.com.cn/html5/index.asp\nXHTML::https://www.w3school.com.cn/xhtml/index.asp\nCSS::https://www.w3school.com.cn/css/index.asp\nCSS3::https://www.w3school.com.cn/css3/index.asp\nTCP/IP::https://www.w3school.com.cn/tcpip/index.asp\nJavaScript::https://www.w3school.com.cn/js/index.asp\nHTML DOM::https://www.w3school.com.cn/htmldom/index.asp\njQuery::https://www.w3school.com.cn/jquery/index.asp\njQuery Mobile::https://www.w3school.com.cn/jquerymobile/index.asp\nAJAX::https://www.w3school.com.cn/ajax/index.asp\nJSON::https://www.w3school.com.cn/json/index.asp\nDHTML::https://www.w3school.com.cn/dhtml/index.asp\nE4X::https://www.w3school.com.cn/e4x/index.asp\nWMLScript::https://www.w3school.com.cn/wmlscript/index.asp\nPHP::https://www.w3school.com.cn/php/index.asp\nSQL::https://www.w3school.com.cn/sql/index.asp\nASP::https://www.w3school.com.cn/asp/index.asp\nADO::https://www.w3school.com.cn/ado/index.asp\nASP.NET::https://www.w3school.com.cn/aspnet/index.asp\nVBScript::https://www.w3school.com.cn/vbscript/index.asp\nXML::https://www.w3school.com.cn/xml/index.asp\nDTD::https://www.w3school.com.cn/dtd/index.asp\nXML DOM::https://www.w3school.com.cn/xmldom/index.asp\nXSL::https://www.w3school.com.cn/xsl/xsl_languages.asp\nXSLT::https://www.w3school.com.cn/xsl/index.asp\nXSL-FO::https://www.w3school.com.cn/xslfo/index.asp\nXPath::https://www.w3school.com.cn/xpath/index.asp\nXQuery::https://www.w3school.com.cn/xquery/index.asp\nXLink&XPointer::https://www.w3school.com.cn/xlink/index.asp\nSchema::https://www.w3school.com.cn/schema/index.asp\nXForms::https://www.w3school.com.cn/xforms/index.asp\nSVG::https://www.w3school.com.cn/svg/index.asp\nWeb Services::https://www.w3school.com.cn/webservices/index.asp\nWSDL::https://www.w3school.com.cn/wsdl/index.asp\nSOAP::https://www.w3school.com.cn/soap/index.asp\nRSS::https://www.w3school.com.cn/rss/index.asp\nRDF::https://www.w3school.com.cn/rdf/index.asp\n网站构建::https://www.w3school.com.cn/site/index.asp\n万维网联盟::https://www.w3school.com.cn/w3c/index.asp\n浏览器信息::https://www.w3school.com.cn/browsers/index.asp\n网站品质::https://www.w3school.com.cn/quality/index.asp\n语义网::https://www.w3school.com.cn/semweb/index.asp\n职业规划::https://www.w3school.com.cn/careers/index.asp\n网站主机::https://www.w3school.com.cn/hosting/index.asp\n网络媒体::https://www.w3school.com.cn/media/index.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\n完整",
- "sourceUrl": "https://www.w3school.com.cn/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "JavaScript::https://www.w3school.com.cn/js/index.asp\nHTML DOM::https://www.w3school.com.cn/htmldom/index.asp\njQuery::https://www.w3school.com.cn/jquery/index.asp\njQuery Mobile::https://www.w3school.com.cn/jquerymobile/index.asp\nAJAX::https://www.w3school.com.cn/ajax/index.asp\nJSON::https://www.w3school.com.cn/json/index.asp\nDHTML::https://www.w3school.com.cn/dhtml/index.asp\nE4X::https://www.w3school.com.cn/e4x/index.asp\nWMLScript::https://www.w3school.com.cn/wmlscript/index.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\n浏览器脚本",
- "sourceUrl": "https://www.w3school.com.cn/js/index.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li[@class=\"currentLink\"]/../li",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//li/a/@href",
- "ruleTitle": "//li/a/text()",
- "sortUrl": "Python::https://www.w3school.com.cn/python/index.asp\nPython Numpy::https://www.w3school.com.cn/python/numpy_intro.asp\n机器学习::https://www.w3school.com.cn/python/python_ml_getting_started.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\n编程",
- "sourceUrl": "https://www.w3school.com.cn/python/index.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "XML::https://www.w3school.com.cn/xml/index.asp\nDTD::https://www.w3school.com.cn/dtd/index.asp\nXML DOM::https://www.w3school.com.cn/xmldom/index.asp\nXSL::https://www.w3school.com.cn/xsl/xsl_languages.asp\nXSLT::https://www.w3school.com.cn/xsl/index.asp\nXSL-FO::https://www.w3school.com.cn/xslfo/index.asp\nXPath::https://www.w3school.com.cn/xpath/index.asp\nXQuery::https://www.w3school.com.cn/xquery/index.asp\nXLink&XPointer::https://www.w3school.com.cn/xlink/index.asp\nSchema::https://www.w3school.com.cn/schema/index.asp\nXForms::https://www.w3school.com.cn/xforms/index.asp\nSVG::https://www.w3school.com.cn/svg/index.asp",
- "sourceGroup": "W3shool",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\nXML教程",
- "sourceUrl": "https://www.w3school.com.cn/xml/index.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "Web Services::https://www.w3school.com.cn/webservices/index.asp\nWSDL::https://www.w3school.com.cn/wsdl/index.asp\nSOAP::https://www.w3school.com.cn/soap/index.asp\nRSS::https://www.w3school.com.cn/rss/index.asp\nRDF::https://www.w3school.com.cn/rdf/index.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\nWeb Services",
- "sourceUrl": "https://www.w3school.com.cn/php/webservices.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "网站构建::https://www.w3school.com.cn/site/index.asp\n万维网联盟::https://www.w3school.com.cn/w3c/index.asp\n浏览器信息::https://www.w3school.com.cn/browsers/index.asp\n网站品质::https://www.w3school.com.cn/quality/index.asp\n语义网::https://www.w3school.com.cn/semweb/index.asp\n职业规划::https://www.w3school.com.cn/careers/index.asp\n网站主机::https://www.w3school.com.cn/hosting/index.asp\n网络媒体::https://www.w3school.com.cn/media/index.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\n建站手册",
- "sourceUrl": "https://www.w3school.com.cn/site/index.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
- "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "PHP::https://www.w3school.com.cn/php/index.asp\nSQL::https://www.w3school.com.cn/sql/index.asp\nASP::https://www.w3school.com.cn/asp/index.asp\nADO::https://www.w3school.com.cn/ado/index.asp\nASP.NET::https://www.w3school.com.cn/aspnet/index.asp\nVBScript::https://www.w3school.com.cn/vbscript/index.asp",
- "sourceGroup": "W3school",
- "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
- "sourceName": "W3school\n服务器脚本",
- "sourceUrl": "https://www.w3school.com.cn/php/index.asp"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "article",
- "ruleDescription": "",
- "ruleImage": "img@data-src",
- "ruleLink": "tag.a.1@href",
- "ruleNextPage": "class.next-page@tag.a@href",
- "rulePubDate": "class.float-right@text",
- "ruleTitle": "tag.a.1@text",
- "sortUrl": " 安卓::https://www.sixyin.com/android/\n 电脑::https://www.sixyin.com/windows/\n 苹果::https://www.sixyin.com/mac/\n Linux::https://www.sixyin.com/linux/\n 原创::https://www.sixyin.com/original/",
- "sourceGroup": "🗂️ 软件",
- "sourceIcon": "http://www.sixyin.com/wp-content/uploads/2020/07/1595643570-favicon.png",
- "sourceName": "六音软件",
- "sourceUrl": "https://www.sixyin.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "Python::https://www.runoob.com/python3/python3-tutorial.html\nPython2.x::https://www.runoob.com/python/python-tutorial.html\nLinux::https://www.runoob.com/linux/linux-tutorial.html\nDocker::https://www.runoob.com/docker/docker-tutorial.html\nRuby::https://www.runoob.com/ruby/ruby-tutorial.html\nJava::https://www.runoob.com/java/java-tutorial.html\nC::https://www.runoob.com/c/c-tutorial.html\nC++::https://www.runoob.com/cplusplus/cpp-tutorial.html\nPerl::https://www.runoob.com/perl/perl-tutorial.html\nServlet::https://www.runoob.com/servlet/servlet-tutorial.html\nJSP::https://www.runoob.com/jsp/jsp-tutorial.html\nLua::https://www.runoob.com/lua/lua-tutorial.html\nRust::https://www.runoob.com/rust/rust-tutorial.html\nR::https://www.runoob.com/r/r-tutorial.html\nScala::https://www.runoob.com/scala/scala-tutorial.html\nGo::https://www.runoob.com/go/go-tutorial.html\nPHP::https://www.runoob.com/php/php-tutorial.html\nDjango::https://www.runoob.com/django/django-tutorial.html\nZookeeper::https://www.runoob.com/w3cnote/zookeeper-tutorial.html\n设计模式 https://www.runoob.com/design-pattern/design-pattern-tutorial.html\n正则表达式 https://www.runoob.com/regexp/regexp-tutorial.html\nMaven::https://www.runoob.com/maven/maven-tutorial.html\nNumPy::https://www.runoob.com/numpy/numpy-tutorial.html\nVerilog::https://www.runoob.com/w3cnote/verilog-tutorial.html\nASP::https://www.runoob.com/asp/asp-tutorial.html\nAppML::https://www.runoob.com/appml/appml-tutorial.html\nVBScript::https://www.runoob.com/vbscript/vbscript-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-服务端",
- "sourceUrl": "https://www.runoob.com/cate3"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "SQL::https://www.runoob.com/sql/sql-tutorial.html\nMysql::https://www.runoob.com/mysql/mysql-tutorial.html\nPostgreSQL::https://www.runoob.com/postgresql/postgresql-tutorial.html\nSQLite::https://www.runoob.com/sqlite/sqlite-tutorial.html\nMongoDB::https://www.runoob.com/mongodb/mongodb-tutorial.html\nRedis::https://www.runoob.com/redis/redis-tutorial.html\nMemcached::https://www.runoob.com/Memcached/Memcached-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-数据库",
- "sourceUrl": "https://www.runoob.com/cate4"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "Android::https://www.runoob.com/w3cnote/android-tutorial-intro.html\nSwift::https://www.runoob.com/swift/swift-tutorial.html\njQueryMobile::https://www.runoob.com/jquerymobile/jquerymobile-tutorial.html\nionic::https://www.runoob.com/ionic/ionic-tutorial.html\nKotlin::https://www.runoob.com/kotlin/kotlin-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-移动端",
- "sourceUrl": "https://www.runoob.com/cate5"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "XML::https://www.runoob.com/xml/xml-tutorial.html\nDTD::https://www.runoob.com/dtd/dtd-tutorial.html\nXMLDOM::https://www.runoob.com/dom/dom-tutorial.html\nXSLT::https://www.runoob.com/xsl/xsl-tutorial.html\nXPath::https://www.runoob.com/xpath/xpath-tutorial.html\nXQuery::https://www.runoob.com/xquery/xquery-tutorial.html\nXLink::https://www.runoob.com/xlink/xlink-tutorial.html\nXPointer::https://www.runoob.com/xlink/xlink-tutorial.html\nXMLSchema::https://www.runoob.com/schema/schema-tutorial.html\nXSL-FO::https://www.runoob.com/xslfo/xslfo-tutorial.html\nSVG::https://www.runoob.com/svg/svg-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-XML 教程",
- "sourceUrl": "https://www.runoob.com/#cate6"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "ASP.NET::https://www.runoob.com/aspnet/aspnet-tutorial.html\nC#::https://www.runoob.com/csharp/csharp-tutorial.html\nWebPages::https://www.runoob.com/aspnet/webpages-intro.html\nRazor::https://www.runoob.com/aspnet/razor-intro.html\nMVC::https://www.runoob.com/aspnet/mvc-intro.html\nWebForms::https://www.runoob.com/aspnet/aspnet-intro.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-ASP.NET",
- "sourceUrl": "https://www.runoob.com/#cate7"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "Eclipse::https://www.runoob.com/eclipse/eclipse-tutorial.html\nGit::https://www.runoob.com/git/git-tutorial.html\nSvn::https://www.runoob.com/svn/svn-tutorial.html\nMarkdown::https://www.runoob.com/markdown/md-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-开发工具",
- "sourceUrl": "https://www.runoob.com/#cate9"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "HTTP::https://www.runoob.com/http/http-tutorial.html\n网站建设指南::https://www.runoob.com/web/web-buildingprimer.html\n浏览器信息::http://www.runoob.com/browsers/browser-information.html\n网站主机教程::http://www.runoob.com/hosting/hosting-tutorial.html\nTCP/IP::https://www.runoob.com/tcpip/tcpip-tutorial.html\nW3C::https://www.runoob.com/w3c/w3c-tutorial.html\n网站品质::https://www.runoob.com/quality/quality-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-网站建设",
- "sourceUrl": "https://www.runoob.com/#cate10"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.excerpt",
- "ruleContent": "class.article-content@html##未经允许不得转载.*",
- "ruleImage": "img@data-original",
- "ruleLink": "h2@a@href",
- "ruleNextPage": "page",
- "rulePubDate": "class.time@text##.*发布于",
- "ruleTitle": "h2@a@text",
- "sourceIcon": "",
- "sourceName": "宅男女神",
- "sourceUrl": "https://openys.cn/category/znns/page/{{page}}",
- "style": "img{width:100%; height:auto;}\nvideo{width:100%; height:auto;}"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "@js:\nvar x = baseUrl.substr(35);\njava.getElements(\"@@class.menu.\"+x+\"@a\");",
- "ruleLink": "href",
- "rulePubDate": "",
- "ruleTitle": "text",
- "sortUrl": "字体转换/字体预览::https://www.qqxiuzi.cn/daohang.htm?0\n非主流字体转换/字效生成::https://www.qqxiuzi.cn/daohang.htm?1\n文字在线工具::https://www.qqxiuzi.cn/daohang.htm?2\n汉字/汉语工具书::https://www.qqxiuzi.cn/daohang.htm?3\n字符编码解码::https://www.qqxiuzi.cn/daohang.htm?4\n字符加密解密::https://www.qqxiuzi.cn/daohang.htm?5\n信息/资料::https://www.qqxiuzi.cn/daohang.htm?6\n频道/栏目::https://www.qqxiuzi.cn/daohang.htm?7\nZRQR付费::https://www.qqxiuzi.cn/daohang.htm?8",
- "sourceIcon": "https://www.qqxiuzi.cn/favicon.ico",
- "sourceName": "千千秀字",
- "sourceUrl": "https://www.qqxiuzi.cn/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "tag.ul@class.list_d",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "text.下一页@href",
- "ruleTitle": "tag.dt@text",
- "sortUrl": "新闻::http://m.aiboy.cc/list-6-1.html\n故事::http://m.aiboy.cc/list-21-1.html\n影视::http://m.aiboy.cc/list-13-1.html\n小说::http://m.aiboy.cc/list-7-1.html\n图片::http://m.aiboy.cc/list-14-1.html\n运动::http://m.aiboy.cc/list-22-1.html\n时尚::http://m.aiboy.cc/list-23-1.html\n明星::http://m.aiboy.cc/list-11-1.html\n话题::http://m.aiboy.cc/list-20-1.html\n防艾::http://m.aiboy.cc/list-40-1.html",
- "sourceIcon": "http://m.aiboy.cc/favicon.ico",
- "sourceName": "男孩",
- "sourceUrl": "http://m.aiboy.cc/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": ".book_top_Nav@tag.li||.fenlei@tag.li||.book_list",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a@href",
- "rulePubDate": "tag.div.4@text",
- "ruleTitle": "tag.a@text||text##\\s.*",
- "sortUrl": "首页::https://m.sfacg.com/\n人气::https://m.sfacg.com/rank/original.html\n畅销::https://m.sfacg.com/rank/sale.html\n新书::https://m.sfacg.com/rank/new.html\n日轻::https://m.sfacg.com/rank/jp.html\n收藏::https://m.sfacg.com/rank/bm.html\n月票::https://m.sfacg.com/rank/ticket.html",
- "sourceGroup": "📖 阅读",
- "sourceIcon": "https://mm.sfacg.com/images/logo.gif",
- "sourceName": "SF轻小说",
- "sourceUrl": "https://m.sfacg.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "html",
- "ruleContent": "",
- "ruleImage": "@js:'http://iyy.5ay.xyz/moban/default/template/img/load.gif'",
- "ruleLink": "@js:result=baseUrl",
- "rulePubDate": "",
- "ruleTitle": "title@text",
- "sortUrl": "浏览器::http://xianyui.icu/index.html\n来漫画::https://www.laimanhua.com\nvip漫画::https://m.svipmh.com\n可乐漫画::https://www.kelemh.com\n皮皮漫画::https://www.ppmh.cc\ncc漫画::http://m.ccdm15.com\n看漫画网::https://www.mh-mh.com\n梦幻漫画::https://www.mymhh.com\n顶通漫画::http://www.2kande.com\n优惠漫画::http://m.seeym.net\n星星漫画::https://www.77mh.vip\noh漫画::https://www.ohmanhua.com\n爱美腿漫画::https://m.imitui.com\n古风漫画::https://m.gufengmh8.com\n漫画牛::https://m.manhuaniu.com\n腐漫画::http://mh.fmhua.com\n土漫画::https://tuhao456.com\n漫画吧::http://www.manhuaba.cc\n百年漫画::https://m.bnmanhua.com\n快看漫画::https://api.kkmh.com\n腾讯漫画::https://m.ac.qq.com\n不卡漫画::http://www.buka.cn\n武侠漫画::https://m.wuxiamh.com\n酷爱漫画::https://www.kuimh.com\n百年漫画::https://m.xialashimanhua.com\n6漫画::http://www.6mh7.com",
- "sourceGroup": "自己在分类添加你喜欢的漫画链接即可\n格式 网站名字::网站连接",
- "sourceIcon": "",
- "sourceName": "25漫画网站集合~浏览器看漫画",
- "sourceUrl": "http://manhua.cn",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "header": " {\n\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "id.main@tag.article",
- "ruleContent": "@js:\nvar title = java.getElements(\".entry-header\");\n\nvar content = java.getElements(\".single-content\");\n\nvar doc = org.jsoup.Jsoup.parse(content);\n\n//解析剩下页数,并追加剩余页数内容\n\nvar pageNum = null;\nvar other = [];\nif(\"{{@@page-links}}\"!=null){\nvar page = doc.select(\".page-links\").select(\"a\");\npageNum = page.size()-1;\nfor(var i = 1;i < pageNum;i++){\nvar doc = org.jsoup.Jsoup.connect(page.get(i).attr(\"href\")).get()\nother[i] = doc.select(\".single-content\");\n}\n}\n\nvar all = title +'<hr><p>'+content+other.join(\" \")+'<hr><p><a href='+baseUrl+'>原文出处</a>'\n\nresult = String(all).replace(/(浏览 次)/,\"\")",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "text.下页@tag.a@href",
- "rulePubDate": "{{@@class.date@span@title}} {{@@class.views@text}}##浏览 次",
- "ruleTitle": "tag.a.0@title",
- "sortUrl": "时事热点::https://www.kdtjq.com/fl/ssrd\n娱乐明星::https://www.kdtjq.com/fl/ylmx\n娱乐八卦::https://www.kdtjq.com/fl/ylbg\n宅男频道::https://www.kdtjq.com/fl/znpd\n美女翘臀::https://www.kdtjq.com/fl/美女翘臀\n女优番号::https://www.kdtjq.com/fl/nyfh\nav女星::https://www.kdtjq.com/fl/avnmx\n宅男女神::https://www.kdtjq.com/fl/znns\n邪恶gif出处::https://www.kdtjq.com/fl/ppp\n电影剧情::https://www.kdtjq.com/fl/dyjj",
- "sourceGroup": "",
- "sourceIcon": "https://www.kdtjq.com/wp-content/themes/Unite/images/favicon.png",
- "sourceName": "宅男俱乐部",
- "sourceUrl": "https://www.kdtjq.com",
- "style": ".entry-title {\nfont-size:15;\n}\n\n.single_info {\nfont-size:10;\n}\n\np {\nfont-size:12;\n}\n\nimg {\nwidth:100%;\nheight:auto;\nborder:solid;\n}\n\n.page-links{\ndisplay:none;\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "class.row@class.post-grid",
- "ruleContent": "class.entry-content@html@js:result.replace(/\\ssrc=.*?\\s/g,' ').replace(/data-src/g,'src')",
- "ruleImage": "img@data-src",
- "ruleLink": "h3@a@href",
- "ruleNextPage": "page",
- "rulePubDate": "class.grid-post-date@text",
- "ruleTitle": "h3@a@text",
- "sourceGroup": "🔞 福利",
- "sourceIcon": "http://www.weibomn.com/static/images/logo.png",
- "sourceName": "微博美女",
- "sourceUrl": "http://www.weibomn.com/Archive{{page}}.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.app_left_list@a",
- "ruleContent": "<js>\nvar data=org.jsoup.Jsoup.parse(result)\nvar head=data.select('link')\nvar down=String(data.select('.apk_topba_code').select('img').attr('src')).replace(/\\/qr/,'https://www.coolapk.com/qr')\nvar part1=String(data.select('.apk_left_one')).replace(/javascript:void\\(0\\);/,down)\nvar part2=data.select('.apk_left_first-title')\nvar part3=data.select('.apk_left_title')\nresult=head+part1+part2+part3\n</js>",
- "ruleDescription": "",
- "ruleImage": "img@src",
- "ruleLink": "a@href@js:'https://www.coolapk.com'+result",
- "ruleNextPage": "<js>\nvar page=Number(baseUrl.match(/\\d+/)[0])+1\nbastUrl=baseUrl.replace(/\\d+/,page)\n</js>",
- "rulePubDate": "class.list_app_info@text",
- "ruleTitle": "class.list_app_title@text",
- "sourceIcon": "https://www.coolapk.com/favicon.ico",
- "sourceName": "酷安",
- "sourceUrl": "https://www.coolapk.com/apk?p=1"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.list.1@li||class.column-2 ",
- "ruleContent": "all##<script>xia\\(\\);tongji\\(\\);xuanfu\\(\\);</script>|<div style=\"display:none\">[\\s\\S]+ype=\"text/javascript\" src=\"/js/xx.js\"></script>",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a.0@href##^##http://www.deyunshuwu.com",
- "ruleNextPage": "text.下页@href",
- "rulePubDate": "class.update@text&&tag.span.0@text",
- "ruleTitle": "tag.a.0@text",
- "sortUrl": "&&全部::http://www.deyunshuwu.com/shuku/0-allvisit-0-1.html&&精品小说::http://www.deyunshuwu.com/shuku/1-allvisit-0-1.html&&藏经阁::http://www.deyunshuwu.com/shuku/2-allvisit-0-1.html&&高辣文::http://www.deyunshuwu.com/shuku/3-allvisit-0-1.html&&耽美小说::http://www.deyunshuwu.com/shuku/4-allvisit-0-1.html&&海棠耽美::http://www.deyunshuwu.com/shuku/5-allvisit-0-1.html&&言情小说::http://www.deyunshuwu.com/shuku/6-allvisit-0-1.html&&海棠言情::http://www.deyunshuwu.com/shuku/7-allvisit-0-1.html&&百合小说::http://www.deyunshuwu.com/shuku/8-allvisit-0-1.html&&情欲小说::http://www.deyunshuwu.com/shuku/9-allvisit-0-1.html&&评书品书::http://www.deyunshuwu.com/shuku/10-allvisit-0-1.html&&私密趣事::http://www.deyunshuwu.com/shuku/11-allvisit-0-1.html&&",
- "sourceIcon": "",
- "sourceName": "德云书屋",
- "sourceUrl": "http://www.deyunshuwu.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.recommend-article@ul@li||class.untagged",
- "ruleContent": "class.article-title@html&&class.stats@html&&class.untagged@html\n<js>\nresult=String(result).replace(/class=\"page-nav-list[\\s\\S]+微博/,'')\n</js>",
- "ruleDescription": "",
- "ruleImage": "class.recmd-left@img@src||class.thumb@a@img@src",
- "ruleLink": "class.recmd-left@href||class.contentHerf@href@js:'https://www.qiushibaike.com'+result+',{\"charset\": \"utf-8\",\"method\": \"GET\",\"webView\": true }'",
- "ruleNextPage": "<js>\r\nvar path1=String(baseUrl).match(/page\\/.*\\//)[0]\r\nvar path2=path1.replace(/page\\/|\\//g,'')\r\nvar num1=Number(path2)+1\r\nvar objk=String(baseUrl).replace(/page\\/.*\\//, 'page/'+num1+'/' )\r\nresult=objk\r\n</js>\r\n",
- "rulePubDate": "",
- "ruleTitle": "class.recmd-left@img@alt||class.contentHerf@class.content@span@text\n",
- "sortUrl": "推荐::https://www.qiushibaike.com/8hr/page/1/\n视频::https://www.qiushibaike.com/video/page/1/\n图片::https://www.qiushibaike.com/imgrank/page/1/\n段子::https://www.qiushibaike.com/text/page/1/",
- "sourceIcon": "https://www.qiushibaike.com/favicon.ico",
- "sourceName": "糗事百科",
- "sourceUrl": "https://www.qiushibaike.com/8hr/page/1/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "tag.article",
- "ruleContent": "id.content@article@html",
- "ruleImage": "tag.img.0@src",
- "ruleLink": "class.fusion-rollover-title.0@tag.a@href",
- "ruleTitle": "class.fusion-rollover-title.0@tag.a@text",
- "sortUrl": "资讯::https://manhua.zsh8.com/news/page/{{page}}\n漫画::https://manhua.zsh8.com/comic/pg/page/{{page}}\n国漫::https://manhua.zsh8.com/country/cn/page/{{page}}\n福利漫::https://manhua.zsh8.com/cmtype/fls",
- "sourceIcon": "https://image.zsh8.com/uploads/2017/08/zslogophone1.png",
- "sourceName": "芝士豪八动漫",
- "sourceUrl": "https://www.zsh8.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "JavaScript::https://www.runoob.com/js/js-tutorial.html\nHTMLDOM::https://www.runoob.com/htmldom/htmldom-tutorial.html\njQuery::https://www.runoob.com/jquery/jquery-tutorial.html\nAngularJS::https://www.runoob.com/angularjs/angularjs-tutorial.html\nAngularJS2::https://www.runoob.com/angularjs2/angularjs2-tutorial.html\nVue.js::https://www.runoob.com/vue2/vue-tutorial.html\nReact::https://www.runoob.com/react/react-tutorial.html\nTypeScript::https://www.runoob.com/typescript/ts-tutorial.html\njQueryUI::https://www.runoob.com/jqueryui/jqueryui-tutorial.html\njQueryEasyUI::https://www.runoob.com/jeasyui/jqueryeasyui-tutorial.html\nNode.js::https://www.runoob.com/nodejs/nodejs-tutorial.html\nAJAX::https://www.runoob.com/ajax/ajax-tutorial.html\nJSON::https://www.runoob.com/json/json-tutorial.html\nEcharts::https://www.runoob.com/echarts/echarts-tutorial.html\nHighcharts::https://www.runoob.com/highcharts/highcharts-tutorial.html\nGoogle地图::https://www.runoob.com/googleapi/google-maps-basic.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob-JavaScript",
- "sourceUrl": "https://www.runoob.com/cate2"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
- "ruleContent": "//div[@id=\"content\"]",
- "ruleLink": "//@href",
- "ruleTitle": "//text()",
- "sortUrl": "WebService::https://www.runoob.com/webservices/webservices-tutorial.html\nWSDL::https://www.runoob.com/wsdl/wsdl-tutorial.html\nSOAP::https://www.runoob.com/soap/soap-tutorial.html\nRSS::https://www.runoob.com/rss/rss-tutorial.html\nRDF::https://www.runoob.com/rdf/rdf-tutorial.html",
- "sourceGroup": "编程",
- "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
- "sourceName": "Runoob- Web Service",
- "sourceUrl": "https://www.runoob.com/#cate8"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "#m@.info",
- "ruleContent": "@js:if(!baseUrl.match(/post/)){\nvar doc = org.jsoup.Jsoup.parse(result);\nvar search = doc.select(\".search\").attr(\"style\",\"display:block\");\ndoc.select(\"body\").html(search);\nresult=doc\n}else{\n result\n}",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "@js:if(baseUrl.match(/sort/)){\njava.getString(\"@@a@href\",true);\n}else{\n baseUrl;\n}",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "@js:if(baseUrl.match(/sort/)){\n var doc = org.jsoup.Jsoup.parse(result);\n//定义方法,提取文本并除去多余\nvar tex=(selector,rex)=>\n String(doc.select(selector).text()).replace(rex,\"\");\n//合并,空格隔开\ntex(\"p\",/【内容.*/)\n+\" \"+\ntex(\"span\",/大约/)\n}",
- "ruleTitle": "@js:if(baseUrl.match(/sort/)){\njava.getString(\"@@a@text\",false);\n}else{\n \"搜索\"\n}",
- "sortUrl": "搜索::http://www.zxcs.me/\n都市·娱乐::http://www.zxcs.me/sort/23\n二次元::http://www.zxcs.me/sort/55\n武侠::http://www.zxcs.me/sort/36\n仙侠::http://www.zxcs.me/sort/37\n奇幻::http://www.zxcs.me/sort/38\n玄幻::http://www.zxcs.me/sort/39\n科幻::http://www.zxcs.me/sort/40\n灵异::http://www.zxcs.me/sort/41\n历史::http://www.zxcs.me/sort/42\n军事::http://www.zxcs.me/sort/43\n竞技::http://www.zxcs.me/sort/44\n游戏::http://www.zxcs.me/sort/45",
- "sourceIcon": "http://www.zxcs.me/favicon.ico",
- "sourceName": "知轩藏书",
- "sourceUrl": "http://www.zxcs.me/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "a[href^=index]",
- "ruleContent": "@js:\nvar doc = org.jsoup.Jsoup.parse(result);\nvar s=selector=>doc.select(selector);\n//删除广告、左、下等\ns(\"div.aui-scrollView-type-left,div.aui-scrollView-type-right>*:not(a),footer,div.nextpage\").remove();\n//设置样式\ns(\"div.aui-scrollView-type-right\").attr(\"style\",\"float:none;width:100%\");\ndoc",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "href",
- "ruleNextPage": "",
- "rulePubDate": "",
- "ruleTitle": "text",
- "sortUrl": "",
- "sourceIcon": "http://www.zxcs.me/favicon.ico",
- "sourceName": "知轩藏书info",
- "sourceUrl": "http://m.zxcs.info/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "header": "{\n \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.0.0; MIX 2 Build/OPR1.170623.027) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 YaBrowser/18.9.1.2199.00 Mobile Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "id.m@tag.li",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "id.diypage@tag.a@href",
- "rulePubDate": "tag.span@text",
- "ruleTitle": "tag.a@text##(.*)",
- "sortUrl": "//搜索在“=”后面输入要找的内容\n【搜索】::http://www.zxcs.me/?keyword=\n【最新】::http://www.zxcs.me/\n【都市】::http://www.zxcs.me/sort/23\n异术超能::http://www.zxcs.me/tag/异术超能\n都市生活::http://www.zxcs.me/tag/都市生活\n娱乐明星::http://www.zxcs.me/tag/娱乐明星\n官场沉浮::http://www.zxcs.me/tag/官场沉浮\n乡土小说::http://www.zxcs.me/tag/乡土小说\n【武侠】::http://www.zxcs.me/sort/36\n武侠幻想::http://www.zxcs.me/tag/武侠幻想\n传统武侠::http://www.zxcs.me/tag/传统武侠\n国术武技::http://www.zxcs.me/tag/国术武技\n【仙侠】::http://www.zxcs.me/sort/37\n现代修真::http://www.zxcs.me/tag/现代修真\n幻想修仙::http://www.zxcs.me/tag/幻想修仙\n神话修真::http://www.zxcs.me/tag/神话修真\n修真文明::http://www.zxcs.me/tag/修真文明\n【奇幻】::http://www.zxcs.me/sort/38\n史诗奇幻::http://www.zxcs.me/tag/史诗奇幻\n剑与魔法::http://www.zxcs.me/tag/剑与魔法\n另类幻想::http://www.zxcs.me/tag/另类幻想\n黑暗幻想::http://www.zxcs.me/tag/黑暗幻想\n西方奇幻::http://www.zxcs.me/tag/西方奇幻\n现代魔法::http://www.zxcs.me/tag/现代魔法\n【玄幻】::http://www.zxcs.me/sort/39\n东方玄幻::http://www.zxcs.me/tag/东方玄幻\n异界大陆::http://www.zxcs.me/tag/异界大陆\n高武世界::http://www.zxcs.me/tag/高武世界\n远古神话::http://www.zxcs.me/tag/远古神话\n王朝争霸::http://www.zxcs.me/tag/王朝争霸\n【科幻】::http://www.zxcs.me/sort/40\n时空穿梭::http://www.zxcs.me/tag/时空穿梭\n末世危机::http://www.zxcs.me/tag/末世危机\n超级科技::http://www.zxcs.me/tag/超级科技\n进化变异::http://www.zxcs.me/tag/进化变异\n星际文明::http://www.zxcs.me/tag/星际文明\n未来世界::http://www.zxcs.me/tag/未来世界\n古武机甲::http://www.zxcs.me/tag/古武机甲\n【灵异】::http://www.zxcs.me/sort/41\n悬疑探险::http://www.zxcs.me/tag/悬疑探险\n灵异奇谈::http://www.zxcs.me/tag/灵异奇谈\n推理侦探::http://www.zxcs.me/tag/推理侦探\n恐怖惊悚::http://www.zxcs.me/tag/恐怖惊悚\n【历史】::http://www.zxcs.me/sort/42\n上古先秦::http://www.zxcs.me/tag/上古先秦\n秦汉三国::http://www.zxcs.me/tag/秦汉三国\n两晋隋唐::http://www.zxcs.me/tag/两晋隋唐\n两宋元明::http://www.zxcs.me/tag/两宋元明\n清史民国::http://www.zxcs.me/tag/清史民国\n架空历史::http://www.zxcs.me/tag/架空历史\n外国历史::http://www.zxcs.me/tag/外国历史\n五代十国::http://www.zxcs.me/tag/五代十国\n历史传记::http://www.zxcs.me/tag/历史传记\n【军事】::http://www.zxcs.me/sort/43\n谍战特工::http://www.zxcs.me/tag/谍战特工\n军旅生涯::http://www.zxcs.me/tag/军旅生涯\n战争幻想::http://www.zxcs.me/tag/战争幻想\n抗战烽火::http://www.zxcs.me/tag/抗战烽火\n军事战争::http://www.zxcs.me/tag/军事战争\n【竞技】::http://www.zxcs.me/sort/44\n电子竞技::http://www.zxcs.me/tag/电子竞技\n足球运动::http://www.zxcs.me/tag/足球运动\n篮球运动::http://www.zxcs.me/tag/篮球运动\n体育竞技::http://www.zxcs.me/tag/体育竞技\n棋牌对弈::http://www.zxcs.me/tag/棋牌对弈\n【游戏】::http://www.zxcs.me/sort/45\n游戏异界::http://www.zxcs.me/tag/游戏异界\n虚拟网游::http://www.zxcs.me/tag/虚拟网游\n游戏主播::http://www.zxcs.me/tag/游戏主播\n游戏生涯::http://www.zxcs.me/tag/游戏生涯\n游戏系统::http://www.zxcs.me/tag/游戏系统\n【次元】::http://www.zxcs.me/sort/55\n同人小说::http://www.zxcs.me/tag/同人小说\n原生幻想::http://www.zxcs.me/tag/原生幻想\n青春日常::http://www.zxcs.me/tag/青春日常\n搞笑吐槽::http://www.zxcs.me/tag/搞笑吐槽\n变身入替::http://www.zxcs.me/tag/变身入替\n言情女生::http://www.zxcs.me/tag/言情女生",
- "sourceIcon": "http://www.zxcs.me/content/templates/ewceocms_t/images/logo.png",
- "sourceName": "知轩藏书",
- "sourceUrl": "http://www.zxcs.me"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.column-2",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "class.nextPage@tag.a@href",
- "rulePubDate": "{{@@tag.a.2@text}} · {{@@tag.span.1@text}} · {{@@tag.span.0@text}} · {{@@tag.p.-1@text}}##更新.",
- "ruleTitle": "tag.a.0@text&&tag.a.1@text",
- "sortUrl": "总榜::http://www.longtenghuaxia.com/shuku/0-allvisit-0-{{page}}.html\n月榜::http://www.longtenghuaxia.com/shuku/0-monthvisit-0-{{page}}.html\n字数::http://www.longtenghuaxia.com/shuku/0-size-0-{{page}}.html\n新书::http://www.longtenghuaxia.com/shuku/0-postdate-0-{{page}}.html\n奇幻玄幻::http://www.longtenghuaxia.com/shuku/1-lastupdate-2-{{page}}.html\n仙侠武侠::http://www.longtenghuaxia.com/shuku/2-lastupdate-2-{{page}}.html\n都市言情::http://www.longtenghuaxia.com/shuku/3-lastupdate-2-{{page}}.html\n穿越历史::http://www.longtenghuaxia.com/shuku/4-lastupdate-2-{{page}}.html\n科幻灵异::http://www.longtenghuaxia.com/shuku/5-lastupdate-2-{{page}}.html\n藏经阁::http://www.longtenghuaxia.com/shuku/6-lastupdate-2-{{page}}.html\n其他类型::http://www.longtenghuaxia.com/shuku/7-lastupdate-2-{{page}}.html",
- "sourceIcon": "http://www.longtenghuaxia.com/images/jipin-default.jpg",
- "sourceName": "第一版主",
- "sourceUrl": "http://www.longtenghuaxia.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.column-2",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "class.nextPage@tag.a@href",
- "rulePubDate": "{{@@tag.a.2@text}} · {{@@tag.span.1@text}} · {{@@tag.span.0@text}} · {{@@tag.p.-1@text}}##更新.",
- "ruleTitle": "tag.a.0@text&&tag.a.1@text",
- "sortUrl": "总榜::http://www.diyibanzhu5.in/shuku/0-allvisit-0-{{page}}.html\n月榜::http://www.diyibanzhu5.in/shuku/0-monthvisit-0-{{page}}.html\n字数::http://www.diyibanzhu5.in/shuku/0-size-0-{{page}}.html\n新书::http://www.diyibanzhu5.in/shuku/0-postdate-0-{{page}}.html\n奇幻玄幻::http://www.diyibanzhu5.in/shuku/1-lastupdate-2-{{page}}.html\n仙侠武侠::http://www.diyibanzhu5.in/shuku/2-lastupdate-2-{{page}}.html\n都市言情::http://www.diyibanzhu5.in/shuku/3-lastupdate-2-{{page}}.html\n穿越历史::http://www.diyibanzhu5.in/shuku/4-lastupdate-2-{{page}}.html\n科幻灵异::http://www.diyibanzhu5.in/shuku/5-lastupdate-2-{{page}}.html\n藏经阁::http://www.diyibanzhu5.in/shuku/6-lastupdate-2-{{page}}.html\n其他类型::http://www.diyibanzhu5.in/shuku/7-lastupdate-2-{{page}}.html",
- "sourceGroup": "以下是备用地址\nhttp://www.maizixueyuan.com/\nhttp://dybz6.vip/\nhttp://dybz6.me/\n地址发布页\nhttp://6u6u6u.com\nhttp://6j6j6j.com",
- "sourceIcon": "http://www.longtenghuaxia.com/images/jipin-default.jpg",
- "sourceName": "第一版主~移动卡都能用",
- "sourceUrl": "http://www.diyibanzhu5.in/"
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "html",
- "ruleContent": "",
- "ruleImage": "@js:'http://iyy.5ay.xyz/moban/default/template/img/load.gif'",
- "ruleLink": "@js:result=baseUrl",
- "rulePubDate": "",
- "ruleTitle": "title@text",
- "sortUrl": "浏览器::http://xianyui.icu/index.html\n中华听书::https://m.tingshucn.com\n听书网::https://tingbook.cc\n恋听网::https://ting55.com\n千千静听::http://www.qqjt5.com\n56听书::https://www.56tingshu.com\n忧郁听书::https://uyuku.com\n88听书::https://www.88tingshu.com\n520听书::http://www.fushu520.com/\n喜马拉雅::http://search.ximalaya.com\n麻辣听书::https://m.malatingshu.com/\n我听评书::https://www.5tps.com\n有声小说吧::http://www.ysxs8.com\n中文听书::https://www.tingzh.com/\n酷我听书::http://baby.kuwo.cn:80\n56听书啦::http://www.ting56.com/\n听书宝::https://m.tingshubao.com/\n海洋听书::http://www.ychy.com\n74听书::http://www.ting74.com/\n89幻听::http://www.ting89.com/\n有去听书::http://app.zhoudamozi.com/\n2听书::http://www.2uxs.com/",
- "sourceGroup": "自己在分类添加你喜欢的链接即可\n格式 网站名字::网站连接",
- "sourceIcon": "",
- "sourceName": "阅读听书21网站集合",
- "sourceUrl": "http://listbook.cn",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "html",
- "ruleContent": "",
- "ruleImage": "@js:'http://img.alicdn.com/imgextra/i1/0/O1CN01eobjjy1K4sdBtNtzu_!!0-rate.jpg'",
- "ruleLink": "@js:result=baseUrl",
- "rulePubDate": "",
- "ruleTitle": "title@text",
- "sortUrl": "官网::http://xxoo.com",
- "sourceGroup": "",
- "sourceIcon": "",
- "sourceName": "情人岛影院",
- "sourceUrl": "http://xxoo.com",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 0,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "html",
- "ruleContent": "",
- "ruleImage": "",
- "ruleLink": "@js:result=baseUrl",
- "rulePubDate": "",
- "ruleTitle": "title@text",
- "sortUrl": "官网:http://jmcomic.xyz/",
- "sourceGroup": "",
- "sourceIcon": "",
- "sourceName": "禁漫网站发布页",
- "sourceUrl": "http://jmcomic.xyz/",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 2,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/ec1dda91f3e06cda86f087aaa2c46d06",
- "sourceName": "科幻世界",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E7%A7%91%E5%B9%BB%E4%B8%96%E7%95%8C&key=04453217-aa95-410c-90d3-3a73079ee68a"
- },
- {
- "articleStyle": 0,
- "customOrder": 2,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.container@class.col-md-3 col-xs-6",
- "ruleContent": "all## <script type=\"text/javascript\">var cnzz_protocol = [\\s\\S]+?</script> ",
- "ruleDescription": "",
- "ruleImage": "img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "class.pager@tag.a.-1@href",
- "rulePubDate": "class.table@span@text##\\n##·",
- "ruleTitle": "class.card-caption@text",
- "sortUrl": "搜索用::https://www.yikm.net/search?name=拳皇\n\n\nGBA游戏::https://www.yikm.net/nes?page=1&tag=&e=2\n街机游戏::https://www.yikm.net/nes?page=1&tag=9\nH5游戏::https://www.yikm.net/nes?page=1&tag=1\n动作冒险::https://www.yikm.net/nes?page=1&tag=2\n小游戏::https://www.yikm.net/nes?page=1&tag=8\n飞行射击::https://www.yikm.net/nes?page=1&tag=3\n格斗::https://www.yikm.net/nes?page=1&tag=4\n棋牌::https://www.yikm.net/nes?page=1&tag=5\n射击::https://www.yikm.net/nes?page=1&tag=6\n运动比赛::https://www.yikm.net/nes?page=1&tag=7\n角色扮演::https://www.yikm.net/nes?page=1&tag=10",
- "sourceGroup": "搜索name=后面填你想搜的东西",
- "sourceIcon": "http://srvcn.xbext.com/touch_icons/96x96/mobile.h5_games.png",
- "sourceName": "在线游戏",
- "sourceUrl": "https://www.yikm.net/nes?tag=9"
- },
- {
- "articleStyle": 0,
- "customOrder": 2,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.container@class.col-md-3 col-xs-6",
- "ruleContent": "all## <script type=\"text/javascript\">var cnzz_protocol = [\\s\\S]+?</script> ",
- "ruleDescription": "",
- "ruleImage": "img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "class.pager@tag.a.-1@href",
- "rulePubDate": "class.table@span@text##\\n##·",
- "ruleTitle": "class.card-caption@text",
- "sortUrl": "搜索用::https://www.yikm.net/search?name=逆转裁判\n\n\nGBA游戏::https://www.yikm.net/nes?page=1&tag=&e=2\n街机游戏::https://www.yikm.net/nes?page=1&tag=9\nH5游戏::https://www.yikm.net/nes?page=1&tag=1\n动作冒险::https://www.yikm.net/nes?page=1&tag=2\n小游戏::https://www.yikm.net/nes?page=1&tag=8\n飞行射击::https://www.yikm.net/nes?page=1&tag=3\n格斗::https://www.yikm.net/nes?page=1&tag=4\n棋牌::https://www.yikm.net/nes?page=1&tag=5\n射击::https://www.yikm.net/nes?page=1&tag=6\n运动比赛::https://www.yikm.net/nes?page=1&tag=7\n角色扮演::https://www.yikm.net/nes?page=1&tag=10",
- "sourceGroup": "搜索name=后面填你想搜的东西,中文名如果无结果,请用英文名或者关键字,比如 king of fighters;拳皇\n\n注:有些游戏存档没法用,GBA类有单独的存档功能",
- "sourceIcon": "http://srvcn.xbext.com/touch_icons/96x96/mobile.h5_games.png",
- "sourceName": "在线游戏",
- "sourceUrl": "https://www.yikm.net/"
- },
- {
- "articleStyle": 0,
- "customOrder": 2,
- "enableJs": false,
- "enabled": true,
- "header": " {\n\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "@js:\nvar a = java.getElements(\".img\");\nvar b = java.getElements(\".grid-meta\");\nvar list = [];\nfor(var i = 0;i < a.size();i++){\nlist[i] =a.get(i)+b.get(i)\n}\nresult = list",
- "ruleContent": "@js:\nvar title = java.getElements(\".article-title\");\nvar info = java.getElements(\".article-meta\").text();\nvar content = java.getElement(\".article-content\")\n\nvar doc = org.jsoup.Jsoup.parse(content);\n\n//解析剩下页数,并追加剩余页数内容\n\nvar pageNum = null;\nvar other = [];\nif(\"{{@@class.article-paging}}\"!=null){\nvar page = doc.select(\".article-paging\").select(\"a\");\npageNum = page.size();\nfor(var i = 0;i < pageNum;i++){\nvar doc = org.jsoup.Jsoup.connect(page.get(i).attr(\"href\")).get()\nother[i] = doc.select(\".article-content\").html();\n}\n\n//拆分文章元信息,以便自定义样式\n\nvar list = info.split(\" \");\n}\n\nresult = title+'<a id = \"meta\">'+list[0]+' '+list[1]+' 浏览: '+list[3]+'</a><hr>'+content+other.join(\" \")+'<hr><p><a href='+baseUrl+'>原文出处</a>'",
- "ruleImage": "tag.img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "page",
- "rulePubDate": "日期:{{@@class.time@text}} 浏览:{{@@class.views@text}}",
- "ruleTitle": "tag.a.0@title",
- "sortUrl": "gif剧情图解::http://www.qmsgif.com/category/gif-plot-diagram/page/{{page}}\ngif求出处::http://www.qmsgif.com/category/gif求出处/page/{{page}}\n内涵gif::http://www.qmsgif.com/category/内涵gif/page/{{page}}\n极品gif::http://www.qmsgif.com/category/极品gif出处/page/{{page}}\n美女gif::http://www.qmsgif.com/category/beautiful-woman-gif/page/{{page}}",
- "sourceIcon": "http://pic53.nipic.com/file/20141114/17976421_140050038001_2.png",
- "sourceName": "秋名山动图",
- "sourceUrl": "http://www.qmsgif.com",
- "style": ".article-title {\nfont-size:15;\n}\n\n#meta {\nfont-size:11;\n}\n\np {\nfont-size:12;\n}\n\nimg {\nwidth:100%;\nheight:auto;\nborder:solid;\n}\n\n.article-paging {\ndisplay:none;\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 3,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/c4bd3960ed02a4e5e7eef8223b8f1e31",
- "sourceName": "故事会",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=08dc3c17-262e-4f58-b7d9-932ab966e582"
- },
- {
- "articleStyle": 0,
- "customOrder": 4,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/netease.jpg",
- "sourceName": "网易要闻",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:27}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":98}\"\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 4,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/d086a8d4d575d1c64992d69d5857e220",
- "sourceName": "意林•原创版",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%84%8F%E6%9E%97&key=4fd8f670-f98d-459d-8263-044f6d5e4d4a"
- },
- {
- "articleStyle": 0,
- "customOrder": 4,
- "enableJs": true,
- "enabled": true,
- "header": " {\n\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.s-tab-main@ul@li&&class.index-container@class.btn-play-source&&class.am-list-news-bd@li",
- "ruleContent": "@js:if(baseUrl.match(/zb/)){\nvar src = \"https://m.huya.com/\"+baseUrl.match(/\\d.*(?=\\.html)/)\nresult = '<iframe src='+src+' width=\"100%\" height=\"100%\" allowfullscreen=\"true\" frameborder=\"no\" >'\n}else if(!baseUrl.match(/live/)){var doc \n= org.jsoup.Jsoup.connect(baseUrl).get();\nvar e = doc.getElementsByClass(\"am-panel am-panel-default\");\nvar spt = doc.select(\"script\");\nresult = e +spt\n}else{\nvar doc = org.jsoup.Jsoup.connect(baseUrl).get();\nvar spt = doc.select(\"script\")\nvar src = String(spt).match(/http.*m3u8/);\nresult='<iframe src='+src+' width=\"100%\" height=\"560\" frameborder=\"no\" allowfullscreen=\"true\">' \n}",
- "ruleImage": "img@data-original",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "page",
- "rulePubDate": "{{@@class.hint@text}}•{{@@class.star@text}} @js:if(baseUrl.match(/(search)|(live)/)){\nresult = \"{{@@class.am-list-item-text@text}}\"}else{result}",
- "ruleTitle": "class.btn-play-source@text&&class.s1@text&&class.am-list-item-hd@text",
- "sortUrl": "搜索::https://v.lree.cn/search.php?wd=仙剑\n\n\n一起看::https://v.lree.cn/hy.html?page={{page}}\n\n电视直播::https://v.lree.cn/live.html\n\n电影::https://v.lree.cn/movie.html?cat=all&area=all&year=all&act=all&rank=rankhot&pageno={{page}}\n电视剧::https://v.lree.cn/tv.html?cat=all&area=all&year=all&act=all&rank=rankhot&pageno={{page}}\n动漫::https://v.lree.cn/cartoon.html?cat=all&area=all&year=all&act=all&rank=rankhot&pageno={{page}}\n综艺::https://v.lree.cn/variety.html?cat=all&area=all&year=all&act=all&rank=rankhot&pageno={{page}}",
- "sourceIcon": "http://img2.3png.com/a507fc72abc2eea3b9ad8780d7c33155ffde.png",
- "sourceName": "牛逼影院",
- "sourceUrl": "https://v.lree.cn",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 5,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/mtime.jpg",
- "sourceName": "时光网",
- "sourceUrl": "http://47.105.79.245/v3/article?feedId=27&articleId=0&pageSize=20&isLookDown=true"
- },
- {
- "articleStyle": 0,
- "customOrder": 5,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/6ef9ecb00ce1579d98b9a78d13ea1448",
- "sourceName": "读者",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=ea265b17-0d79-4240-b3db-0b4cf94de08b"
- },
- {
- "articleStyle": 0,
- "customOrder": 6,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/qdaily.jpg",
- "sourceName": "好奇心日报",
- "sourceUrl": "http://47.105.79.245/v3/article?feedId=13&articleId=0&pageSize=20&isLookDown=true"
- },
- {
- "articleStyle": 0,
- "customOrder": 6,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img01.sogoucdn.com/app/a/100520146/f9048e798127d4596cdf65f4bfd28065",
- "sourceName": "读者欣赏",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=b4f38850-dda4-4559-a1a7-59479a2e05e6"
- },
- {
- "articleStyle": 0,
- "customOrder": 6,
- "enableJs": true,
- "enabled": true,
- "header": " {\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "@js:\nif(baseUrl.match(/sch/)){\nvar a = org.jsoup.Jsoup.parse(result).select(\".list_content\").select(\"h2 a\");\nvar b =\norg.jsoup.Jsoup.parse(result).select(\".list_content\").select(\"table[width=80%]\");\nvar list = [];\nfor(var i=0;i<a.size();i++){\n list[i] = a.get(i)+'<a>'+b.get(i)+'</a>'\n}\nresult = list\n}else{\nvar a = org.jsoup.Jsoup.parse(result).select(\".down_list\").select(\"td[rowspan=3]\");\nvar b = org.jsoup.Jsoup.parse(result).select(\".down_list\").select(\"td[width=290]\");\nvar c = org.jsoup.Jsoup.parse(result).select(\".down_list\").select(\"td[align=center]\");\nvar d = org.jsoup.Jsoup.parse(result).select(\".down_list\").select(\"td[colspan=5]\").select(\"b\");\n\nvar cAll = []\nfor(var i=0;i<a.size();i++){\ncAll[i] = '<a>'+c.get(i*3)+' Dl: '+c.get(i*3+2)+' Size: '+c.get(i*3+1)+'</a>'+'<a>'+d.get(i)+'</a>'\n}\n\nvar list = [];\nfor(var i=0;i<a.size();i++){\n list[i] = a.get(i)+b.get(i)+cAll[i]\n}\nresult = list}",
- "ruleContent": "@js:\nvar title = \"{{@@h1@text}}\";\nvar detail = java.getElements(\"id.mainSoftIntro\").text();\nvar img = java.getElements(\"id.downInfoArea@tag.img\").select(\"img\").get(1).attr(\"src\")\nvar imgSrc = \"https://www.iysw.net/\"+img;\nvar bookInfo =\"{{@@.downInfoRowR@text}}\";\nvar author = bookInfo.match(/作者.*类别/)[0].replace(/文章类别/,\"\");\nvar type = bookInfo.match(/类型:.*文件/)[0].replace(/(文件|\\.)/g,\"\");\nvar dlUrl = \"https://www.iysw.net\"+\"{{@@id.downAddress@tag.a.0@onclick}}\".match(/\\/.*id=/)+0;\nvar doc = org.jsoup.Jsoup.connect(dlUrl).get();\nvar fileUrl_1 = \"https://www.iysw.net/e/DownSys\"+doc.select(\"a\").get(1).attr(\"href\").match(/\\/.*/);\nvar fileUrl_2 = String(fileUrl_1).replace(/pathid=0/,\"pathid=1\");\nvar tips = '<a id = \"tips\">txt文本文件请复制链接用下载器下载(注意后面3个:::),rar压缩文件点击直接下载</a>'\n\nresult = '<h5>'+title+'</h5>'+'<img src = '+imgSrc+'><p>'+author+'<p>'+type+'<p>简介:'+detail+'<hr>'+tips+'<p><hr><a id = \"dl\" href = '+fileUrl_1+' >下载地址1</a><p><a id = \"link\">'+fileUrl_1+'<hr></a><a id = \"dl\" href = '+fileUrl_2+' >下载地址2</a><p><a id = \"link\">'+fileUrl_2+'</a><hr>'",
- "ruleDescription": "",
- "ruleImage": "tag.img.0@src",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "text.下一页@tag.a.0@href",
- "rulePubDate": "@js:\nif(baseUrl.match(/sch/)){\nresult = \"简介:{{@@tag.a.1@text}}\"\n}\nelse{result = \"{{@@tag.a.1@text}}\"}",
- "ruleTitle": "@js:\nif(baseUrl.match(/sch/)){\nresult = \"《{{@@tag.a.0@text}}》\"\n}\nelse{result =\"《{{@@tag.img@title}}》\"+\" --- \"+\"{{@@tag.a.2@text}}\"}",
- "sortUrl": "搜索::https://www.iysw.net/e/sch/index.php?keyboard=仙剑神曲\n\n都市异能::https://www.iysw.net/dushi/\n穿越重生::https://www.iysw.net/mm/cy/\n乡村艳情::https://www.iysw.net/xy/\n武侠仙侠::https://www.iysw.net/wx/\n玄幻修真::https://www.iysw.net/xh/\n游戏竞技::https://www.iysw.net/wy/\n科幻末世::https://www.iysw.net/kh/\n恐怖灵异::https://www.iysw.net/kb/\n侦探推理::https://www.iysw.net/zt/\n历史军事::https://www.iysw.net/ls/\n其他类型::https://www.iysw.net/qita/",
- "sourceGroup": "",
- "sourceIcon": "https://s3.ax1x.com/2020/11/12/BzHvCV.png",
- "sourceName": "万书网(更新)",
- "sourceUrl": "https://www.iysw.net",
- "style": "p{font-size:13}\n\n#dl{font-size:12}\n\n#link{font-size:11;\nfont-style:italic;\nword-break:break-all\n}\n\n#tips{font-size:12;\nfont-weight:bold;\ncolor:teal\n}\n\nimg{border:solid}"
- },
- {
- "articleStyle": 0,
- "customOrder": 7,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/anitama.jpg",
- "sourceName": "Anitama",
- "sourceUrl": "http://47.105.79.245/v3/article?feedId=86&articleId=0&pageSize=20&isLookDown=true"
- },
- {
- "articleStyle": 0,
- "customOrder": 7,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/7d54b0a4ccf6c99887c15b5103d79fe9",
- "sourceName": "读者•校园版",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=9e236705-8f62-4007-9dc6-0ce02ae32a4c"
- },
- {
- "articleStyle": 0,
- "customOrder": 7,
- "enableJs": false,
- "enabled": true,
- "header": " {\n\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "@js:\n(function a(){\nvar a = java.getElements(\".postcate\");\nvar b = java.getElements(\".postauthor\");\nvar c = java.getElements(\".postcon\");\nvar d = java.getElements(\".post-like\")\n\nvar list = [];\nfor(var i = 0;i < a.size();i++){\nlist[i] =a.get(i)+b.get(i)+c.get(i)+d.get(i)\n}\nreturn list})()",
- "ruleContent": "@js:\nvar doc = java.getElements(\"link&&.contentbox\")\n\n//清除广告\ndoc.select(\"img[src$=ass.jpg]\").remove()\n\nresult = doc",
- "ruleImage": "tag.img.0@data-original",
- "ruleLink": "tag.a.1@href",
- "ruleNextPage": "page",
- "rulePubDate": "Date:{{@@tag.time@datetime}} Like:{{@@class.post-like@text}} {{@@class.postthumb@text}} P [{{@@tag.a.0@text}}]##$##@js:if(baseUrl.match(/xiu/)){result.replace(/P/,\"\")}else{result}",
- "ruleTitle": "h1@text",
- "sortUrl": "最新::https://www.ikmjx.com/page/{{page}}\n最热::https://www.ikmjx.com/page/{{page}}?orderby=views\n随机::https://www.ikmjx.com/page/{{page}}?orderby=rand\n制服秀::https://www.ikmjx.com/xiu/zhifu/page/{{page}}\n美胸秀::https://www.ikmjx.com/xiu/xiong/page/{{page}}\n美腿秀::https://www.ikmjx.com/xiu/tui/page/{{page}}",
- "sourceIcon": "https://www.ikmjx.com/wp-content/themes/xiuerpro%2B/static/picture/favicon.ico",
- "sourceName": "爱看买家秀(除新广告)",
- "sourceUrl": "https://www.ikmjx.com/",
- "style": ".pagebtn, .singleinfo, .shoping, .postcate, .articlename{\ndisplay:none;\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 8,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/zimuzu-9999x0w.jpg",
- "sourceName": "字幕组",
- "sourceUrl": "http://47.105.79.245/v3/article?feedId=3&articleId=0&pageSize=20&isLookDown=true"
- },
- {
- "articleStyle": 0,
- "customOrder": 8,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/d30bf0794bd30fd0fbe07e1e1acfa143",
- "sourceName": "中国新闻周刊",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=9015a0e8-eca9-4560-9c5e-317420aee8f5"
- },
- {
- "articleStyle": 0,
- "customOrder": 8,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.news-top-list-content@li@a||$.data",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "$.pic",
- "ruleLink": "a@href||$.url",
- "rulePubDate": "",
- "ruleTitle": "class.c-title-s@text||$.title",
- "sortUrl": "热搜:: https://quark.sm.cn/s?q= 热搜\n微博:: https://quark.sm.cn/api/rest?method=newstoplist.weibo \n知乎:: https://quark.sm.cn/api/rest?method=Newstoplist.zhihu \n小说:: https://quark.sm.cn/api/rest?method=Newstoplist.novel&uc_param_str=frpfvepcntnwprutssei&fr=android&pf=3300&ve=3.6.1.121&nt=2&pr=ucpro&ut=AAOGr%2BT5AH8cPWaQJuM05etT2eUYBpKXT2z%2BqxrCqGHQlQ%3D%3D&ss=360x733&format=json&nw=",
- "sourceGroup": "铭君集",
- "sourceIcon": " http://p4.so.qhimgs1.com/t026fd076fb5a14a16e.jpg",
- "sourceName": "夸克排行",
- "sourceUrl": " https://quark.sm.cn/s?q= 热搜"
- },
- {
- "articleStyle": 0,
- "customOrder": 8,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.listtxt!0:-1&&tag.h2",
- "ruleContent": "<js>\nvar doc = org.jsoup.Jsoup.parse(result);\nvar name = doc.select(\"div.fmm\");\nvar info = doc.select(\"div.bookdes\");\nvar detail = info.get(0);\nvar dl = info.get(2).select(\"a\");\n\nvar dlPage = \"https://m.iysw.net\"+dl.get(1).attr(\"href\");\nvar parseDlPage = org.jsoup.Jsoup.connect(dlPage).get();\nvar dlUrl = \"https://m.iysw.net/e/DownSys\"+parseDlPage.select(\"div.fmm\").select(\"a\").get(0).attr(\"href\");\nvar rarDl = String(dlUrl).replace(/[.]{2}/,\"\");\n\nresult = name.html()+detail.html()+'<p style=\"text-align: center\"><a href='+rarDl+'>rar打包下载</a></p>'\n\n</js>",
- "ruleImage": "",
- "ruleLink": "tag.a@href",
- "ruleNextPage": "text.下一页@tag.a@href",
- "rulePubDate": "<js>\nif(!baseUrl.match(/sch/)){\nvar doc = org.jsoup.Jsoup.parse(result);\nvar info = doc.select(\"li\");\nresult = \"作者: \"+info.get(1).text()+\" \"+\"大小: \"+info.get(2).text()}\n</js>",
- "ruleTitle": "tag.a@text",
- "sortUrl": "搜索::https://m.iysw.net/e/sch/index.php?keyboard=都市\n\n都市异能::https://m.iysw.net/dushi/\n穿越重生::https://m.iysw.net/mm/cy/\n乡村艳情::https://m.iysw.net/xy/\n武侠仙侠::https://m.iysw.net/wx/\n玄幻修真::https://m.iysw.net/xh/\n游戏竞技::https://m.iysw.net/wy/\n科幻末世::https://m.iysw.net/kh/\n恐怖灵异::https://m.iysw.net/kb/\n侦探推理::https://m.iysw.net/zt/\n历史军事::https://m.iysw.net/ls/\n其他类型::https://m.iysw.net/qita/\n",
- "sourceIcon": "https://s1.ax1x.com/2020/10/22/BknMPP.png",
- "sourceName": "万书网",
- "sourceUrl": "https://m.iysw.net",
- "style": ""
- },
- {
- "articleStyle": 0,
- "customOrder": 9,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/iplaysoft.png",
- "sourceName": "异次元软件世界",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:27}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":51}\"\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 9,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/625f2f3c2bcf0fb007286dc4ecceefc7",
- "sourceName": "故事林",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=95ad621a-64c6-4535-a0b1-7168523387d7"
- },
- {
- "articleStyle": 0,
- "customOrder": 10,
- "enableJs": true,
- "enabled": true,
- "header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10.0.0; XXX Pro Build/GAMER) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.wqindex_list_ul@li&&class.wqfooter@tag.li.1&&class.wqplate_warp@tag.li.5",
- "ruleContent": "",
- "ruleImage": "",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "text.下一页@tag.a@href",
- "rulePubDate": "<js>\nif(baseUrl.match(/forum/)){\nvar doc = org.jsoup.Jsoup.parse(result);\nvar info = doc.select(\"p.list_info\").select(\"span\").textNodes();\nvar author = info.get(0);\nvar views = info.get(2);\nvar reply = info.get(1);\nresult = '作者: '+author+' 浏览: '+views+' 回复: '+reply\n}\n</js>",
- "ruleTitle": "class.wqtitle_list.0@text&&tag.a@text",
- "sortUrl": "快捷::https://abooky.com\n发书审核::https://www.abooky.com/forum-37-1.html\n二次元小说::https://www.abooky.com/forum-38-1.html\n全本小说::https://abooky.com/forum-39-1.html\n常规小说::https://www.abooky.com/forum-40-1.html\n女频小说::https://abooky.com/forum-42-1.html",
- "sourceGroup": "",
- "sourceIcon": "https://www.abooky.com/template/wq_app/static/images/gz_logo.png",
- "sourceName": "阅次元",
- "sourceUrl": "https://abooky.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 11,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/doubanmoviereview.jpg",
- "sourceName": "豆瓣最受欢迎的影评",
- "sourceUrl": "http://47.105.79.245/v3/article?feedId=76&articleId=0&pageSize=20&isLookDown=true"
- },
- {
- "articleStyle": 0,
- "customOrder": 11,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/1782eb9ea48b824945c10478a8c0f191",
- "sourceName": "文苑•经典美文",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%96%87%E8%8B%91&key=8eb793ed-1e66-4579-b9df-bd0341d56f03"
- },
- {
- "articleStyle": 0,
- "customOrder": 12,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/nfw.png",
- "sourceName": "南方要闻",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:27}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":80}\"\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 12,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img01.sogoucdn.com/app/a/100520146/2653f4a94e3ad146b4757ae6b8a8982b",
- "sourceName": "意林",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%84%8F%E6%9E%97&key=7e788766-77a0-4093-b1f1-e3f55dd55137"
- },
- {
- "articleStyle": 0,
- "customOrder": 13,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/appin.png",
- "sourceName": "小众软件",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:27}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":14}\"\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 13,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img03.sogoucdn.com/app/a/100520146/098c12c1b948f11b70b9f2eb5a793d11",
- "sourceName": "南方人物周刊",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E5%8D%97%E6%96%B9%E4%BA%BA%E7%89%A9%E5%91%A8%E5%88%8A&key=e29202e8-f6a9-4001-93cc-a6d383b505c7"
- },
- {
- "articleStyle": 0,
- "customOrder": 13,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "",
- "ruleLink": "",
- "rulePubDate": "",
- "ruleTitle": "",
- "sourceGroup": "🛰 科技",
- "sourceIcon": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3752866850,588898846&fm=26&gp=0.jpg",
- "sourceName": "少数派",
- "sourceUrl": "https://sspai.com/feed"
- },
- {
- "articleStyle": 0,
- "customOrder": 13,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.stui-vodlist clearfix@ul@li",
- "ruleContent": "<js>\r\nvar doc1=org.jsoup.Jsoup.parse(result);\r\nvar url='https://app.movie'+doc1.getElementsByClass(\"btn btn-primary\").attr(\"href\");\r\nvar doc2=org.jsoup.Jsoup.connect(url).get();\r\nvar element=doc2.getElementsByClass(\"stui-player__video\");\r\nvar text = String(element).replace(/\\\\/g,\"\");\r\nvar videoSrc=text.match(/\"https.*dex.m3u8\"/);\r\nvar video='<video controls=\"controls\" src='+videoSrc+'>';\r\nresult=video\n</js>",
- "ruleDescription": "",
- "ruleImage": "class.stui-vodlist__thumb lazyload@data-original",
- "ruleLink": "class.stui-vodlist__thumb lazyload@href@js:\"https://app.movie\"+result",
- "ruleNextPage": "text.下一页@href",
- "rulePubDate": "class.pic-text text-right@text",
- "ruleTitle": "class.stui-vodlist__thumb lazyload@title",
- "sortUrl": "全部::https://app.movie/index.php/vod/type/id/1.html\n动作::https://app.movie/index.php/vod/show/id/6.html\n喜剧::https://app.movie/index.php/vod/show/id/7.html\n爱情::https://app.movie/index.php/vod/show/id/8.html\n科幻::https://app.movie/index.php/vod/show/id/9.html\n恐怖::https://app.movie/index.php/vod/show/id/10.html\n剧情::https://app.movie/index.php/vod/show/id/11.html\n战争::https://app.movie/index.php/vod/show/id/12.html\n记录::https://app.movie/index.php/vod/show/id/20.html",
- "sourceGroup": "",
- "sourceIcon": "https://cdn.wyteam.net/webapps/maccms/template/blueghost/img/favicon.ico",
- "sourceName": "APP电影(修复版)",
- "sourceUrl": "https://app.movie/index.php/vod/type/id/1.html"
- },
- {
- "articleStyle": 0,
- "customOrder": 14,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.wrap",
- "ruleContent": "@js:String(result).replace(/<html[\\s\\S]*class=\"main-wrap/,'<body><div class=\"main-wrap>').replace(/<div class=\"qr\">[\\s\\S]*/,\"</body>\")",
- "ruleDescription": "",
- "ruleImage": "tag.img@src",
- "ruleLink": "class.link-button@href",
- "rulePubDate": "",
- "ruleTitle": "class.title@text",
- "sourceGroup": "Origin",
- "sourceIcon": "http://static.daily.zhihu.com/img/app-logo.png",
- "sourceName": "知乎日報",
- "sourceUrl": "https://daily.zhihu.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 15,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.a@tag.img@src",
- "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
- "ruleNextPage": "class.page@text.下页@href",
- "rulePubDate": "",
- "ruleTitle": "tag.a@text",
- "sourceIcon": "http://img01.sogoucdn.com/app/a/100520146/f09eed641db72bd7a35f4433f17690ba",
- "sourceName": "文史博览",
- "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%96%87%E5%8F%B2%E5%8D%9A%E8%A7%88&key=697fee82-283e-4cb1-8db7-131185e17a83"
- },
- {
- "articleStyle": 0,
- "customOrder": 15,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "tag.article",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "img@src",
- "ruleLink": "tag.a.0@href",
- "ruleNextPage": "##class=\"page-numbers current\"><span class=\"elementor-screen-only\">Page</span>\\d+</span> <a class=\"page-numbers\" href=\"([^\"]+)\"##$1###",
- "rulePubDate": "class.elementor-post__meta-data@text",
- "ruleTitle": "h3@a@text",
- "sortUrl": "科普::https://www.yxgapp.com/category/video/science/&&英语::https://www.yxgapp.com/category/video/english/&&科技::https://www.yxgapp.com/category/video/technology/&&影评::https://www.yxgapp.com/category/video/movie/&&美食::https://www.yxgapp.com/category/video/food/&&励志::https://www.yxgapp.com/category/video/inpirations/&&商业::https://www.yxgapp.com/category/video/business/&&社会::https://www.yxgapp.com/category/video/society/&&旅游::https://www.yxgapp.com/category/video/travel/&&动物::https://www.yxgapp.com/category/video/animals/&&儿童::https://www.yxgapp.com/category/video/kids/&&卡通::https://www.yxgapp.com/category/video/cartoon/&&计算机::https://www.yxgapp.com/category/video/computer/&&心理::https://www.yxgapp.com/category/video/psychology/&&教育::https://www.yxgapp.com/category/video/education/&&手工::https://www.yxgapp.com/category/video/handcrafts/&&趣闻::https://www.yxgapp.com/category/video/mysteries/&&职场::https://www.yxgapp.com/category/video/career/&&极客::https://www.yxgapp.com/category/video/geeks/&&时尚::https://www.yxgapp.com/category/video/fashion/&&",
- "sourceIcon": "http://image.uc.cn/o/wemedia/s/upload/2017/e676a494f2c8b1412867d364976e158ex200x200x2.png;,80,webp;12;3,x140,;6,C-C,168x168,1,",
- "sourceName": "译学馆",
- "sourceUrl": "https://www.yxgapp.com/category/video/bigthink/"
- },
- {
- "articleStyle": 0,
- "customOrder": 16,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/penti.png",
- "sourceName": "喷嚏图卦",
- "sourceUrl": "http://47.105.79.245/v3/article?feedId=66&articleId=0&pageSize=20&isLookDown=true"
- },
- {
- "articleStyle": 0,
- "customOrder": 16,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "id.cardslist@children",
- "ruleContent": "class.article-content@tag.tr.0@html@js:result.replace(/.*gif.*/g,'').replace(/data-original.*/g,'')",
- "ruleDescription": "",
- "ruleImage": "img@data-original",
- "ruleLink": "h3@a@href",
- "ruleNextPage": "text.下一页@href",
- "ruleTitle": "h3@a@text##- 18疯情",
- "sourceGroup": "天域战歌",
- "sourceIcon": "https://www.18novel.xyz/wp-content/uploads/2020/06/2020062500051511.png",
- "sourceName": "网络美女",
- "sourceUrl": "https://www.18novel.xyz/category/online-beauty/"
- },
- {
- "articleStyle": 2,
- "customOrder": 16,
- "enableJs": false,
- "enabled": true,
- "header": " {\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": false,
- "ruleArticles": "class.row mt-2@class.item col-xs-6 col-sm-4 col-md-3",
- "ruleContent": "@js:\nvar title =\"{{@@class.text-muted.0@text}}\";\nvar count = 1;\nvar list = java.getStringList(\"id.masonry@img@data-src\",false).toArray().map\n(a=>'<img src=\"'+a+'\"><p style=\"text-align: center\"><a href= \"'+a+'\">查看大图 '+(count++)+'</a>').join(\"\\n\");\nresult = '<h5>'+title+'</h5>'+ list",
- "ruleImage": "class.item-img@src",
- "ruleLink": "class.item-link.0@href",
- "ruleNextPage": "class.page-link.-1@tag.a@href",
- "rulePubDate": "class.item-num.0@text",
- "ruleTitle": "class.item-link-text.0@text",
- "sortUrl": "秀人网::https://www.f4mm.com/tag/xiu-ren-wang\n花漾::https://www.f4mm.com/tag/hua-yang\n星颜社::https://www.f4mm.com/tag/xing-yan-she\n魅妍社::https://www.f4mm.com/tag/mei-yan-she\n蜜桃社::https://www.f4mm.com/tag/mi-tao-she\n模范学院::https://www.f4mm.com/tag/mo-fan-xue-yuan\n爱蜜社::https://www.f4mm.com/tag/ai-mi-she\n尤蜜荟::https://www.f4mm.com/tag/you-mi-hui\n美媛馆::https://www.f4mm.com/tag/mei-yuan-guan\n",
- "sourceIcon": "https://s1.ax1x.com/2020/09/17/wWjFvn.png",
- "sourceName": "美女写真",
- "sourceUrl": "平台_改进"
- },
- {
- "articleStyle": 0,
- "customOrder": 17,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/guancha.jpg",
- "sourceName": "观察者 要闻",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:28}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":105}\"\n}"
- },
- {
- "articleStyle": 2,
- "customOrder": 17,
- "enableJs": false,
- "enabled": true,
- "header": " {\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": false,
- "ruleArticles": "class.row mt-2@class.item col-xs-6 col-sm-4 col-md-3",
- "ruleContent": "@js:\nvar title =\"{{@@class.text-muted.0@text}}\";\nvar count = 1;\nvar list = java.getStringList(\"id.masonry@img@data-src\",false).toArray().map\n(a=>'<img src=\"'+a+'\"><p style=\"text-align: center\"><a href= \"'+a+'\">查看大图 '+(count++)+'</a>').join(\"\\n\");\nresult = '<h5>'+title+'</h5>' + list",
- "ruleImage": "class.item-img@src",
- "ruleLink": "class.item-link.0@href",
- "ruleNextPage": "class.page-link.-1@tag.a@href",
- "rulePubDate": "class.item-num.0@text",
- "ruleTitle": "class.item-link-text.0@text",
- "sortUrl": "杨晨晨::https://www.f4mm.com/tag/yang-chen-chen\n陈小喵::https://www.f4mm.com/tag/chen-xiao-miao\n王雨纯::https://www.f4mm.com/tag/wang-yu-chun\n陆萱萱::https://www.f4mm.com/tag/lu-xuan-xuan\n糯美子::https://www.f4mm.com/tag/mi-ni\n朱可儿::https://www.f4mm.com/tag/zhu-ke\n黄乐然::https://www.f4mm.com/tag/huang-le-ran\n周妍希::https://www.f4mm.com/tag/zhou-yan-xi\n徐嘉乐::https://www.f4mm.com/tag/xu-jia-le\n周于希::https://www.f4mm.com/tag/zhou-yu-xi-dummy\n刘钰儿::https://www.f4mm.com/tag/liu-yu-er\n妲己::https://www.f4mm.com/tag/da-ji-toxic\n露娜::https://www.f4mm.com/tag/na-lu-selena\n徐薇薇::https://www.f4mm.com/tag/xu-wei-wei\n李妍熙::https://www.f4mm.com/tag/li-yan-xi\n小尤奈::https://www.f4mm.com/tag/xiao-you-nai\n美绪::https://www.f4mm.com/tag/mei-xu\n易秀慧::https://www.f4mm.com/tag/yi-xiu-hui\n尹菲::https://www.f4mm.com/tag/solo-yin-fei\n唐思琪::https://www.f4mm.com/tag/tang-si-qi",
- "sourceIcon": "https://s1.ax1x.com/2020/09/17/wWjFvn.png",
- "sourceName": "模特分类",
- "sourceUrl": "模特_改进"
- },
- {
- "articleStyle": 2,
- "customOrder": 17,
- "enableJs": true,
- "enabled": true,
- "header": " {\"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36\"\n}",
- "loadWithBaseUrl": true,
- "ruleArticles": "class.row mt-2@class.item col-xs-6 col-sm-4 col-md-3",
- "ruleImage": "class.item-img@src",
- "ruleLink": "class.item-link.0@href",
- "ruleNextPage": "class.page-link.-1@tag.a@href",
- "rulePubDate": "class.item-num.0@text",
- "ruleTitle": "class.item-link-text.0@text",
- "sortUrl": "秀人网::https://www.f4mm.com/tag/xiu-ren-wang\n花漾::https://www.f4mm.com/tag/hua-yang\n星颜社::https://www.f4mm.com/tag/xing-yan-she\n魅妍社::https://www.f4mm.com/tag/mei-yan-she\n蜜桃社::https://www.f4mm.com/tag/mi-tao-she\n模范学院::https://www.f4mm.com/tag/mo-fan-xue-yuan\n爱蜜社::https://www.f4mm.com/tag/ai-mi-she\n尤蜜荟::https://www.f4mm.com/tag/you-mi-hui\n美媛馆::https://www.f4mm.com/tag/mei-yuan-guan",
- "sourceGroup": "🔞 福利",
- "sourceIcon": "https://s1.ax1x.com/2020/09/17/wWjFvn.png",
- "sourceName": "平台分类",
- "sourceUrl": "喜欢的自己加"
- },
- {
- "articleStyle": 0,
- "customOrder": 18,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "http://47.105.79.245/meiriyiwen.png",
- "sourceName": "每日一文",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:27}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":87}\"\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 19,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data.data[*]",
- "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
- "ruleDescription": "",
- "ruleImage": "$.thumbnail",
- "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
- "rulePubDate": "$.createTimeString",
- "ruleTitle": "$.title",
- "sourceGroup": "",
- "sourceIcon": "https://static.zhihu.com/heifetz/assets/apple-touch-icon-120.b3e6278d.png",
- "sourceName": "知乎每日精选",
- "sourceUrl": "http://47.105.79.245/v2/article/newest,{\n \"headers\": \"{User-Agent:\\\"okhttp/3.10.0\\\",Content-Type:\\\"application/json; charset=UTF-8\\\",Content-Length:26}\",\n \"method\": \"POST\",\n \"body\": \"{\\\"articleId\\\":0,\\\"feedId\\\":8}\"\n}"
- },
- {
- "articleStyle": 0,
- "customOrder": 19,
- "enableJs": true,
- "enabled": false,
- "loadWithBaseUrl": true,
- "ruleArticles": "<js>\nJSON.parse(result).items.map(bk=>({\na:bk.title+bk.summary,\nb:java.timeFormat(bk.create_time*1000),\nc:bk.book_cover,\nd:\"https://www.duokan.com/store/v0/android/feed/\"+bk.id\n}))\n</js>",
- "ruleContent": "<js>\nvar json=JSON.parse(result);\n\n\"<center><h3>\"+json.data.title+\"</h3></center>\"+json.data.content.d.map(it=>{\r\n if(it.t==\"b\"){\r\n var bk=json.books[it.c];\r\n return \"<center><img src='\"+bk.cover+\"' width='130px' height='180px'></center>\\n\"+\"<center><h3>\"+bk.title+\"</h3></center>\"+\"<center><p>\"+bk.role.join(\"<br>\").replace(/者,/g,\"者:\")+\"</p></center>\\n\"+\"<p>简介:<br> \"+bk.intro+\"</p>\"+\"<p>****************************************************</p>\";\r\n }else{\r\n return \"<h4>\"+it.c.replace(/\\n/g,\"<br>\")+\"</h4>\";\r\n }\r\n}).join(\"\\n\")</js>",
- "ruleDescription": "",
- "ruleImage": "c",
- "ruleLink": "d",
- "ruleNextPage": "",
- "rulePubDate": "b",
- "ruleTitle": "a",
- "sourceGroup": "📖 推书",
- "sourceIcon": "https://avatar.bbs.miui.com/data/avatar/047/62/40/97_avatar_small.jpg",
- "sourceName": "多看阅读",
- "sourceUrl": "https://www.duokan.com/store/v0/android/feed?_t=1573971619&_c=21630&start=0&count=100&withid=1,{\n\"Headers\": \"User-Agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 5 Build/_BuildID_) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36 XiaoMi/MiuiBrowser/2.1.1\"\n}"
- },
- {
- "articleStyle": 2,
- "customOrder": 20,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.thumb-overlay-albums&&class.well well-sm",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.img@data-original&&tag.img@src",
- "ruleLink": "tag.a.0@href@js:\"https://18comic.bet\"+result",
- "ruleNextPage": "class.prevnext.0@href",
- "rulePubDate": "class.video-views pull-left@text&&class.video-added@text",
- "ruleTitle": "tag.img@title",
- "sortUrl": "总排行榜::https://18comic.bet/albums?o=mv\r\n月排行榜::https://18comic.bet/albums?t=m&o=mv\r\n周排行榜::https://18comic.bet/albums?o=mv&t=w\r\n日排行榜::https://18comic.bet/albums?o=mv&t=t\n最新A漫::https://18comic.bet/albums?o=mr\n同人::https://18comic.bet/albums/doujin\n\n单行本::https://18comic.bet/albums/single?o=mr\n短篇::https://18comic.bet/albums/short\n其他::https://18comic.bet/albums/another\n韩漫::https://18comic.bet/albums/hanman\n美漫::https://18comic.bet/albums/meiman\nH动漫::https://18comic.bet/videos\nH电影::https://18comic.bet/movies",
- "sourceGroup": "",
- "sourceIcon": "https://18comic.bet/media/logo/new_logo.png",
- "sourceName": "禁漫天堂",
- "sourceUrl": "https://18comic.bet/"
- },
- {
- "articleStyle": 2,
- "customOrder": 20,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "class.thumb-overlay-albums&&class.well well-sm",
- "ruleContent": "",
- "ruleDescription": "",
- "ruleImage": "tag.img@data-original&&tag.img@src",
- "ruleLink": "tag.a.0@href@js:\"https://18comic2.biz\"+result",
- "ruleNextPage": "class.prevnext.0@href",
- "rulePubDate": "class.video-views pull-left@text&&class.video-added@text",
- "ruleTitle": "tag.img@title",
- "sortUrl": "总排行榜::https://18comic3.biz/albums?o=mv\r\n月排行榜::https://18comic3.biz/albums?t=m&o=mv\r\n周排行榜::https://18comic3.biz/albums?o=mv&t=w\r\n日排行榜::https://18comic3.biz/albums?o=mv&t=t\n最新A漫::https://18comic3.biz/albums?o=mr\n同人::https://18comic3.biz/albums/doujin\n\n单行本::https://18comic3.biz/albums/single?o=mr\n短篇::https://18comic3.biz/albums/short\n其他::https://18comic3.biz/albums/another\n韩漫::https://18comic3.biz/albums/hanman\n美漫::https://18comic3.biz/albums/meiman\nH动漫::https://18comic3.biz/videos\nH电影::https://18comic3.biz/movies",
- "sourceGroup": "",
- "sourceIcon": "https://18comic2.biz/media/logo/new_logo.png",
- "sourceName": "禁漫天堂",
- "sourceUrl": "https://18comic3.biz/"
- },
- {
- "articleStyle": 0,
- "customOrder": 24,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "id.song-list-pre-cache@class.f-hide@tag.a||class.tit",
- "ruleContent": "<js>\r\n\r\ndata = JSON.parse(result)\r\n\r\nvar pic='<div class=\"outer-wrapper page-width\"><div class=\"player page-width\"><div class=\"top\"><h2 class=\"title episode-name\"></h2></div><div class=\"background\"><div class=\"background-mask\"></div></div><div class=\"player-cover p-run\"><img class=\"image\" src=\"'+data.songs[0].al.picUrl+'\"></div>'\nvar id=data.privileges[0].id\nvar t=java.ajax('https://api.imjad.cn/cloudmusic/?type=song&id='+id)\nvar t=JSON.parse(t)\nvar video='<div class=\"bottom\"><div class=\"personalized\"> <div class=\"item to-list-link\">'+'<audio id=\"kugou\" height=\"100%\" width=\"100%\" controls=\"\" src=\"'+t.data[0].url+'\"'+'>'+'</audio> '\r\nresult='<html lang=\"en\" data-dpr=\"1\" style=\"font-size: 39.3091px;\"><head>'+'<link rel=\"stylesheet\" href=\"http://m.6yueting.com/css/play.css?v=1.0.2\">'+pic+'<p>'+video\r\n</js>\r\n",
- "ruleDescription": "",
- "ruleImage": "@css:img@src@js:result.split(\"?\")[0]",
- "ruleLink": "@href##/s.*=@js:\"https://api.imjad.cn/cloudmusic/?type=detail&id=\"+result",
- "rulePubDate": "",
- "ruleTitle": "@text",
- "sortUrl": "飙升榜::https://music.163.com/discover/toplist?id=19723756\n新歌榜::https://music.163.com/discover/toplist?id=3779629\n原创榜::https://music.163.com/discover/toplist?id=2884035\n热歌榜::https://music.163.com/discover/toplist?id=3778678\n说唱榜::https://music.163.com/discover/toplist?id=991319590\n抖音榜::https://music.163.com/discover/toplist?id=2250011882\r\n电音榜::https://music.163.com/discover/toplist?id=1978921795",
- "sourceGroup": "音频",
- "sourceIcon": "https://s3.jpg.cm/2020/04/12/6Xjqw.png",
- "sourceName": "网易云音乐",
- "sourceUrl": "https://music.163.com/discover/toplist?"
- },
- {
- "articleStyle": 0,
- "customOrder": 28,
- "enableJs": false,
- "enabled": true,
- "header": "{\n Cookie:\"uid=000000\"\n}",
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data",
- "ruleContent": "<js>\nvar json=JSON.parse(result).data;\n\n\"<style>body{padding:10px;line-height:2em;letter-spacing: 2px;background:floralwhite;font-family:sans-serif-Helvetica;word-wrap: break-word}</style>\"+json.map((x,i)=>\"<center><h4>No.\"+(i+1)+\"</h4><img src='\"+x.bookIcn+\"' width='130px' height='180px' ></center>\"+\"<p>书名:\"+x.bookName+\"</p><p>作者:\"+x.bookAuthor+\"</p><p>简介:\"+x.bookAppraise+\"</p><p>创建时间:\"+x.createTime+\"</p><p>更新时间:\"+x.updateTime+\"</p><p>*********************************</p>\").join(\"\\n\")\n</js>",
- "ruleImage": "$.headUrl",
- "ruleLink": "http://api.moonreader.cn/mreader/discuss/queryBookListInfo.do?listId={{$.listId}}",
- "rulePubDate": "updateTime",
- "ruleTitle": "listName",
- "sourceGroup": "订阅源集合",
- "sourceIcon": "https://android-artworks.25pp.com/fs08/2019/11/15/7/106_4213117808d53ee3721efc0fdf294589_con.png",
- "sourceName": "搜书大师书单",
- "sourceUrl": "http://api.moonreader.cn/mreader/discuss/queryBookLists.do?skip=0&maxCount=20&sortType=1"
- },
- {
- "articleStyle": 0,
- "customOrder": 44,
- "enableJs": true,
- "enabled": true,
- "header": "{\n\"Content-Type\": \"application/x-www-form-urlencoded;charset=utf-8\"}",
- "loadWithBaseUrl": true,
- "ruleArticles": "$.response.items[*]||$.response.posts[*]",
- "ruleContent": "@css:.g-mnc,div[class~=cont],.main\n.box,.ct@html##(.*?class=\"nctitle\">|<!-- Pager -->)[\\s\\S]+|(?<=\\<p\\>)(\\s| )*",
- "ruleDescription": "",
- "ruleImage": "$.post\n@js:if(result.match(/firstImageUrl=\\[\"\",\"\"\\]/)){\nresult=result.match(/bigAvaImg=(.*?),/)[1];}else{\nresult=result.match(/firstImageUrl=\\[\"([^\"]+)\"/)[1]\n}",
- "ruleLink": "$.post.blogPageUrl",
- "ruleNextPage": "page",
- "rulePubDate": "$.post.publishTime\n@js:java.timeFormat(result)",
- "ruleTitle": "$.post.title||$.post.digest||$.post.blogInfo.blogId\n##^(?:<.*?>)*([^<]{0,20})##$1###",
- "sortUrl": "砂上雪::http://api.lofter.com/v2.0/blogHomePage.api?product=lofter-android-6.9.2,{\"method\":\"POST\",\"body\":\"supportposttypes=1%2C2%2C3%2C4%2C5%2C6&blogdomain=taste-s.lofter.com&offset={{(page-1)*18}}&method=getPostLists&postdigestnew=1&returnData=1&limit=18&checkpwd=1&needgetpoststat=1\"}\n裹紧我的萧被子::http://api.lofter.com/v2.0/blogHomePage.api?product=lofter-android-6.9.2,{\"method\":\"POST\",\"body\":\"supportposttypes=1%2C2%2C3%2C4%2C5%2C6&blogdomain=xbwuj.lofter.com&offset={{(page-1)*18}}&method=getPostLists&postdigestnew=1&returnData=1&limit=18&checkpwd=1&needgetpoststat=1\"}\n\n摄影::http://api.lofter.com/v2.0/newTag.api?product=lofter-android-6.9.2,{\"method\": \"POST\",\"body\": \"method=newTagSearch&offset={{(page-1) *18}}&limit=18&firstpermalink=null&tag=摄影&type=new\"}\n壁纸::http://api.lofter.com/v2.0/newTag.api?product=lofter-android-6.9.2,{\"method\": \"POST\",\"body\": \"method=newTagSearch&offset={{(page-1) *18}}&limit=18&firstpermalink=null&tag=壁纸&type=new\"}",
- "sourceIcon": "https://img03.sogoucdn.com/v2/thumb/crop/xy/ai/x/0/y/0/w/300/h/300/iw/30/ih/30/t/0/ir/3/retype_exclude_gif/ext/auto/q/80?t=2&appid=200965&url=https%3A%2F%2Fpic.baike.soso.com%2Fugc%2Fbaikepic2%2F18219%2Fcut-20200606104908-1477760608_jpg_311_249_6076.jpg%2F0&referer=http%3A%2F%2Fbaike.sogou.com%2Fm%2FfullLemma%3Flid%3D40079055%26fromTitle%3DLofter&sign=f68e1160178e042772cc95d8ebb8f737",
- "sourceName": "Lofter",
- "sourceUrl": "如要添加,请按格式添加在分类Url\n\n用户名::http://api.lofter.com/v2.0/blogHomePage.api?product=lofter-android-6.9.2,{\"method\":\"POST\",\"body\":\"supportposttypes=1%2C2%2C3%2C4%2C5%2C6&blogdomain=用户主页链接&offset={{(page-1)*18}}&method=getPostLists&postdigestnew=1&returnData=1&limit=18&checkpwd=1&needgetpoststat=1\"}\n\n标签名::http://api.lofter.com/v2.0/newTag.api?product=lofter-android-6.9.2,{\"method\": \"POST\",\"body\": \"method=newTagSearch&offset={{(page-1) *18}}&limit=18&firstpermalink=null&tag=标签名&type=new\"}",
- "style": ".text blockquote{ border-left-color:#828d95;}\nbody{background-color:#dfdfe1;width:100%}\nbody{background-image:url(//imglf3.nosdn0.126.net/img/1553236065974180.png)}\n.img img{width:100%}\na, a:hover, .day{color:#828d95;}\np{text-indent:2em}\n.pic img{width:100%}"
- },
- {
- "articleStyle": 0,
- "customOrder": 47,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.data.list",
- "ruleContent": "",
- "ruleDescription": "<p style=\"text-align:center\"><strong>{{$.title}}</strong></p><iframe src=\"https://player.bilibili.com/player.html?aid={{$.aid}}\" width=\"350px\" height=\"250px\" scrolling=\"no\" border=\"0\" frameborder=\"no\" framespacing=\"0\" allowfullscreen=\"true\"></iframe>",
- "ruleImage": "$.pic",
- "ruleLink": "https://player.bilibili.com/player.html?aid={{$.aid}}",
- "rulePubDate": "",
- "ruleTitle": "$.title",
- "sourceGroup": "🎞 视频",
- "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
- "sourceName": "哔哩哔哩",
- "sourceUrl": "https://api.bilibili.com/x/web-interface/ranking"
- },
- {
- "articleStyle": 0,
- "customOrder": 60,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data",
- "ruleContent": "<style>body{background:floralwhite;}</style>\n<center><h3>帖子详情</h3></center><h3>【{{$..category.name}}】{{$.data.threadInfo.title}}</h3>\n<p>发布者:{{$.data.threadInfo.userInfo.nickname}}</p>\n<p>{{$.data.threadInfo.content..text}}</p>*************************************<center>\n<img src=\"{{$..coverImg}}\" width='130px' height='180px'>\n<h3>{{$.data.threadInfo..bookName}}</h3>\n<p>作者:{{$..authorPenName}}</p>\n<p>{{$..bookChannel.name}}·{{$..bookCategory.name}}·{{$..authLevel.name}}</p>\n<p>更新至:{{$..lastUpdateChapter.name}}</p></center><p>简介:{{$..introduction}}</p>",
- "ruleImage": "$..coverImg",
- "ruleLink": "http://api.17k.com/sns/thread/{{$.id}}?groupId={{$.groupId}}&clientType=1&cpsOpid=17Kxiaomi&_filterData=1&channel=0&_versions=1041&merchant=17Kxiaomi&appKey=4037465544&cpsSource=0&platform=2",
- "rulePubDate": "summary",
- "ruleTitle": "【{{$.groupName}}】{{$.title}}",
- "sourceGroup": "订阅源集合",
- "sourceIcon": "https://is4-ssl.mzstatic.com/image/thumb/Purple123/v4/9a/1e/39/9a1e39a1-9918-8997-65ed-5e5359a60479/AppIcon-0-0-1x_U007emarketing-0-0-0-7-0-0-85-220.png/246x0w.png",
- "sourceName": "17k找书圈",
- "sourceUrl": "http://api.17k.com/sns/group/thread?num=100&typeId=5&id=2519733&page=1&type=0&clientType=1&cpsOpid=17Kxiaomi&_filterData=1&channel=0&_versions=1041&merchant=17Kxiaomi&appKey=4037465544&cpsSource=0&platform=2"
- },
- {
- "articleStyle": 0,
- "customOrder": 69,
- "enableJs": false,
- "enabled": true,
- "loadWithBaseUrl": false,
- "ruleArticles": "$.pins",
- "ruleContent": "<style>\nbody{\npadding:10px;\nline-height:2em;\nletter-spacing:2px;\nbackground:floralwhite;\nfont-family: sans-serif-Helvetica;\n}\np{ \ntext-indent:2em;\n}\na {\ncolor: grey;\ntext-decoration:none;\n}\nh1{\ntext-align:center;\nfont-size:20px;\nline-height:1.5em;\n}\nimg{padding:5px 0;max-width:100% !important;width:auto;height:auto;}\n</style>\n<div>\n<h1>{$.pin.board.title}</h1>\n<p>By:{$.pin.user.username}</p>\n<p>{$.pin.raw_text}</p>\n<p>{$.pin.board.description}</p>\n<img src=\"https://hbimg.huabanimg.com//{$.pin.file.key}\"/>\n<p>相关推荐:</p>\n<img src=\"https://hbimg.huabanimg.com//{$.pin.board.pins[0].file.key}\"/>\n<img src=\"https://hbimg.huabanimg.com//{$.pin.board.pins[1].file.key}\"/>\n<img src=\"https://hbimg.huabanimg.com//{$.pin.board.pins[2].file.key}\"/>\n<img src=\"https://hbimg.huabanimg.com//{$.pin.board.pins[3].file.key}\"/>\n<div><a href=\"https://huaban.com/pins/{$.pin.pin_id}\">阅读原文</a></div>\n</div>",
- "ruleDescription": "",
- "ruleImage": "https://hbimg.huabanimg.com//{$.file.key}",
- "ruleLink": "https://api.huaban.com/pins/{$.pin_id}",
- "rulePubDate": "$.created_at@js:(new Date(result*1000)).toLocaleDateString();",
- "ruleTitle": "$.board.title",
- "sortUrl": "热门::https://api.huaban.com/popular?limit=100\n旅行::https://api.huaban.com/favorite/travel_places?limit=100\n美图::https://api.huaban.com/favorite/quotes?limit=100\n美女::https://api.huaban.com/favorite/beauty?limit=100\n漫画::https://api.huaban.com/favorite/illustration?limit=100\n动漫::https://api.huaban.com/favorite/anime?limit=100",
- "sourceGroup": "🗾 美图",
- "sourceIcon": "https://hbimg.huabanimg.com//6b7b7456a3cb7b1b149be2463dca29c18e8c03c2bd0c-DcxKZ5_/sq/150/gifto/true/format/webp",
- "sourceName": "花瓣\n合集",
- "sourceUrl": "https://api.huaban.com"
- },
- {
- "articleStyle": 0,
- "customOrder": 74,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "$.[*]",
- "ruleContent": "<js>var doc=org.jsoup.Jsoup.parse(result);\n\"<h2>\"+doc.select(\"title\").text()+\"</h2>\"+String(doc.select(\".layout__Skeleton-zgzfsa-3\").html()).replace(/style=\"[^\"]*\"/g,\"\")</js>",
- "ruleDescription": "",
- "ruleImage": "small_image",
- "ruleLink": "https://m.guokr.com/article/{$.id}/",
- "rulePubDate": "date_created",
- "ruleTitle": "title",
- "sourceGroup": "💨 图文",
- "sourceIcon": "https://tvax1.sinaimg.cn/crop.0.0.300.300.180/6e53d84fly8fkf9vrhbqbj208c08c74d.jpg?KID=imgbed,tva&Expires=1584744731&ssig=y1uBtsuvVV",
- "sourceName": "果壳",
- "sourceUrl": "https://m.guokr.com/beta/proxy/science_api/articles?retrieve_type=by_category&page=1"
- },
- {
- "articleStyle": 0,
- "customOrder": 111,
- "enableJs": true,
- "enabled": false,
- "header": "",
- "loadWithBaseUrl": false,
- "ruleArticles": "$.data[*].documents[*]",
- "ruleContent": "<js>\nvar doc=org.jsoup.Jsoup.parse(result)\n\"<h2>\"+doc.select(\"h2\").text()+\"</h2>\"+String(doc.select(\".content-bd\").html()).replace(/src\\=\\\"\\/\\//g,\"src\\=\\\"https://\");\n</js>",
- "ruleDescription": "",
- "ruleImage": "$.images",
- "ruleLink": "$.url",
- "rulePubDate": "$.date",
- "ruleTitle": "$.title",
- "sourceGroup": "📰 资讯",
- "sourceIcon": "http://t1.market.xiaomi.com/thumbnail/webp/l144q80/AppStore/0ab964f09cbb019970ac2990ef8f619fa9c40dbc2",
- "sourceName": "MIUI浏览器",
- "sourceUrl": "https://hot.browser.miui.com/rec/v7.9/channel?client_version_code=110111000&client_version_name=11.1.11&isAdvertisingEnabled=true&traceid&vaid=6328ee2a6df938d6&channelId=rec&oaid=56fbb3561e299e40"
- },
- {
- "articleStyle": 0,
- "customOrder": 144,
- "enableJs": true,
- "enabled": true,
- "loadWithBaseUrl": true,
- "ruleArticles": "html",
- "ruleContent": "",
- "ruleImage": "@js:'http://img.alicdn.com/imgextra/i1/0/O1CN01eobjjy1K4sdBtNtzu_!!0-rate.jpg'",
- "ruleLink": "@js:result=baseUrl",
- "rulePubDate": "",
- "ruleTitle": "title@text",
- "sortUrl": "浏览器::http://xianyui.icu/index.html\n酷狗音乐::http://m.kugou.com\n爱你影院::http://iyy.5ay.xyz\n今日头条::https://m.toutiao.com/?W2atIF=1\n奇秀直播::http://m-x.pps.tv/",
- "sourceGroup": "自己在分类添加你喜欢的链接即可\n格式 网站名字::网站连接",
- "sourceIcon": "",
- "sourceName": "阅读浏览器~让阅读拥有内部浏览器",
- "sourceUrl": "http://xianyui.icu/index.html",
- "style": ""
- }
- ]
|