178rss.json 250 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306
  1. [
  2. {
  3. "articleStyle": 2,
  4. "customOrder": -11240,
  5. "enableJs": true,
  6. "enabled": true,
  7. "loadWithBaseUrl": true,
  8. "ruleArticles": "class.myui-panel-box clearfix@ul@li",
  9. "ruleContent": "",
  10. "ruleDescription": "",
  11. "ruleImage": "class.myui-vodlist__thumb lazyload@data-original",
  12. "ruleLink": "class.myui-vodlist__thumb lazyload@href@js:\"https://www.ffys.vip\"+result",
  13. "ruleNextPage": "text.下一页@href",
  14. "rulePubDate": "class.pic-text text-right@text",
  15. "ruleTitle": "class.myui-vodlist__thumb lazyload@title",
  16. "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",
  17. "sourceGroup": "",
  18. "sourceIcon": "http://www.ffys.vip/favicon.ico",
  19. "sourceName": "飞凤影视(修复版)",
  20. "sourceUrl": "http://www.ffys.vip/vod/type/id/qitaleixing.html"
  21. },
  22. {
  23. "articleStyle": 0,
  24. "customOrder": -11238,
  25. "enableJs": false,
  26. "enabled": true,
  27. "loadWithBaseUrl": false,
  28. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  29. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  30. "ruleDescription": "",
  31. "ruleLink": "//@href",
  32. "ruleNextPage": "",
  33. "ruleTitle": "//text()",
  34. "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",
  35. "sourceGroup": "W3school",
  36. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  37. "sourceName": "W3school\nHTML",
  38. "sourceUrl": "https://www.w3school.com.cn/html/index.asp"
  39. },
  40. {
  41. "articleStyle": 0,
  42. "customOrder": -10719,
  43. "enableJs": false,
  44. "enabled": true,
  45. "loadWithBaseUrl": false,
  46. "ruleArticles": "tag.item",
  47. "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>",
  48. "ruleDescription": "",
  49. "ruleImage": "",
  50. "ruleLink": "tag.guid@text",
  51. "rulePubDate": "tag.pubDate@text",
  52. "ruleTitle": "tag.title@text",
  53. "sourceGroup": "🛰 科技",
  54. "sourceIcon": "https://m.cnbeta.com/favicon.ico",
  55. "sourceName": "cnBeta",
  56. "sourceUrl": "https://www.cnbeta.com/backend.php",
  57. "style": "img { height: auto;width:100%; }"
  58. },
  59. {
  60. "articleStyle": 0,
  61. "customOrder": -10251,
  62. "enableJs": false,
  63. "enabled": true,
  64. "loadWithBaseUrl": false,
  65. "ruleArticles": "class.content@class.placeholder",
  66. "ruleContent": "tag.main@html&&class.all-comment@html##我要纠错@js:result.replace(/data-original/g,\"src\")",
  67. "ruleImage": "tag.img@data-original",
  68. "ruleLink": "tag.a@href##$##,{\"webView\":true}",
  69. "rulePubDate": "class.post-time@text",
  70. "ruleTitle": "class.plc-title@text",
  71. "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",
  72. "sourceGroup": "科技",
  73. "sourceIcon": "https://www.ithome.com/img/t.png",
  74. "sourceName": "IT之家",
  75. "sourceUrl": "https://m.ithome.com"
  76. },
  77. {
  78. "articleStyle": 0,
  79. "customOrder": -10250,
  80. "enableJs": false,
  81. "enabled": true,
  82. "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}",
  83. "loadWithBaseUrl": false,
  84. "ruleArticles": "class.recommend-list@tag.article",
  85. "ruleContent": "class.article-content@html&&class.comment_list@html@js:result.replace(/data-src=\\\"/g,\"src=\\\"https\\:\")",
  86. "ruleImage": "tag.img@src",
  87. "ruleLink": "tag.a@href",
  88. "rulePubDate": "tag.span@text",
  89. "ruleTitle": "tag.h3@text",
  90. "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}",
  91. "sourceGroup": "",
  92. "sourceIcon": "https://mail.163.com/favicon.ico",
  93. "sourceName": "网易-轻松一刻",
  94. "sourceUrl": "https://3g.163.com/touch/exclusive/?referFrom=163##$##,{\"webView\":true}",
  95. "style": ""
  96. },
  97. {
  98. "articleStyle": 0,
  99. "customOrder": -10250,
  100. "enableJs": false,
  101. "enabled": true,
  102. "loadWithBaseUrl": false,
  103. "ruleArticles": "class.recommend-list@tag.article",
  104. "ruleContent": "class.article-content@html&&class.comment_list@html##data-src##src",
  105. "ruleImage": "tag.img@src",
  106. "ruleLink": "tag.a@href##$##,{\"webView\":true}",
  107. "rulePubDate": "tag.span@text",
  108. "ruleTitle": "tag.h3@text",
  109. "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}",
  110. "sourceGroup": "",
  111. "sourceIcon": "https://3g.163.com/favicon.ico",
  112. "sourceName": "网易-轻松一刻",
  113. "sourceUrl": "https://3g.163.com/touch/exclusive/subchannel/qsyk/?referFrom=163##$##,{\"webView\":true}",
  114. "style": ""
  115. },
  116. {
  117. "articleStyle": 0,
  118. "customOrder": -10248,
  119. "enableJs": false,
  120. "enabled": true,
  121. "header": "{\n\"X-Requested-With\": \"XMLHttpRequest\"\n}",
  122. "loadWithBaseUrl": false,
  123. "ruleArticles": "$.data",
  124. "ruleContent": "",
  125. "ruleDescription": "",
  126. "ruleImage": "",
  127. "ruleLink": "http://yck.mumuceo.com/yuedu/shuyuan/yuan/id/{$.id}.html",
  128. "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>",
  129. "rulePubDate": "$.time",
  130. "ruleTitle": "$.yuansite",
  131. "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\"}",
  132. "sourceGroup": "⚡常用",
  133. "sourceIcon": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2110974511,4205650978&fm=26&gp=0.jpg",
  134. "sourceName": "源仓库修复",
  135. "sourceUrl": "http://yck.mumuceo.com/yuedu/index/getlist?page=1&limit=50&keys=&var=&faxian=&sousuo=&audio="
  136. },
  137. {
  138. "articleStyle": 2,
  139. "customOrder": -10248,
  140. "enableJs": true,
  141. "enabled": true,
  142. "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}",
  143. "loadWithBaseUrl": true,
  144. "ruleArticles": "//div[@class=\"aui-scrollView-type-right\"]/a",
  145. "ruleContent": "",
  146. "ruleDescription": "",
  147. "ruleImage": "//div[@class=\"aui-books-img\"]/img/@src",
  148. "ruleLink": "//@href",
  149. "ruleNextPage": "",
  150. "rulePubDate": "//div[2]/h4/text()|//div[2]/h4/em/text()",
  151. "ruleTitle": "//div[2]/h3/text()",
  152. "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",
  153. "sourceIcon": "http://www.zxcs.me/favicon.ico",
  154. "sourceName": "知轩藏书[半成品,求大佬修复",
  155. "sourceUrl": "http://m.zxcs.info"
  156. },
  157. {
  158. "articleStyle": 0,
  159. "customOrder": -10075,
  160. "enableJs": true,
  161. "enabled": true,
  162. "header": "",
  163. "loadWithBaseUrl": true,
  164. "ruleArticles": "$.itemList",
  165. "ruleContent": "",
  166. "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>",
  167. "ruleImage": "$.data.content.data.cover.feed",
  168. "ruleLink": "$.data.text||$.data.content.data.webUrl.raw||$.data.web.raw",
  169. "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",
  170. "rulePubDate": "$.data.header.description",
  171. "ruleTitle": "$.data.text||$.data.content.data.title||$.data.title",
  172. "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",
  173. "sourceGroup": "",
  174. "sourceIcon": "https://mip-haote-com.mipcdn.com/i/s/img.haote.com/upload/info/20170621/1498024249458069.png",
  175. "sourceName": "开眼",
  176. "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"
  177. },
  178. {
  179. "articleStyle": 0,
  180. "customOrder": -10060,
  181. "enableJs": true,
  182. "enabled": true,
  183. "header": "{\n\"Cookie\":\"\"\n}",
  184. "loadWithBaseUrl": true,
  185. "ruleArticles": "<js>result.replace(/\\\\\"/g,'\\\"')</js>\ntag.article||tag.a",
  186. "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}",
  187. "ruleDescription": "",
  188. "ruleImage": "tag.img@src",
  189. "ruleLink": "tag.a.0@href##^##https://www.acfun.cn",
  190. "ruleNextPage": "page",
  191. "rulePubDate": "class.info@text||class.play-info@text",
  192. "ruleTitle": "class.title@text",
  193. "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",
  194. "sourceGroup": "DIY",
  195. "sourceIcon": "https://tx-free-imgs.acfun.cn/content/2020_8_8/1.5968172918955564E9.png?imageMogr2/format/webp/quality/75!/ignore-error/1",
  196. "sourceName": "AcFun\n思维实验室",
  197. "sourceUrl": "https://www.acfun.cn/u/2872448",
  198. "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}"
  199. },
  200. {
  201. "articleStyle": 0,
  202. "customOrder": -10047,
  203. "enableJs": false,
  204. "enabled": true,
  205. "loadWithBaseUrl": false,
  206. "ruleArticles": "$.children",
  207. "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>",
  208. "ruleDescription": "",
  209. "ruleImage": "$..pic_large_url",
  210. "ruleLink": "https://fm.music.xiaomi.com{$..request_url}",
  211. "rulePubDate": "{{$..subtitle}}",
  212. "ruleTitle": "$.data..name",
  213. "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",
  214. "sourceGroup": "音频",
  215. "sourceIcon": "http://pic.greenxf.com/2019/0731/1907315d4129bfd416f.png",
  216. "sourceName": "广播电台",
  217. "sourceUrl": "https://fm.music.xiaomi.com/fm/"
  218. },
  219. {
  220. "articleStyle": 2,
  221. "customOrder": -10000,
  222. "enableJs": true,
  223. "enabled": true,
  224. "loadWithBaseUrl": true,
  225. "ruleArticles": "class.vodlist@li",
  226. "ruleContent": "class.btn_primary.0@href\n<js>java.ajax('http://www.niubiyy.com'+result)</js>",
  227. "ruleImage": "tag.a@data-background||tag.a@data-original",
  228. "ruleLink": "tag.a.0@href",
  229. "ruleNextPage": "page",
  230. "rulePubDate": "{{@@class.pic_text@text}}•{{@@class.vodlist_sub@text}}",
  231. "ruleTitle": "class.vodlist_title@a@textNodes",
  232. "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",
  233. "sourceIcon": "",
  234. "sourceName": "牛逼影院",
  235. "sourceUrl": "http://www.niubiyy.com"
  236. },
  237. {
  238. "articleStyle": 0,
  239. "customOrder": -9999,
  240. "enableJs": true,
  241. "enabled": true,
  242. "loadWithBaseUrl": true,
  243. "ruleArticles": "$.list[*]",
  244. "ruleContent": "<js>result</js>",
  245. "ruleImage": "$.pic",
  246. "ruleLink": "$.url",
  247. "rulePubDate": "$.time",
  248. "ruleTitle": "$.title",
  249. "sourceGroup": "VIP",
  250. "sourceIcon": "https://gitee.com/alanskycn/yuedu/raw/master/JS/icon.jpg",
  251. "sourceName": "Legado",
  252. "sourceUrl": "https://gitee.com/alanskycn/yuedu/raw/master/JS/RSS/custom/customRss.json"
  253. },
  254. {
  255. "articleStyle": 0,
  256. "customOrder": -1033,
  257. "enableJs": true,
  258. "enabled": true,
  259. "loadWithBaseUrl": true,
  260. "ruleArticles": "class.article well clearfix@tag.div",
  261. "ruleContent": "class.centent-article@html",
  262. "ruleDescription": "",
  263. "ruleImage": "class.attachment-full size-full wp-post-image@src",
  264. "ruleLink": "class.title-article@h1@a@href",
  265. "ruleNextPage": "class.pagination pagination-zan pull-right@\ntag.li.10@a@href",
  266. "rulePubDate": "class.tag-article@span@text",
  267. "ruleTitle": "tag.a.-1@title",
  268. "sortUrl": "作品项目::https://vcb-s.com/archives/category/works\n科普系列::https://vcb-s.com/archives/category/kb\n计划与日志::https://vcb-s.com/archives/category/planlog",
  269. "sourceGroup": "动漫论坛",
  270. "sourceIcon": "https://cache.cswsadlab.com/wp-content/uploads/2020/07/Nakitai-Watashi-wa-Neko-o-Kaburu_1500px_slide_2.jpg",
  271. "sourceName": "VCB-Studio",
  272. "sourceUrl": "https://vcb-s.com/"
  273. },
  274. {
  275. "articleStyle": 0,
  276. "customOrder": -210,
  277. "enableJs": true,
  278. "enabled": true,
  279. "header": "{\n \"User-Agent\": \"Dalvik/2.1.0 (Linux; U; Android 10; MI CC 9 Meitu Edition MIUI/20.5.14)\"\n}",
  280. "loadWithBaseUrl": true,
  281. "ruleArticles": "class.note-item note-item",
  282. "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;/,'')",
  283. "ruleDescription": "",
  284. "ruleImage": "",
  285. "ruleLink": "tag.a.0@href@js:result='https://www.xiaohongshu.com'+result",
  286. "rulePubDate": "",
  287. "ruleTitle": "tag.h3@text",
  288. "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",
  289. "sourceGroup": "🌈其他",
  290. "sourceIcon": "https://pic.17qq.com/uploads/gfwmppwkwy.jpeg",
  291. "sourceName": "小红书",
  292. "sourceUrl": "https://www.xiaohongshu.com",
  293. "style": ""
  294. },
  295. {
  296. "articleStyle": 0,
  297. "customOrder": -152,
  298. "enableJs": false,
  299. "enabled": true,
  300. "loadWithBaseUrl": false,
  301. "ruleArticles": "class.m-post",
  302. "ruleContent": "class.ctc@html",
  303. "ruleDescription": "",
  304. "ruleImage": "class.img@img@src",
  305. "ruleLink": "class.img@href",
  306. "ruleNextPage": "text.下一页@href",
  307. "rulePubDate": "class.lnks@a@text##/ 评论.*|/ 热度.*",
  308. "ruleTitle": "class.text@text",
  309. "sourceIcon": "https://avaimg.nosdn0.126.net/avaimg/WEo5QkZsc0NQOEU9.png",
  310. "sourceName": "摄影独角兽",
  311. "sourceUrl": "http://unicornwj.lofter.com/"
  312. },
  313. {
  314. "articleStyle": 0,
  315. "customOrder": -125,
  316. "enableJs": true,
  317. "enabled": true,
  318. "loadWithBaseUrl": true,
  319. "ruleArticles": "$.data",
  320. "ruleContent": "class.article@html",
  321. "ruleDescription": "",
  322. "ruleImage": "$.thumbnails",
  323. "ruleLink": "$.ext_data.om_url",
  324. "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>",
  325. "rulePubDate": "$.timestamp@js:var date = new Date(parseInt(result)*1000);date.getFullYear()+\"-\"+(date.getMonth()+1)+\"-\"+date.getDate()",
  326. "ruleTitle": "$.title",
  327. "sourceGroup": "Novel",
  328. "sourceIcon": "http://img.100weidu.com/weixin/head/MzI5NTA4NjgwNw==",
  329. "sourceName": "赤戟的书荒救济所",
  330. "sourceUrl": "https://pacaio.match.qq.com/om/mediaArticles?mid=7743178&num=30&page=0"
  331. },
  332. {
  333. "articleStyle": 0,
  334. "customOrder": -114,
  335. "enableJs": true,
  336. "enabled": true,
  337. "loadWithBaseUrl": true,
  338. "ruleArticles": "class.2u",
  339. "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>",
  340. "ruleDescription": "",
  341. "ruleImage": "",
  342. "ruleLink": "tag.a.1@href",
  343. "rulePubDate": "",
  344. "ruleTitle": "tag.p@text##\\+",
  345. "sourceGroup": "🍀直播",
  346. "sourceIcon": "http://img2.3png.com/a507fc72abc2eea3b9ad8780d7c33155ffde.png",
  347. "sourceName": "电视直播",
  348. "sourceUrl": "http://ivi.bupt.edu.cn/"
  349. },
  350. {
  351. "articleStyle": 0,
  352. "customOrder": -41,
  353. "enableJs": true,
  354. "enabled": true,
  355. "loadWithBaseUrl": true,
  356. "ruleArticles": "class.layui-container",
  357. "ruleContent": "",
  358. "ruleImage": "tag.img@src",
  359. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  360. "ruleNextPage": "text.下页@href",
  361. "ruleTitle": "tag.a@text",
  362. "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",
  363. "sourceGroup": "📖 阅读",
  364. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=2250790218,1530043097&fm=15&gp=0.jpg",
  365. "sourceName": "期刊杂志",
  366. "sourceUrl": "http://qk.lifves.com"
  367. },
  368. {
  369. "articleStyle": 0,
  370. "customOrder": -36,
  371. "enableJs": true,
  372. "enabled": true,
  373. "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}",
  374. "loadWithBaseUrl": true,
  375. "ruleArticles": "class.news_list@tag.li&&class.Revision_list@tag.li&&class.yc_warp_list@tag.li",
  376. "ruleContent": "",
  377. "ruleDescription": "",
  378. "ruleImage": "tag.img@src",
  379. "ruleLink": "tag.a.0@href",
  380. "ruleNextPage": "class.next@tag.a@href",
  381. "rulePubDate": "class.time@text",
  382. "ruleTitle": "class.bt@text",
  383. "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",
  384. "sourceGroup": "",
  385. "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",
  386. "sourceName": "3DM",
  387. "sourceUrl": "https://www.3dmgame.com",
  388. "style": ""
  389. },
  390. {
  391. "articleStyle": 0,
  392. "customOrder": -34,
  393. "enableJs": true,
  394. "enabled": true,
  395. "header": "",
  396. "loadWithBaseUrl": true,
  397. "ruleArticles": "tag.ol@tag.li",
  398. "ruleContent": "<js>result</js>",
  399. "ruleDescription": "",
  400. "ruleImage": "",
  401. "ruleLink": "tag.a@href",
  402. "rulePubDate": "",
  403. "ruleTitle": "tag.a@text",
  404. "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",
  405. "sourceGroup": "📖 阅读",
  406. "sourceIcon": "https://p2.ssl.qhimgs1.com/t01a4ef0a3b59e725b2.jpg",
  407. "sourceName": "道人家",
  408. "sourceUrl": "http://www.daorenjia.com/"
  409. },
  410. {
  411. "articleStyle": 0,
  412. "customOrder": -33,
  413. "enableJs": true,
  414. "enabled": true,
  415. "loadWithBaseUrl": true,
  416. "ruleArticles": "class.fl_g",
  417. "ruleImage": "tag.img@src",
  418. "ruleLink": "tag.dt@tag.a@href@js:\"https://www.xn--cjztj18l.com/\"+result",
  419. "rulePubDate": "tag.dd@text",
  420. "ruleTitle": "tag.dt@text",
  421. "sourceGroup": "📰 资讯",
  422. "sourceIcon": "https://www.xn--cjztj18l.com/template/xinshutouch/touch/static/images/shaizi.gif",
  423. "sourceName": "神秘网",
  424. "sourceUrl": "https://www.xn--cjztj18l.com/forum.php"
  425. },
  426. {
  427. "articleStyle": 0,
  428. "customOrder": -33,
  429. "enableJs": true,
  430. "enabled": true,
  431. "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\"}",
  432. "loadWithBaseUrl": true,
  433. "ruleArticles": "class.wqindex_list_ul@li&&class.wqfooter@tag.li.1&&class.wqplate_warp@tag.li.5",
  434. "ruleContent": "",
  435. "ruleImage": "",
  436. "ruleLink": "tag.a.0@href",
  437. "ruleNextPage": "text.下一页@tag.a@href",
  438. "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}",
  439. "ruleTitle": "tag.a@text@js:if(baseUrl.match(/forum/)){\nresult = \"{{@@class.wqtitle_list.0@text}}\"}\nelse{result}",
  440. "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",
  441. "sourceGroup": "",
  442. "sourceIcon": "https://www.abooky.com/template/wq_app/static/images/gz_logo.png",
  443. "sourceName": "阅次元(修正)",
  444. "sourceUrl": "https://www.abooky.com"
  445. },
  446. {
  447. "articleStyle": 0,
  448. "customOrder": -31,
  449. "enableJs": false,
  450. "enabled": true,
  451. "loadWithBaseUrl": false,
  452. "ruleArticles": "class.xing_vb@ul",
  453. "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",
  454. "ruleLink": "tag.a.0@href",
  455. "ruleNextPage": "page",
  456. "rulePubDate": "{{@@class.xing_vb5@text}}·{{@@class.xing_vb7@text||class.xing_vb6@text}}",
  457. "ruleTitle": "class.xing_vb4@text",
  458. "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",
  459. "sourceIcon": "",
  460. "sourceName": "最大资源网",
  461. "sourceUrl": "http://www.zuidazy4.net/",
  462. "style": "a{font-size:12px}\nvideo{width:100%;height:auto}"
  463. },
  464. {
  465. "articleStyle": 0,
  466. "customOrder": -30,
  467. "enableJs": true,
  468. "enabled": true,
  469. "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}",
  470. "loadWithBaseUrl": true,
  471. "ruleArticles": "class.n5jj_hjeh cl@tag.a.0&&class.n5_htnrbt cl@tag.a&&class.n5qj_tbys nbg cl@tag.a.1",
  472. "ruleContent": "",
  473. "ruleImage": "",
  474. "ruleLink": "href",
  475. "ruleNextPage": "text.下一页@tag.a@href",
  476. "rulePubDate": "",
  477. "ruleTitle": "text&&class@js:if(baseUrl.match(/forum/)){result = \"{{@@text}}\"}else{result = result.replace(/每日签到/,\"签到\").replace(/n5qj_ycan sousuo/,\"搜索\")}",
  478. "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",
  479. "sourceGroup": "注:yy类需要cookie验证",
  480. "sourceIcon": "https://s1.ax1x.com/2020/10/05/0tDeiT.png",
  481. "sourceName": "书悦吧",
  482. "sourceUrl": "https://www.lemao8.com/"
  483. },
  484. {
  485. "articleStyle": 0,
  486. "customOrder": -23,
  487. "enableJs": true,
  488. "enabled": true,
  489. "header": "",
  490. "loadWithBaseUrl": true,
  491. "ruleArticles": "class.video-list@li",
  492. "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>",
  493. "ruleDescription": "",
  494. "ruleImage": "class.lazy-img@_src",
  495. "ruleLink": "tag.li@data-articleid@js:\"https://www.xinpianchang.com/a\"+result+\"?from=ArticleList\"",
  496. "ruleNextPage": "##href=\"([^\"]+)\" title=\"下一页\"##$1###",
  497. "rulePubDate": "class.video-hover-con@tag.p.0@text&&class.new-cate@tag.span.0@text##发布,##·",
  498. "ruleTitle": "class.video-con-top@tag.a.0@text",
  499. "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",
  500. "sourceGroup": "影视",
  501. "sourceIcon": "https://m-fxxz-com.mipcdn.com/i/s/pic.fxxz.com/up/2018-7/20187231225528558.png",
  502. "sourceName": "新片场",
  503. "sourceUrl": "https://www.xinpianchang.com/channel/index/type-/sort-addtime/duration_type-0/resolution_type-/page-1",
  504. "style": "p{color:#8e8e8e;text-indent: 2em}\nh3{text-align:center;color:#8e8e8e}"
  505. },
  506. {
  507. "articleStyle": 0,
  508. "customOrder": -23,
  509. "enableJs": true,
  510. "enabled": true,
  511. "loadWithBaseUrl": true,
  512. "ruleArticles": "section@class.tsj-book-item||span@class.tsj-rank-book-item||class.tsj-article-summary",
  513. "ruleImage": "tag.img@data-src",
  514. "ruleLink": "tag.a.0@href@js:\"https://www.tuishujun.com\"+result",
  515. "rulePubDate": "class.tsj-book-item__info__right__book-subtitle@text||tag.a.1@text||tag.div.1@text",
  516. "ruleTitle": "tag.h3@text&&tag.h2@text",
  517. "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",
  518. "sourceGroup": "📚 书荒",
  519. "sourceIcon": "https://m-youxiniao-com.mipcdn.com/i/s/imgo.youxiniao.com/img2019/12/4/9/2019120427733500_APP.png",
  520. "sourceName": "推书君",
  521. "sourceUrl": "https://www.tuishujun.com"
  522. },
  523. {
  524. "articleStyle": 0,
  525. "customOrder": -18,
  526. "enableJs": true,
  527. "enabled": true,
  528. "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}",
  529. "loadWithBaseUrl": true,
  530. "ruleArticles": "class.left@class.row@class.game-item&&class.left@class.row@class.video-item",
  531. "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}",
  532. "ruleImage": "tag.img@src",
  533. "ruleLink": "tag.a@href",
  534. "ruleNextPage": "page",
  535. "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",
  536. "ruleTitle": "tag.div@id&&class.name@text",
  537. "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}}",
  538. "sourceGroup": "搜索在search_query=后面加上你搜索的目标名\n\n可用virtual hosts更改hosts实现免root直连",
  539. "sourceIcon": "https://s1.ax1x.com/2020/09/17/wfUhsU.png",
  540. "sourceName": "动漫",
  541. "sourceUrl": "https://www.hentaicloud.com",
  542. "style": ""
  543. },
  544. {
  545. "articleStyle": 0,
  546. "customOrder": -15,
  547. "enableJs": false,
  548. "enabled": true,
  549. "loadWithBaseUrl": false,
  550. "ruleArticles": "class.comment-body",
  551. "ruleContent": "<js>\nresult='<style>img{width:98%;display: block;margin: 0 auto;}</style><img src=\"'+baseUrl+'\">'\n</js>",
  552. "ruleDescription": "",
  553. "ruleImage": "tag.p@tag.img@data-original",
  554. "ruleLink": "tag.p@tag.img@data-original",
  555. "ruleNextPage": "class.prev page-numbers@href",
  556. "rulePubDate": "",
  557. "ruleTitle": "class.comment-meta commentmetadata@tag.a.0@text",
  558. "sortUrl": "妹子自拍::https://www.mzitu.com/zipai/\n美女街拍::https://www.mzitu.com/jiepai/",
  559. "sourceGroup": "图文",
  560. "sourceIcon": "http://img.smzy.com/imges/2019/1021/20191021015913748.png",
  561. "sourceName": "妹子图",
  562. "sourceUrl": "https://www.mzitu.com/"
  563. },
  564. {
  565. "articleStyle": 0,
  566. "customOrder": -7,
  567. "enableJs": true,
  568. "enabled": true,
  569. "header": "",
  570. "loadWithBaseUrl": true,
  571. "ruleArticles": "$..vlist[*]||$.data.articles",
  572. "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>",
  573. "ruleDescription": "",
  574. "ruleImage": "$.pic||$.origin_image_urls[0]",
  575. "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}",
  576. "ruleNextPage": "page",
  577. "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}",
  578. "ruleTitle": "$.title",
  579. "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}}",
  580. "sourceGroup": "",
  581. "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
  582. "sourceName": "哔哩哔哩up主",
  583. "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}}",
  584. "style": "h3{text-align:center}\nimg{width:100%;height:auto}\n.article-holder p{text-indent: 2em}"
  585. },
  586. {
  587. "articleStyle": 1,
  588. "customOrder": -3,
  589. "enableJs": true,
  590. "enabled": true,
  591. "header": "",
  592. "loadWithBaseUrl": false,
  593. "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",
  594. "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>",
  595. "ruleDescription": "",
  596. "ruleImage": "##img src=\"([^\"]+)\"##$1###",
  597. "ruleLink": "##href=\"([^\"]+)\"##https://www.vmovier.com$1###",
  598. "ruleNextPage": "text.下一页@href",
  599. "rulePubDate": "##n>\\s*<span class=\"time\">([^<]+)<##$1###",
  600. "ruleTitle": "##title=\"([^\"]+)\"##$1###",
  601. "sortUrl": "最新::https://www.vmovier.com/new\n热门::https://www.vmovier.com/hot\n精选::https://www.vmovier.com/stars",
  602. "sourceGroup": "影视",
  603. "sourceIcon": "https://m-qqtn-com.mipcdn.com/i/s/pic.qqtn.com/up/2018-7/2018071311175882832.jpg!100_100",
  604. "sourceName": "场库",
  605. "sourceUrl": "https://www.vmovier.com/hot",
  606. "style": "p{color:#8e8e8e;text-indent: 2em}\nh3{text-align:center;color:#8e8e8e}\nh4{color:#8e8e8e;font-size:10px}"
  607. },
  608. {
  609. "articleStyle": 0,
  610. "customOrder": 0,
  611. "enableJs": true,
  612. "enabled": true,
  613. "loadWithBaseUrl": true,
  614. "ruleArticles": "@css:.booklist-card",
  615. "ruleContent": "",
  616. "ruleDescription": "",
  617. "ruleImage": "",
  618. "ruleLink": "@css:.booklist-card-content>a@href##^##http://www\\.yousuu\\.com",
  619. "rulePubDate": "@css:.ResultBooklistItemClasses,.ResultBooklistItemUpdateAt@text##,,##,",
  620. "ruleTitle": "@css:.booklist-card-content>a@text",
  621. "sourceGroup": "",
  622. "sourceIcon": "https://gitee.com/alanskycn/yuedu/raw/master/JS/youshuwang.png",
  623. "sourceName": "优书网",
  624. "sourceUrl": "http://www.yousuu.com/booklists?type=man&screen=latest&page=1"
  625. },
  626. {
  627. "articleStyle": 0,
  628. "customOrder": 0,
  629. "enableJs": true,
  630. "enabled": true,
  631. "loadWithBaseUrl": false,
  632. "ruleArticles": "//entry",
  633. "ruleContent": "<js>\nvar doc=org.jsoup.Jsoup.parse(result);\nString(doc.select(\".markdown-body\").outerHtml())\n</js>",
  634. "ruleDescription": "",
  635. "ruleImage": "",
  636. "ruleLink": "//link/@href",
  637. "rulePubDate": "//updated/text()",
  638. "ruleTitle": "//title/text()",
  639. "sourceGroup": "VIP",
  640. "sourceIcon": " https://gitee.com/alanskycn/yuedu/raw/master/JS/icon.jpg",
  641. "sourceName": "legado更新信息",
  642. "sourceUrl": " https://github.com/gedoor/legado/releases.atom"
  643. },
  644. {
  645. "articleStyle": 0,
  646. "customOrder": 0,
  647. "enableJs": true,
  648. "enabled": true,
  649. "loadWithBaseUrl": true,
  650. "ruleArticles": "",
  651. "ruleContent": "",
  652. "ruleDescription": "",
  653. "ruleImage": "<media:content url=pic</media:content>",
  654. "ruleLink": "",
  655. "rulePubDate": "",
  656. "ruleTitle": "",
  657. "sourceGroup": "新闻",
  658. "sourceIcon": "https://news.un.org/en/sites/all/themes/bootstrap_un_news/images/un-emblem-for-rss.png",
  659. "sourceName": "联合国新闻(英文版)",
  660. "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"
  661. },
  662. {
  663. "articleStyle": 0,
  664. "customOrder": 0,
  665. "enableJs": false,
  666. "enabled": true,
  667. "loadWithBaseUrl": false,
  668. "ruleArticles": "class.excerpt excerpt-one.!-1",
  669. "ruleContent": "",
  670. "ruleDescription": "",
  671. "ruleImage": "class.thumbnail@tag.img@src",
  672. "ruleLink": "tag.h2@tag.a.0@href",
  673. "ruleNextPage": "text.下一页@href",
  674. "rulePubDate": "",
  675. "ruleTitle": "tag.h2@tag.a.0@text",
  676. "sourceGroup": "",
  677. "sourceIcon": "",
  678. "sourceName": "博海拾贝",
  679. "sourceUrl": "https://bh.sb/post/category/main/"
  680. },
  681. {
  682. "articleStyle": 0,
  683. "customOrder": 0,
  684. "enableJs": true,
  685. "enabled": true,
  686. "loadWithBaseUrl": false,
  687. "ruleArticles": "$.data.images",
  688. "ruleContent": "",
  689. "ruleDescription": "{{$.description}}<br>\n<img src=\"http://wpstatic.zuimeia.com/{{$.image_url}}\"</>",
  690. "ruleImage": "http://wpstatic.zuimeia.com/{{$.image_url}}",
  691. "ruleLink": "http://wpstatic.zuimeia.com/{{$.image_url}}",
  692. "rulePubDate": "$.pub_time",
  693. "ruleTitle": "$.description",
  694. "sourceGroup": "订阅源",
  695. "sourceIcon": "",
  696. "sourceName": "每日一图",
  697. "sourceUrl": "http://lab.zuimeia.com/wallpaper/category/2"
  698. },
  699. {
  700. "articleStyle": 0,
  701. "customOrder": 0,
  702. "enableJs": false,
  703. "enabled": true,
  704. "loadWithBaseUrl": false,
  705. "ruleArticles": "tag.article",
  706. "ruleContent": "",
  707. "ruleDescription": "",
  708. "ruleImage": "class.focus@tag.img@data-src",
  709. "ruleLink": "class.focus@href",
  710. "ruleNextPage": "text.下一页@href",
  711. "rulePubDate": "class.cat@text&&tag.time@text",
  712. "ruleTitle": "tag.h2.tag.a@text",
  713. "sourceGroup": "陌染",
  714. "sourceIcon": "https://tva1.sinaimg.cn/large/007awY0bly1g2oaya6trhj307i01x3yx.jpg",
  715. "sourceName": "福利吧",
  716. "sourceUrl": "http://fulibus.net/"
  717. },
  718. {
  719. "articleStyle": 0,
  720. "customOrder": 0,
  721. "enableJs": true,
  722. "enabled": true,
  723. "loadWithBaseUrl": true,
  724. "ruleArticles": "class.woo-pcont@class.j",
  725. "ruleContent": "class.de-img@html",
  726. "ruleDescription": "",
  727. "ruleImage": "class.a@img@src",
  728. "ruleLink": "class.a@href@js:\"https://www.duitang.com\"+result",
  729. "ruleNextPage": "@js:\"https://www.duitang.com/category/?cat=wallpaper&sub=壁纸-动漫&page=3\"",
  730. "rulePubDate": "",
  731. "ruleTitle": "class.g@text",
  732. "sourceIcon": "https://c-ssl.duitang.com/uploads/item/201806/21/20180621181320_zXad3.png",
  733. "sourceName": "堆糖-壁纸-动漫",
  734. "sourceUrl": "https://www.duitang.com/category/?cat=wallpaper&sub=壁纸-动漫"
  735. },
  736. {
  737. "articleStyle": 0,
  738. "customOrder": 0,
  739. "enableJs": true,
  740. "enabled": true,
  741. "loadWithBaseUrl": true,
  742. "ruleArticles": "class.list-table@tr!0",
  743. "ruleContent": "id.content_left@html",
  744. "ruleDescription": "",
  745. "ruleImage": "",
  746. "ruleLink": "class.list-title@href",
  747. "rulePubDate": "",
  748. "ruleTitle": "class.keyword@class.list-title@text",
  749. "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",
  750. "sourceName": "百度-实时热点",
  751. "sourceUrl": "http://top.baidu.com/buzz?b=1&fr=topindex"
  752. },
  753. {
  754. "articleStyle": 0,
  755. "customOrder": 0,
  756. "enableJs": true,
  757. "enabled": true,
  758. "loadWithBaseUrl": true,
  759. "ruleArticles": "class.list-table@tr!0",
  760. "ruleContent": "id.content_left@html",
  761. "ruleDescription": "",
  762. "ruleImage": "",
  763. "ruleLink": "class.list-title@href",
  764. "rulePubDate": "",
  765. "ruleTitle": "class.keyword@class.list-title@text",
  766. "sourceGroup": "百度",
  767. "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",
  768. "sourceName": "百度-娱乐热点",
  769. "sourceUrl": "http://top.baidu.com/buzz?b=344&c=513&fr=topbuzz_b342_c513"
  770. },
  771. {
  772. "articleStyle": 0,
  773. "customOrder": 0,
  774. "enableJs": true,
  775. "enabled": true,
  776. "loadWithBaseUrl": true,
  777. "ruleArticles": "class.list-table@tr!0",
  778. "ruleContent": "id.content_left@html",
  779. "ruleDescription": "",
  780. "ruleImage": "",
  781. "ruleLink": "class.list-title@href",
  782. "rulePubDate": "",
  783. "ruleTitle": "class.keyword@class.list-title@text",
  784. "sourceGroup": "百度",
  785. "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",
  786. "sourceName": "百度-七日热点",
  787. "sourceUrl": "http://top.baidu.com/buzz?b=42&c=513&fr=topbuzz_b341_c513"
  788. },
  789. {
  790. "articleStyle": 0,
  791. "customOrder": 0,
  792. "enableJs": true,
  793. "enabled": true,
  794. "loadWithBaseUrl": true,
  795. "ruleArticles": "class.list-table@tr!0",
  796. "ruleContent": "id.content_left@html",
  797. "ruleDescription": "",
  798. "ruleImage": "",
  799. "ruleLink": "class.list-title@href",
  800. "rulePubDate": "",
  801. "ruleTitle": "class.keyword@class.list-title@text",
  802. "sourceGroup": "百度",
  803. "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",
  804. "sourceName": "百度-体育热点",
  805. "sourceUrl": "http://top.baidu.com/buzz?b=11&c=513&fr=topbuzz_b11_c513"
  806. },
  807. {
  808. "articleStyle": 0,
  809. "customOrder": 0,
  810. "enableJs": true,
  811. "enabled": true,
  812. "loadWithBaseUrl": true,
  813. "ruleArticles": "class.list-table@tr!0",
  814. "ruleContent": "id.content_left@html",
  815. "ruleDescription": "",
  816. "ruleImage": "",
  817. "ruleLink": "class.list-title@href",
  818. "rulePubDate": "",
  819. "ruleTitle": "class.keyword@class.list-title@text",
  820. "sourceGroup": "百度",
  821. "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",
  822. "sourceName": "百度-民生热点",
  823. "sourceUrl": "http://top.baidu.com/buzz?b=342&c=513&fr=topbuzz_b42_c513"
  824. },
  825. {
  826. "articleStyle": 0,
  827. "customOrder": 0,
  828. "enableJs": true,
  829. "enabled": true,
  830. "loadWithBaseUrl": true,
  831. "ruleArticles": "class.list-table@tr!0",
  832. "ruleContent": "id.content_left@html",
  833. "ruleDescription": "",
  834. "ruleImage": "",
  835. "ruleLink": "class.list-title@href",
  836. "rulePubDate": "",
  837. "ruleTitle": "class.keyword@class.list-title@text",
  838. "sourceGroup": "百度",
  839. "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",
  840. "sourceName": "百度-今日热点",
  841. "sourceUrl": "http://top.baidu.com/buzz?b=341&c=513&fr=topbuzz_b1_c513"
  842. },
  843. {
  844. "articleStyle": 0,
  845. "customOrder": 0,
  846. "enableJs": true,
  847. "enabled": true,
  848. "loadWithBaseUrl": true,
  849. "ruleArticles": "class.part1",
  850. "ruleContent": "",
  851. "ruleDescription": "",
  852. "ruleImage": "a@img@src",
  853. "ruleLink": "a@href@js:\"http://www.cf555.com/\"+result",
  854. "rulePubDate": "",
  855. "ruleTitle": "class.title@text",
  856. "sourceIcon": "http://www.cf555.com/image/logo_c.png",
  857. "sourceName": "百食阁",
  858. "sourceUrl": "http://www.cf555.com/mm.html"
  859. },
  860. {
  861. "articleStyle": 0,
  862. "customOrder": 0,
  863. "enableJs": true,
  864. "enabled": true,
  865. "loadWithBaseUrl": true,
  866. "ruleArticles": "$.data.archives\t",
  867. "ruleContent": "",
  868. "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>",
  869. "ruleImage": "$.pic",
  870. "ruleLink": "https://player.bilibili.com/player.html?aid={{$.aid}}",
  871. "rulePubDate": "",
  872. "ruleTitle": "$.title",
  873. "sourceGroup": "B站",
  874. "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
  875. "sourceName": "B站-最新列表",
  876. "sourceUrl": "https://api.bilibili.com/x/web-interface/newlist"
  877. },
  878. {
  879. "articleStyle": 0,
  880. "customOrder": 0,
  881. "enableJs": true,
  882. "enabled": true,
  883. "loadWithBaseUrl": true,
  884. "ruleArticles": "$.result",
  885. "ruleContent": "",
  886. "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>",
  887. "ruleImage": "$.pic",
  888. "ruleLink": "https://player.bilibili.com/player.html?aid={{$.id}}",
  889. "ruleNextPage": "",
  890. "rulePubDate": "",
  891. "ruleTitle": "$..title",
  892. "sourceGroup": "B站",
  893. "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
  894. "sourceName": "B站-翻唱-最热排布",
  895. "sourceUrl": "https://s.search.bilibili.com/cate/search?callback=jqueryCallback_bili_06444281429157561&main_ver=v3&search_type=video&view_type=hot_rank&order=click&copy_right=-1&cate_id=31&page=1&pagesize=100&json=json&time_from=20200324&time_to=20200331&_=1585647509801"
  896. },
  897. {
  898. "articleStyle": 0,
  899. "customOrder": 0,
  900. "enableJs": true,
  901. "enabled": true,
  902. "header": "",
  903. "loadWithBaseUrl": true,
  904. "ruleArticles": "class.block-video",
  905. "ruleContent": "",
  906. "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>",
  907. "ruleImage": "a@img@data-original",
  908. "ruleLink": "class.block-title@a!1@href##/v##https://www.acfun.cn/player",
  909. "rulePubDate": "class.clearfix@class.fr@text",
  910. "ruleTitle": "class.block-title@a!1@text",
  911. "sourceGroup": "A站",
  912. "sourceIcon": "https://cdn.aixifan.com/dotnet/20130418/umeditor/dialogs/emotion/images/ac/47.gif",
  913. "sourceName": "AC正义",
  914. "sourceUrl": "https://www.acfun.cn/v/list177/index.htm"
  915. },
  916. {
  917. "articleStyle": 0,
  918. "customOrder": 0,
  919. "enableJs": true,
  920. "enabled": true,
  921. "loadWithBaseUrl": true,
  922. "ruleArticles": "$.result",
  923. "ruleContent": "",
  924. "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>",
  925. "ruleImage": "$.pic",
  926. "ruleLink": "https://player.bilibili.com/player.html?aid={{$.id}}",
  927. "ruleNextPage": "",
  928. "rulePubDate": "",
  929. "ruleTitle": "$..title",
  930. "sourceGroup": "B站",
  931. "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
  932. "sourceName": "B站-生活-日常-HR",
  933. "sourceUrl": "https://s.search.bilibili.com/cate/search?callback=jqueryCallback_bili_023927589479682432&main_ver=v3&search_type=video&view_type=hot_rank&order=click&copy_right=-1&cate_id=21&page=1&pagesize=100&json=json&time_from=20200325&time_to=20200401&_=1585711602607"
  934. },
  935. {
  936. "articleStyle": 0,
  937. "customOrder": 0,
  938. "enableJs": true,
  939. "enabled": true,
  940. "loadWithBaseUrl": true,
  941. "ruleArticles": "class.list@li",
  942. "ruleContent": "class.block recipe-show@html",
  943. "ruleDescription": "",
  944. "ruleImage": "class.cover@img@data-src",
  945. "ruleLink": "class.name@a@href@js:\"https://www.xiachufang.com\"+result",
  946. "ruleNextPage": "text.下一页@href",
  947. "rulePubDate": "class.score@text",
  948. "ruleTitle": "class.cover@img@alt",
  949. "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/",
  950. "sourceGroup": "",
  951. "sourceIcon": "https://s.chuimg.com/favicon.ico",
  952. "sourceName": "下厨房",
  953. "sourceUrl": "https://www.xiachufang.com/category/40076/"
  954. },
  955. {
  956. "articleStyle": 0,
  957. "customOrder": 0,
  958. "enableJs": true,
  959. "enabled": true,
  960. "header": "",
  961. "loadWithBaseUrl": true,
  962. "ruleArticles": "$.data.articles",
  963. "ruleContent": "<js>var doc=org.jsoup.Jsoup.parse(result);\nString(doc.select(\"h1\").outerHtml()).replace(/h1/g,\"h2\")+doc.select(\"#A_content\").html()</js>",
  964. "ruleDescription": "",
  965. "ruleImage": "poster_url",
  966. "ruleLink": "https://m.adline.com.cn{$.url}",
  967. "rulePubDate": "{{$.source_name}}|{{$.summary}}",
  968. "ruleTitle": "title",
  969. "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=",
  970. "sourceGroup": "",
  971. "sourceIcon": "https://c1.adline.com.cn/static/img/favicon.ico",
  972. "sourceName": "今日头条-合集",
  973. "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="
  974. },
  975. {
  976. "articleStyle": 0,
  977. "customOrder": 0,
  978. "enableJs": true,
  979. "enabled": true,
  980. "loadWithBaseUrl": true,
  981. "ruleArticles": "class.news-top-list-content@li@a||$.data",
  982. "ruleContent": "",
  983. "ruleDescription": "",
  984. "ruleImage": "$.pic",
  985. "ruleLink": "a@href||$.url",
  986. "rulePubDate": "",
  987. "ruleTitle": "class.c-title-s@text||$.title",
  988. "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=",
  989. "sourceGroup": "",
  990. "sourceIcon": "https://sm01.alicdn.com/L1/272/1990/favicon/favi.ico",
  991. "sourceName": "夸克搜索",
  992. "sourceUrl": "https://quark.sm.cn/s?q=热搜"
  993. },
  994. {
  995. "articleStyle": 0,
  996. "customOrder": 0,
  997. "enableJs": true,
  998. "enabled": true,
  999. "loadWithBaseUrl": true,
  1000. "ruleArticles": "$.data.response.videos",
  1001. "ruleContent": "<js>\ndata=baseUrl\nvideo='<video height=\"100%\" width=\"100%\" controls=\"controls\" src=\"'+data+'\">\nresult=video\n</js>",
  1002. "ruleDescription": "<video height=\"100%\" width=\"100%\" controls=\"controls\" src=\"{{$.play_url}}\">",
  1003. "ruleImage": "$.poster_pc",
  1004. "ruleLink": "$.play_url",
  1005. "rulePubDate": "$.publish_time",
  1006. "ruleTitle": "$.title",
  1007. "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",
  1008. "sourceGroup": "",
  1009. "sourceIcon": "https://vv.bdstatic.com/static/videoui/img/favicon-4_f4b9465.ico",
  1010. "sourceName": "好看视频",
  1011. "sourceUrl": "https://haokan.baidu.com/videoui/api/videorec?tab=dongman&act=pcFeed&pd=pc&num=100&shuaxin_id=1585713808755"
  1012. },
  1013. {
  1014. "articleStyle": 0,
  1015. "customOrder": 0,
  1016. "enableJs": true,
  1017. "enabled": true,
  1018. "loadWithBaseUrl": true,
  1019. "ruleArticles": "$.data.list||$.data",
  1020. "ruleContent": "",
  1021. "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>",
  1022. "ruleImage": "$.pic",
  1023. "ruleLink": "https://player.bilibili.com/player.html?aid={{$.aid}}",
  1024. "rulePubDate": "$.duration",
  1025. "ruleTitle": "$.title",
  1026. "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",
  1027. "sourceGroup": "B站",
  1028. "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
  1029. "sourceName": "B站-集合",
  1030. "sourceUrl": "https://api.bilibili.com/x/web-interface/ranking?rid=168&day=3&json=json"
  1031. },
  1032. {
  1033. "articleStyle": 0,
  1034. "customOrder": 0,
  1035. "enableJs": false,
  1036. "enabled": true,
  1037. "loadWithBaseUrl": false,
  1038. "ruleArticles": "class.bklist@tag.a",
  1039. "ruleContent": "",
  1040. "ruleDescription": "",
  1041. "ruleImage": "",
  1042. "ruleLink": "tag.a@href",
  1043. "ruleNextPage": "text.下一页@href",
  1044. "rulePubDate": "",
  1045. "ruleTitle": "tag.a@text",
  1046. "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",
  1047. "sourceGroup": "报刊",
  1048. "sourceIcon": "https://dss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=1856958915,917951624&fm=85&app=79&f=JPEG?w=121&h=75&s=14D7EF36E8E6EF134C2248EC0300E02B",
  1049. "sourceName": "报刊",
  1050. "sourceUrl": "http://www.53bk.com/baokan/"
  1051. },
  1052. {
  1053. "articleStyle": 0,
  1054. "customOrder": 0,
  1055. "enableJs": false,
  1056. "enabled": true,
  1057. "loadWithBaseUrl": false,
  1058. "ruleArticles": "class.bm_c@tag.tbody",
  1059. "ruleContent": "",
  1060. "ruleDescription": "",
  1061. "ruleImage": "tag.th@tag.img.0@src",
  1062. "ruleLink": "tag.th@tag.a.1@href",
  1063. "ruleNextPage": "text.下一页@href",
  1064. "rulePubDate": "class.by@tag.span@text",
  1065. "ruleTitle": "tag.th@tag.a.1@text",
  1066. "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",
  1067. "sourceGroup": "论坛",
  1068. "sourceIcon": "https://tva2.sinaimg.cn/crop.0.0.180.180.180/608b0a6bjw1e8qgp5bmzyj2050050aa8.jpg?KID=imgbed,tva&Expires=1586263928&ssig=CAI8QH0EZ9",
  1069. "sourceName": "地铁族",
  1070. "sourceUrl": "http://www.ditiezu.com"
  1071. },
  1072. {
  1073. "articleStyle": 0,
  1074. "customOrder": 0,
  1075. "enableJs": false,
  1076. "enabled": true,
  1077. "loadWithBaseUrl": false,
  1078. "ruleArticles": "class.bklist@tag.a",
  1079. "ruleContent": "",
  1080. "ruleDescription": "",
  1081. "ruleImage": "",
  1082. "ruleLink": "tag.a@href",
  1083. "ruleNextPage": "text.下一页@href",
  1084. "rulePubDate": "",
  1085. "ruleTitle": "tag.a@text",
  1086. "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",
  1087. "sourceGroup": "杂志",
  1088. "sourceIcon": "https://dss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=1856958915,917951624&fm=85&app=79&f=JPEG?w=121&h=75&s=14D7EF36E8E6EF134C2248EC0300E02B",
  1089. "sourceName": "杂志",
  1090. "sourceUrl": "http://www.53bk.com/"
  1091. },
  1092. {
  1093. "articleStyle": 0,
  1094. "customOrder": 0,
  1095. "enableJs": true,
  1096. "enabled": true,
  1097. "loadWithBaseUrl": true,
  1098. "ruleArticles": "$.data.books",
  1099. "ruleContent": "",
  1100. "ruleDescription": "",
  1101. "ruleImage": "$.cover",
  1102. "ruleLink": "https://www.yousuu.com/book/{{$.bookId}}",
  1103. "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>",
  1104. "rulePubDate": "$.updateAt",
  1105. "ruleTitle": "$.title",
  1106. "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",
  1107. "sourceIcon": "https://gitee.com/alanskycn/yuedu/raw/master/JS/youshuwang.png",
  1108. "sourceName": "优书书籍",
  1109. "sourceUrl": "https://www.yousuu.com/api/bookStore/books?page=1&t=1585667544106"
  1110. },
  1111. {
  1112. "articleStyle": 0,
  1113. "customOrder": 0,
  1114. "enableJs": false,
  1115. "enabled": true,
  1116. "loadWithBaseUrl": false,
  1117. "ruleArticles": "$.content.u2||$.content.u1||$.content.u0||$.content.roomList",
  1118. "ruleContent": "",
  1119. "ruleDescription": "<video poster=\"{{$.pic}}\" src=\"http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8?_=\" width=\"100%\" controls=\"controls\" ></video>\n <p>{{$.userMood}}</p>",
  1120. "ruleImage": "$.pic",
  1121. "ruleLink": "http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8",
  1122. "rulePubDate": "",
  1123. "ruleTitle": "$.userMood",
  1124. "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",
  1125. "sourceGroup": "直播•温某某",
  1126. "sourceIcon": "http://vr0.6rooms.com/v/d3/8746b065fc1d40d19144b38809698e46.png",
  1127. "sourceName": "六间房",
  1128. "sourceUrl": ""
  1129. },
  1130. {
  1131. "articleStyle": 0,
  1132. "customOrder": 0,
  1133. "enableJs": true,
  1134. "enabled": true,
  1135. "loadWithBaseUrl": true,
  1136. "ruleArticles": "class.item-inner",
  1137. "ruleContent": "",
  1138. "ruleDescription": "",
  1139. "ruleImage": "class.item-thumb@all##.+url\\(|\\).+##",
  1140. "ruleLink": "tag.a.0@href@js:\"https://ifish.fun\"+result",
  1141. "ruleNextPage": "text.下一页@href",
  1142. "rulePubDate": "class.item-summary@text",
  1143. "ruleTitle": "class.left@text",
  1144. "sortUrl": "每日精选::https://ifish.fun/\n落网精选::https://ifish.fun/music/luoo",
  1145. "sourceGroup": "陌染",
  1146. "sourceIcon": "",
  1147. "sourceName": "洛奇Town",
  1148. "sourceUrl": "https://ifish.fun/"
  1149. },
  1150. {
  1151. "articleStyle": 0,
  1152. "customOrder": 0,
  1153. "enableJs": true,
  1154. "enabled": true,
  1155. "header": "",
  1156. "loadWithBaseUrl": true,
  1157. "ruleArticles": "class.list-group CAIlist CAIlist_list@tag.li",
  1158. "ruleContent": "",
  1159. "ruleDescription": "",
  1160. "ruleImage": "img@src",
  1161. "ruleLink": "tag.a.0@href",
  1162. "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>",
  1163. "rulePubDate": "",
  1164. "ruleTitle": "class.csc@title",
  1165. "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",
  1166. "sourceIcon": "https://img.nync.com/f/2018/08/10/1d7b1b9a2a878e1f_640.jpg",
  1167. "sourceName": "新课标作文",
  1168. "sourceUrl": "http://www.jiaoshi100.com"
  1169. },
  1170. {
  1171. "articleStyle": 0,
  1172. "customOrder": 0,
  1173. "enableJs": false,
  1174. "enabled": true,
  1175. "loadWithBaseUrl": false,
  1176. "ruleArticles": "class.news-view",
  1177. "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>",
  1178. "ruleDescription": "",
  1179. "ruleImage": "class.news-img@a@img@src",
  1180. "ruleLink": "class.news-img@a@href",
  1181. "ruleNextPage": "",
  1182. "rulePubDate": "class.news-footer@text",
  1183. "ruleTitle": "class.news-img@a@title",
  1184. "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",
  1185. "sourceIcon": "https://gitee.com/Damingzhijun/yueduwenben/raw/master/img/jlq.png",
  1186. "sourceName": "界面新闻",
  1187. "sourceUrl": "https://www.jiemian.com/lists/71.html"
  1188. },
  1189. {
  1190. "articleStyle": 0,
  1191. "customOrder": 0,
  1192. "enableJs": true,
  1193. "enabled": true,
  1194. "loadWithBaseUrl": true,
  1195. "ruleArticles": "ol@li",
  1196. "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>",
  1197. "ruleDescription": "",
  1198. "ruleImage": "class.player-list-pic@text",
  1199. "ruleLink": "class.player-list-url@text@js:'https://ifish.fun'+result",
  1200. "rulePubDate": "class.player-list-author@text",
  1201. "ruleTitle": "class.player-list-name@text",
  1202. "sortUrl": "云春部落::https://ifish.fun/music/daily?t=wy\n大虾世界::https://ifish.fun/music/daily?t=xm\n杂食天下::https://ifish.fun/music/daily?t=qq",
  1203. "sourceGroup": "",
  1204. "sourceIcon": "https://ifish.fun/img/fish.png",
  1205. "sourceName": "洛奇TownFA",
  1206. "sourceUrl": "https://ifish.fun/music/daily?t=wy"
  1207. },
  1208. {
  1209. "articleStyle": 0,
  1210. "customOrder": 0,
  1211. "enableJs": true,
  1212. "enabled": true,
  1213. "loadWithBaseUrl": true,
  1214. "ruleArticles": "class.commentlist@li",
  1215. "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>\"",
  1216. "ruleDescription": "",
  1217. "ruleImage": "tag.p.0@tag.img@src",
  1218. "ruleLink": "class.righttext@tag.a@href@js:\"http://i.jandan.net\"+result",
  1219. "ruleNextPage": "text.下一页@href",
  1220. "rulePubDate": "class.author@text",
  1221. "ruleTitle": "class.righttext@text",
  1222. "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",
  1223. "sourceGroup": "",
  1224. "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",
  1225. "sourceName": "煎蛋网",
  1226. "sourceUrl": "http://jandan.net/pic"
  1227. },
  1228. {
  1229. "articleStyle": 0,
  1230. "customOrder": 0,
  1231. "enableJs": true,
  1232. "enabled": true,
  1233. "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}",
  1234. "loadWithBaseUrl": true,
  1235. "ruleArticles": "class.container@class.col-md-3 col-xs-6",
  1236. "ruleContent": "all## <script type=\"text/javascript\">var cnzz_protocol = [\\s\\S]+?</script> ",
  1237. "ruleDescription": "",
  1238. "ruleImage": "img@src",
  1239. "ruleLink": "h4@tag.a.0@href",
  1240. "ruleNextPage": "text.下一页@href",
  1241. "rulePubDate": "class.table@span@text##\\n##•",
  1242. "ruleTitle": "h4@tag.a@text",
  1243. "sourceIcon": "http://srvcn.xbext.com/touch_icons/96x96/mobile.h5_games.png",
  1244. "sourceName": "在线游戏",
  1245. "sourceUrl": "https://www.yikm.net"
  1246. },
  1247. {
  1248. "articleStyle": 0,
  1249. "customOrder": 0,
  1250. "enableJs": true,
  1251. "enabled": true,
  1252. "loadWithBaseUrl": true,
  1253. "ruleArticles": "class.dd-list@class.dd-item",
  1254. "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>",
  1255. "ruleDescription": "",
  1256. "ruleImage": "",
  1257. "ruleLink": "class.dd-content@a@href@js:'https://www.w3cschool.cn'+result",
  1258. "rulePubDate": "",
  1259. "ruleTitle": "class.dd-content@a@text",
  1260. "sourceIcon": "https://www.w3cschool.cn/favicon.ico",
  1261. "sourceName": "正则表达式三十分钟入门",
  1262. "sourceUrl": "https://www.w3cschool.cn/regex_rmjc/regex_rmjc-n5a328cn.html"
  1263. },
  1264. {
  1265. "articleStyle": 0,
  1266. "customOrder": 0,
  1267. "enableJs": true,
  1268. "enabled": true,
  1269. "loadWithBaseUrl": true,
  1270. "ruleArticles": "$.data.datas",
  1271. "ruleContent": "",
  1272. "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",
  1273. "ruleImage": "$.screenshot",
  1274. "ruleLink": "$.profileRoom",
  1275. "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>",
  1276. "rulePubDate": "$.introduction",
  1277. "ruleTitle": "$.roomName",
  1278. "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",
  1279. "sourceIcon": "https://www.huya.com/favicon.ico",
  1280. "sourceName": "虎牙直播",
  1281. "sourceUrl": "https://www.huya.com/cache.php?m=LiveList&do=getLiveListByPage&gameId=1&tagAll=0&page=1"
  1282. },
  1283. {
  1284. "articleStyle": 0,
  1285. "customOrder": 0,
  1286. "enableJs": true,
  1287. "enabled": true,
  1288. "loadWithBaseUrl": false,
  1289. "ruleArticles": "$.data.site.subs[0].items",
  1290. "ruleContent": "",
  1291. "ruleDescription": "",
  1292. "ruleImage": "",
  1293. "ruleLink": "https://www.anyknew.com/go/{$.iid}",
  1294. "rulePubDate": "$.add_date@js:\nresult=result+\"000\"\njava.timeFormat(result)",
  1295. "ruleTitle": "$.title",
  1296. "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",
  1297. "sourceIcon": "http://www.diyiziti.com/Res/Images//Temp/435/06c58b6e0ba642978dde7f2b771f4d54.PNG",
  1298. "sourceName": "AnyKnew",
  1299. "sourceUrl": "https://www.anyknew.com"
  1300. },
  1301. {
  1302. "articleStyle": 0,
  1303. "customOrder": 0,
  1304. "enableJs": true,
  1305. "enabled": true,
  1306. "loadWithBaseUrl": false,
  1307. "ruleArticles": "class.table.0@tbody@tr",
  1308. "ruleContent": "",
  1309. "ruleDescription": "",
  1310. "ruleImage": "",
  1311. "ruleLink": "tag.a@href",
  1312. "rulePubDate": "tag.td.-2@text",
  1313. "ruleTitle": "tag.td!-1:-2@text##\\n",
  1314. "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",
  1315. "sourceIcon": "https://file.ipadown.com/tophub/assets/images/logo.png",
  1316. "sourceName": "今日热榜",
  1317. "sourceUrl": "https://tophub.today/"
  1318. },
  1319. {
  1320. "articleStyle": 0,
  1321. "customOrder": 0,
  1322. "enableJs": true,
  1323. "enabled": true,
  1324. "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}",
  1325. "loadWithBaseUrl": true,
  1326. "ruleArticles": "$.data.list||$.data",
  1327. "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>",
  1328. "ruleDescription": "",
  1329. "ruleImage": "$.cover",
  1330. "ruleLink": "https://live.bilibili.com{{$.link}},{\"charset\": \"utf-8\",\"method\": \"GET\",\"webView\": true }",
  1331. "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>",
  1332. "rulePubDate": "$.uname",
  1333. "ruleTitle": "$.title",
  1334. "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",
  1335. "sourceIcon": "https://www.bilibili.com/favicon.ico",
  1336. "sourceName": "BILIBILI直播",
  1337. "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"
  1338. },
  1339. {
  1340. "articleStyle": 0,
  1341. "customOrder": 0,
  1342. "enableJs": false,
  1343. "enabled": true,
  1344. "loadWithBaseUrl": false,
  1345. "ruleArticles": "class.pic-list pic-list-tag pic-list-shadow@li",
  1346. "ruleContent": "",
  1347. "ruleDescription": "",
  1348. "ruleImage": "img@lazysrc",
  1349. "ruleLink": "a@href@js:\"https://m.umei.cc\"+result",
  1350. "rulePubDate": "",
  1351. "ruleTitle": "class.New-PL-tit@text",
  1352. "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/",
  1353. "sourceGroup": "🌫 美图",
  1354. "sourceIcon": "http://i1.shaodiyejin.com/uploads/tu/201911/10133/743e1b888e_77.jpg",
  1355. "sourceName": "优美图库-精品套图",
  1356. "sourceUrl": "https://m.umei.cc/gaoqing/"
  1357. },
  1358. {
  1359. "articleStyle": 0,
  1360. "customOrder": 0,
  1361. "enableJs": false,
  1362. "enabled": true,
  1363. "loadWithBaseUrl": false,
  1364. "ruleArticles": "class.pic-list pic-list-2 pic-list-shadow@li",
  1365. "ruleContent": "",
  1366. "ruleDescription": "",
  1367. "ruleImage": "img@data-original",
  1368. "ruleLink": "a@href@js:\"https://m.umei.cc\"+result",
  1369. "rulePubDate": "",
  1370. "ruleTitle": "class.New-PL-tit@text",
  1371. "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",
  1372. "sourceGroup": "🌫 美图",
  1373. "sourceIcon": "http://kr.shaodiyejin.com/file/2019/1226/small009e180a8900012cc63790c1d68d885c.jpg",
  1374. "sourceName": "优美图库-美女壁纸",
  1375. "sourceUrl": "https://m.umei.cc/bizhitupian/meinvbizhi/"
  1376. },
  1377. {
  1378. "articleStyle": 0,
  1379. "customOrder": 0,
  1380. "enableJs": false,
  1381. "enabled": true,
  1382. "loadWithBaseUrl": false,
  1383. "ruleArticles": "class.pic-list pic-list-2 pic-list-shadow@li",
  1384. "ruleContent": "",
  1385. "ruleDescription": "",
  1386. "ruleImage": "img@data-original",
  1387. "ruleLink": "a@href@js:\"https://m.umei.cc\"+result",
  1388. "rulePubDate": "",
  1389. "ruleTitle": "class.New-PL-tit@text",
  1390. "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/",
  1391. "sourceGroup": "🌫 美图",
  1392. "sourceIcon": "http://kr.shaodiyejin.com/file/2020/0503/small2711f2c54cbc99a400938c0347019fec.jpg",
  1393. "sourceName": "优美图库-美女图片",
  1394. "sourceUrl": "https://m.umei.cc/meinvtupian/"
  1395. },
  1396. {
  1397. "articleStyle": 0,
  1398. "customOrder": 0,
  1399. "enableJs": true,
  1400. "enabled": true,
  1401. "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}",
  1402. "loadWithBaseUrl": true,
  1403. "ruleArticles": "class.col-md-12.8@a&&class.col-md-12.7@a",
  1404. "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>",
  1405. "ruleDescription": "",
  1406. "ruleImage": "",
  1407. "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
  1408. "rulePubDate": "",
  1409. "ruleTitle": "a@text",
  1410. "sourceGroup": "🥂 娱乐",
  1411. "sourceIcon": "https://p1.ssl.qhimg.com/dmsmty/1080_902_/t01633e643b500fbcbc.webp",
  1412. "sourceName": "64码-港澳国外",
  1413. "sourceUrl": "http://live.64ma.com"
  1414. },
  1415. {
  1416. "articleStyle": 0,
  1417. "customOrder": 0,
  1418. "enableJs": true,
  1419. "enabled": true,
  1420. "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}",
  1421. "loadWithBaseUrl": true,
  1422. "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",
  1423. "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>",
  1424. "ruleDescription": "",
  1425. "ruleImage": "",
  1426. "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
  1427. "rulePubDate": "",
  1428. "ruleTitle": "a@text",
  1429. "sourceGroup": "🥂 娱乐",
  1430. "sourceIcon": "http://tv.cn/favicon.ico",
  1431. "sourceName": "64码-分类频道",
  1432. "sourceUrl": "https://live.64ma.com/"
  1433. },
  1434. {
  1435. "articleStyle": 0,
  1436. "customOrder": 0,
  1437. "enableJs": true,
  1438. "enabled": true,
  1439. "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}",
  1440. "loadWithBaseUrl": true,
  1441. "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",
  1442. "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>",
  1443. "ruleDescription": "",
  1444. "ruleImage": "",
  1445. "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
  1446. "rulePubDate": "",
  1447. "ruleTitle": "a@text",
  1448. "sourceGroup": "🥂 娱乐",
  1449. "sourceIcon": "http://www.ahtv.cn/t/1/3/images/indexlogo.png",
  1450. "sourceName": "64码-地方台",
  1451. "sourceUrl": "http://live.64ma.com/"
  1452. },
  1453. {
  1454. "articleStyle": 0,
  1455. "customOrder": 0,
  1456. "enableJs": true,
  1457. "enabled": true,
  1458. "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}",
  1459. "loadWithBaseUrl": true,
  1460. "ruleArticles": "class.col-md-12.0@a&&class.col-md-12.1@a",
  1461. "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>",
  1462. "ruleDescription": "",
  1463. "ruleImage": "",
  1464. "ruleLink": "a@href@js:\"https://live.64ma.com/\"+result",
  1465. "rulePubDate": "",
  1466. "ruleTitle": "a@text",
  1467. "sourceGroup": "🥂 娱乐",
  1468. "sourceIcon": "https://p1.ssl.qhimg.com/dmsmty/1080_1080_/t01da7b315b4828436d.webp",
  1469. "sourceName": "64码-央视卫视",
  1470. "sourceUrl": "https://live.64ma.com"
  1471. },
  1472. {
  1473. "articleStyle": 0,
  1474. "customOrder": 0,
  1475. "enableJs": true,
  1476. "enabled": true,
  1477. "loadWithBaseUrl": true,
  1478. "ruleArticles": "@css:#masonry>div",
  1479. "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>",
  1480. "ruleDescription": "",
  1481. "ruleImage": "img@data-original",
  1482. "ruleLink": "@css:a@href",
  1483. "ruleNextPage": "@css:li.next>a@href",
  1484. "rulePubDate": "",
  1485. "ruleTitle": "@css:.item-link-text@text",
  1486. "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/",
  1487. "sourceGroup": "美图",
  1488. "sourceIcon": "https://a7a7.net/meitu/usr/themes/photograph/favicon.png",
  1489. "sourceName": "阿七美图馆",
  1490. "sourceUrl": "https://a7a7.net/meitu/index.php/category/"
  1491. },
  1492. {
  1493. "articleStyle": 0,
  1494. "customOrder": 0,
  1495. "enableJs": true,
  1496. "enabled": true,
  1497. "loadWithBaseUrl": true,
  1498. "ruleArticles": "$.data.list",
  1499. "ruleContent": "",
  1500. "ruleDescription": "<video poster=\"{{$.cover}}\" src=\"{{$.m3u8url}}\" width=\"100%\" controls=\"controls\" ></video>\n <p>{{$.title}}</p>",
  1501. "ruleImage": "$.cover",
  1502. "ruleLink": "$.playurl",
  1503. "ruleNextPage": "$.title",
  1504. "rulePubDate": "",
  1505. "ruleTitle": "$.title",
  1506. "sortUrl": "",
  1507. "sourceGroup": "直播•温某某",
  1508. "sourceIcon": "https://static.yizhibo.com/v2/h5/share/icons/apple-touch-icon-152x152.png",
  1509. "sourceName": "一直播",
  1510. "sourceUrl": "https://m.yizhibo.com/www/live/visitor_hot_list"
  1511. },
  1512. {
  1513. "articleStyle": 0,
  1514. "customOrder": 0,
  1515. "enableJs": false,
  1516. "enabled": true,
  1517. "loadWithBaseUrl": false,
  1518. "ruleArticles": "$.content.u2||$.content.u1||$.content.u0||$.content.roomList",
  1519. "ruleContent": "",
  1520. "ruleDescription": "<video poster=\"{{$.pic}}\" src=\"http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8?_=\" width=\"100%\" controls=\"controls\" ></video>\n <p>{{$.userMood}}</p>",
  1521. "ruleImage": "$.pic",
  1522. "ruleLink": "http://124-116-133-172.xiu123.cn/{{$.flvtitle}}/playlist.m3u8",
  1523. "rulePubDate": "$.username",
  1524. "ruleTitle": "$.userMood",
  1525. "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",
  1526. "sourceGroup": "直播•温某某",
  1527. "sourceIcon": "http://vr0.6rooms.com/v/d3/8746b065fc1d40d19144b38809698e46.png",
  1528. "sourceName": "六间房",
  1529. "sourceUrl": "v.6.cn"
  1530. },
  1531. {
  1532. "articleStyle": 0,
  1533. "customOrder": 0,
  1534. "enableJs": true,
  1535. "enabled": true,
  1536. "loadWithBaseUrl": true,
  1537. "ruleArticles": "tag.article",
  1538. "ruleContent": "",
  1539. "ruleDescription": "class.entry-content@html",
  1540. "ruleImage": "tag.img@src",
  1541. "ruleLink": "class.entry-title@tag.a@href",
  1542. "ruleNextPage": "class.wp-pagenavi@class.nextpostslink@href",
  1543. "rulePubDate": "tag.div.2@text",
  1544. "ruleTitle": "class.entry-title@text",
  1545. "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",
  1546. "sourceGroup": "自定义☆",
  1547. "sourceIcon": "",
  1548. "sourceName": "HTML5素材",
  1549. "sourceUrl": "https://www.html5tricks.com/",
  1550. "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}"
  1551. },
  1552. {
  1553. "articleStyle": 0,
  1554. "customOrder": 0,
  1555. "enableJs": true,
  1556. "enabled": true,
  1557. "loadWithBaseUrl": true,
  1558. "ruleArticles": "//div[@class=\"main-content\"]/div[2]/div",
  1559. "ruleContent": ".main-body@html",
  1560. "ruleDescription": "",
  1561. "ruleImage": "",
  1562. "ruleLink": "//*[@class=\"pin-coat\"]/a[1]/@href",
  1563. "ruleNextPage": "//div[@class=\"main-content\"]/div[4]/a[@title=\"下一页\"]/@href",
  1564. "rulePubDate": "//div/div/span/span/text()",
  1565. "ruleTitle": "//div/a/span/text()",
  1566. "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",
  1567. "sourceGroup": "福利",
  1568. "sourceIcon": "https://android-artworks.25pp.com/fs08/2016/06/09/4/1_6f8d82c3c8a0cc7722c2fb4959090044_con_130x130.png",
  1569. "sourceName": "绝对服从",
  1570. "sourceUrl": "http://www.jueduifucong.com/"
  1571. },
  1572. {
  1573. "articleStyle": 0,
  1574. "customOrder": 0,
  1575. "enableJs": true,
  1576. "enabled": true,
  1577. "loadWithBaseUrl": true,
  1578. "ruleArticles": "//*[@class=\"post-body clearfix\"]/article\n|| //*[@class=\"classic-list clearfix\"]",
  1579. "ruleContent": "//*[@class=\"post-body clearfix\"]",
  1580. "ruleDescription": "",
  1581. "ruleImage": "//*[@id=\"article\"]/div[1]/a/img/@src",
  1582. "ruleLink": "//*[@id=\"article\"]/div[2]/h3/a/@href",
  1583. "ruleNextPage": "//div[@class=\"pagination clearfix\"]/a[-2]/@href || class.pagination clearfix@tag.a.-2@href || text.下一页@href",
  1584. "rulePubDate": "//*[@id=\"article\"]/div[2]/div[1]/span[2]/a/text()",
  1585. "ruleTitle": "//*[@id=\"article\"]/div[2]/h3/a/text()",
  1586. "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/推荐阅读",
  1587. "sourceGroup": "黑客新闻",
  1588. "sourceIcon": "http://hackernews.cc/wp-includes/images/HackerNews_w.png",
  1589. "sourceName": "Hacker News",
  1590. "sourceUrl": "http://hackernews.cc"
  1591. },
  1592. {
  1593. "articleStyle": 0,
  1594. "customOrder": 0,
  1595. "enableJs": false,
  1596. "enabled": true,
  1597. "loadWithBaseUrl": false,
  1598. "ruleArticles": "class.archive-row@li",
  1599. "ruleContent": "",
  1600. "ruleImage": "tag.img@data-src",
  1601. "ruleLink": "tag.a.0@href",
  1602. "ruleNextPage": "",
  1603. "ruleTitle": "tag.h2@text",
  1604. "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",
  1605. "sourceIcon": "http://www.huapuzi.com/wp-content/uploads/2020/07/cropped-dd_%E5%89%AF%E6%9C%AC-1-192x192.png",
  1606. "sourceName": "花铺子",
  1607. "sourceUrl": "http://www.huapuzi.com"
  1608. },
  1609. {
  1610. "articleStyle": 0,
  1611. "customOrder": 0,
  1612. "enableJs": true,
  1613. "enabled": true,
  1614. "loadWithBaseUrl": true,
  1615. "ruleArticles": "class.wap_home_album_list_container@li&&class.wap_font_list@li",
  1616. "ruleContent": "all",
  1617. "ruleImage": "img@src",
  1618. "ruleLink": "tag.a.0@href",
  1619. "ruleNextPage": "page",
  1620. "rulePubDate": "",
  1621. "ruleTitle": "h5@text||tag.a@title",
  1622. "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",
  1623. "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",
  1624. "sourceName": "字体天下",
  1625. "sourceUrl": "http://m.fonts.net.cn/fonts-zh/tag-lishu-1.html"
  1626. },
  1627. {
  1628. "articleStyle": 0,
  1629. "customOrder": 0,
  1630. "enableJs": true,
  1631. "enabled": true,
  1632. "loadWithBaseUrl": false,
  1633. "ruleArticles": "class.news_tlist_item",
  1634. "ruleLink": "tag.a@href",
  1635. "rulePubDate": "class.n_item_date@text",
  1636. "ruleTitle": "tag.a@text",
  1637. "sortUrl": "",
  1638. "sourceIcon": "",
  1639. "sourceName": "博客园IT新闻",
  1640. "sourceUrl": "https://news.cnblogs.com/n/date?date="
  1641. },
  1642. {
  1643. "articleStyle": 0,
  1644. "customOrder": 0,
  1645. "enableJs": false,
  1646. "enabled": true,
  1647. "loadWithBaseUrl": false,
  1648. "ruleArticles": "id.article-list@ul@li",
  1649. "ruleContent": "class.article-content clearfix@html",
  1650. "ruleLink": "a@href",
  1651. "ruleTitle": "a@text",
  1652. "sourceGroup": "💠 其他",
  1653. "sourceIcon": "https://www.yaozuopan.top/usr/themes/GreenGrapes/favicon.ico",
  1654. "sourceName": "tracker",
  1655. "sourceUrl": "https://www.yaozuopan.top/index.php/11.html"
  1656. },
  1657. {
  1658. "articleStyle": 0,
  1659. "customOrder": 0,
  1660. "enableJs": true,
  1661. "enabled": true,
  1662. "loadWithBaseUrl": true,
  1663. "ruleArticles": "html",
  1664. "ruleContent": "<js>\norg.jsoup.Jsoup.parse(result).select(\"html\").html()\n</js>##<div class=\"banquan\">[\\s\\S]*</div>",
  1665. "ruleImage": "@js:'http://img.alicdn.com/imgextra/i1/0/O1CN01eobjjy1K4sdBtNtzu_!!0-rate.jpg'",
  1666. "ruleLink": "@js:result=baseUrl",
  1667. "rulePubDate": "",
  1668. "ruleTitle": "title@text",
  1669. "sortUrl": "",
  1670. "sourceGroup": "",
  1671. "sourceIcon": "https://img.alicdn.com/tfs/TB1qpwlQXXXXXcCXXXXXXXXXXXX-256-256.png",
  1672. "sourceName": "淘宝买家秀",
  1673. "sourceUrl": "http://www.zheng800.com/xiu/",
  1674. "style": ""
  1675. },
  1676. {
  1677. "articleStyle": 0,
  1678. "customOrder": 0,
  1679. "enableJs": false,
  1680. "enabled": true,
  1681. "loadWithBaseUrl": false,
  1682. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  1683. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1684. "ruleLink": "//@href",
  1685. "ruleTitle": "//text()",
  1686. "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",
  1687. "sourceGroup": "W3school",
  1688. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1689. "sourceName": "W3school\n完整",
  1690. "sourceUrl": "https://www.w3school.com.cn/"
  1691. },
  1692. {
  1693. "articleStyle": 0,
  1694. "customOrder": 0,
  1695. "enableJs": false,
  1696. "enabled": true,
  1697. "loadWithBaseUrl": false,
  1698. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  1699. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1700. "ruleLink": "//@href",
  1701. "ruleTitle": "//text()",
  1702. "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",
  1703. "sourceGroup": "W3school",
  1704. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1705. "sourceName": "W3school\n浏览器脚本",
  1706. "sourceUrl": "https://www.w3school.com.cn/js/index.asp"
  1707. },
  1708. {
  1709. "articleStyle": 0,
  1710. "customOrder": 0,
  1711. "enableJs": false,
  1712. "enabled": true,
  1713. "loadWithBaseUrl": false,
  1714. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li[@class=\"currentLink\"]/../li",
  1715. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1716. "ruleLink": "//li/a/@href",
  1717. "ruleTitle": "//li/a/text()",
  1718. "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",
  1719. "sourceGroup": "W3school",
  1720. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1721. "sourceName": "W3school\n编程",
  1722. "sourceUrl": "https://www.w3school.com.cn/python/index.asp"
  1723. },
  1724. {
  1725. "articleStyle": 0,
  1726. "customOrder": 0,
  1727. "enableJs": false,
  1728. "enabled": true,
  1729. "loadWithBaseUrl": false,
  1730. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  1731. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1732. "ruleLink": "//@href",
  1733. "ruleTitle": "//text()",
  1734. "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",
  1735. "sourceGroup": "W3shool",
  1736. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1737. "sourceName": "W3school\nXML教程",
  1738. "sourceUrl": "https://www.w3school.com.cn/xml/index.asp"
  1739. },
  1740. {
  1741. "articleStyle": 0,
  1742. "customOrder": 0,
  1743. "enableJs": false,
  1744. "enabled": true,
  1745. "loadWithBaseUrl": false,
  1746. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  1747. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1748. "ruleLink": "//@href",
  1749. "ruleTitle": "//text()",
  1750. "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",
  1751. "sourceGroup": "W3school",
  1752. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1753. "sourceName": "W3school\nWeb Services",
  1754. "sourceUrl": "https://www.w3school.com.cn/php/webservices.asp"
  1755. },
  1756. {
  1757. "articleStyle": 0,
  1758. "customOrder": 0,
  1759. "enableJs": false,
  1760. "enabled": true,
  1761. "loadWithBaseUrl": false,
  1762. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  1763. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1764. "ruleLink": "//@href",
  1765. "ruleTitle": "//text()",
  1766. "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",
  1767. "sourceGroup": "W3school",
  1768. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1769. "sourceName": "W3school\n建站手册",
  1770. "sourceUrl": "https://www.w3school.com.cn/site/index.asp"
  1771. },
  1772. {
  1773. "articleStyle": 0,
  1774. "customOrder": 0,
  1775. "enableJs": false,
  1776. "enabled": true,
  1777. "loadWithBaseUrl": false,
  1778. "ruleArticles": "//div[@id=\"navsecond\"]/div[@id=\"course\"]/ul/li/a",
  1779. "ruleContent": "//div[@id=\"maincontent\"]##=\"/##=\"https://www.w3school.com.cn/",
  1780. "ruleLink": "//@href",
  1781. "ruleTitle": "//text()",
  1782. "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",
  1783. "sourceGroup": "W3school",
  1784. "sourceIcon": "https://www.w3school.com.cn/ui2019/logo-180.png",
  1785. "sourceName": "W3school\n服务器脚本",
  1786. "sourceUrl": "https://www.w3school.com.cn/php/index.asp"
  1787. },
  1788. {
  1789. "articleStyle": 0,
  1790. "customOrder": 0,
  1791. "enableJs": false,
  1792. "enabled": true,
  1793. "loadWithBaseUrl": false,
  1794. "ruleArticles": "article",
  1795. "ruleDescription": "",
  1796. "ruleImage": "img@data-src",
  1797. "ruleLink": "tag.a.1@href",
  1798. "ruleNextPage": "class.next-page@tag.a@href",
  1799. "rulePubDate": "class.float-right@text",
  1800. "ruleTitle": "tag.a.1@text",
  1801. "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/",
  1802. "sourceGroup": "🗂️ 软件",
  1803. "sourceIcon": "http://www.sixyin.com/wp-content/uploads/2020/07/1595643570-favicon.png",
  1804. "sourceName": "六音软件",
  1805. "sourceUrl": "https://www.sixyin.com"
  1806. },
  1807. {
  1808. "articleStyle": 0,
  1809. "customOrder": 0,
  1810. "enableJs": true,
  1811. "enabled": true,
  1812. "loadWithBaseUrl": true,
  1813. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1814. "ruleContent": "//div[@id=\"content\"]",
  1815. "ruleLink": "//@href",
  1816. "ruleTitle": "//text()",
  1817. "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",
  1818. "sourceGroup": "编程",
  1819. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1820. "sourceName": "Runoob-服务端",
  1821. "sourceUrl": "https://www.runoob.com/cate3"
  1822. },
  1823. {
  1824. "articleStyle": 0,
  1825. "customOrder": 0,
  1826. "enableJs": true,
  1827. "enabled": true,
  1828. "loadWithBaseUrl": true,
  1829. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1830. "ruleContent": "//div[@id=\"content\"]",
  1831. "ruleLink": "//@href",
  1832. "ruleTitle": "//text()",
  1833. "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",
  1834. "sourceGroup": "编程",
  1835. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1836. "sourceName": "Runoob-数据库",
  1837. "sourceUrl": "https://www.runoob.com/cate4"
  1838. },
  1839. {
  1840. "articleStyle": 0,
  1841. "customOrder": 0,
  1842. "enableJs": true,
  1843. "enabled": true,
  1844. "loadWithBaseUrl": true,
  1845. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1846. "ruleContent": "//div[@id=\"content\"]",
  1847. "ruleLink": "//@href",
  1848. "ruleTitle": "//text()",
  1849. "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",
  1850. "sourceGroup": "编程",
  1851. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1852. "sourceName": "Runoob-移动端",
  1853. "sourceUrl": "https://www.runoob.com/cate5"
  1854. },
  1855. {
  1856. "articleStyle": 0,
  1857. "customOrder": 0,
  1858. "enableJs": true,
  1859. "enabled": true,
  1860. "loadWithBaseUrl": true,
  1861. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1862. "ruleContent": "//div[@id=\"content\"]",
  1863. "ruleLink": "//@href",
  1864. "ruleTitle": "//text()",
  1865. "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",
  1866. "sourceGroup": "编程",
  1867. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1868. "sourceName": "Runoob-XML 教程",
  1869. "sourceUrl": "https://www.runoob.com/#cate6"
  1870. },
  1871. {
  1872. "articleStyle": 0,
  1873. "customOrder": 0,
  1874. "enableJs": true,
  1875. "enabled": true,
  1876. "loadWithBaseUrl": true,
  1877. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1878. "ruleContent": "//div[@id=\"content\"]",
  1879. "ruleLink": "//@href",
  1880. "ruleTitle": "//text()",
  1881. "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",
  1882. "sourceGroup": "编程",
  1883. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1884. "sourceName": "Runoob-ASP.NET",
  1885. "sourceUrl": "https://www.runoob.com/#cate7"
  1886. },
  1887. {
  1888. "articleStyle": 0,
  1889. "customOrder": 0,
  1890. "enableJs": true,
  1891. "enabled": true,
  1892. "loadWithBaseUrl": true,
  1893. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1894. "ruleContent": "//div[@id=\"content\"]",
  1895. "ruleLink": "//@href",
  1896. "ruleTitle": "//text()",
  1897. "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",
  1898. "sourceGroup": "编程",
  1899. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1900. "sourceName": "Runoob-开发工具",
  1901. "sourceUrl": "https://www.runoob.com/#cate9"
  1902. },
  1903. {
  1904. "articleStyle": 0,
  1905. "customOrder": 0,
  1906. "enableJs": true,
  1907. "enabled": true,
  1908. "loadWithBaseUrl": true,
  1909. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  1910. "ruleContent": "//div[@id=\"content\"]",
  1911. "ruleLink": "//@href",
  1912. "ruleTitle": "//text()",
  1913. "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",
  1914. "sourceGroup": "编程",
  1915. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  1916. "sourceName": "Runoob-网站建设",
  1917. "sourceUrl": "https://www.runoob.com/#cate10"
  1918. },
  1919. {
  1920. "articleStyle": 0,
  1921. "customOrder": 0,
  1922. "enableJs": false,
  1923. "enabled": true,
  1924. "loadWithBaseUrl": false,
  1925. "ruleArticles": "class.excerpt",
  1926. "ruleContent": "class.article-content@html##未经允许不得转载.*",
  1927. "ruleImage": "img@data-original",
  1928. "ruleLink": "h2@a@href",
  1929. "ruleNextPage": "page",
  1930. "rulePubDate": "class.time@text##.*发布于",
  1931. "ruleTitle": "h2@a@text",
  1932. "sourceIcon": "",
  1933. "sourceName": "宅男女神",
  1934. "sourceUrl": "https://openys.cn/category/znns/page/{{page}}",
  1935. "style": "img{width:100%; height:auto;}\nvideo{width:100%; height:auto;}"
  1936. },
  1937. {
  1938. "articleStyle": 0,
  1939. "customOrder": 0,
  1940. "enableJs": true,
  1941. "enabled": true,
  1942. "loadWithBaseUrl": true,
  1943. "ruleArticles": "@js:\nvar x = baseUrl.substr(35);\njava.getElements(\"@@class.menu.\"+x+\"@a\");",
  1944. "ruleLink": "href",
  1945. "rulePubDate": "",
  1946. "ruleTitle": "text",
  1947. "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",
  1948. "sourceIcon": "https://www.qqxiuzi.cn/favicon.ico",
  1949. "sourceName": "千千秀字",
  1950. "sourceUrl": "https://www.qqxiuzi.cn/"
  1951. },
  1952. {
  1953. "articleStyle": 0,
  1954. "customOrder": 0,
  1955. "enableJs": true,
  1956. "enabled": true,
  1957. "loadWithBaseUrl": true,
  1958. "ruleArticles": "tag.ul@class.list_d",
  1959. "ruleImage": "tag.img@src",
  1960. "ruleLink": "tag.a@href",
  1961. "ruleNextPage": "text.下一页@href",
  1962. "ruleTitle": "tag.dt@text",
  1963. "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",
  1964. "sourceIcon": "http://m.aiboy.cc/favicon.ico",
  1965. "sourceName": "男孩",
  1966. "sourceUrl": "http://m.aiboy.cc/"
  1967. },
  1968. {
  1969. "articleStyle": 0,
  1970. "customOrder": 0,
  1971. "enableJs": true,
  1972. "enabled": true,
  1973. "loadWithBaseUrl": true,
  1974. "ruleArticles": ".book_top_Nav@tag.li||.fenlei@tag.li||.book_list",
  1975. "ruleImage": "tag.img@src",
  1976. "ruleLink": "tag.a@href",
  1977. "rulePubDate": "tag.div.4@text",
  1978. "ruleTitle": "tag.a@text||text##\\s.*",
  1979. "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",
  1980. "sourceGroup": "📖 阅读",
  1981. "sourceIcon": "https://mm.sfacg.com/images/logo.gif",
  1982. "sourceName": "SF轻小说",
  1983. "sourceUrl": "https://m.sfacg.com"
  1984. },
  1985. {
  1986. "articleStyle": 0,
  1987. "customOrder": 0,
  1988. "enableJs": true,
  1989. "enabled": true,
  1990. "loadWithBaseUrl": true,
  1991. "ruleArticles": "html",
  1992. "ruleContent": "",
  1993. "ruleImage": "@js:'http://iyy.5ay.xyz/moban/default/template/img/load.gif'",
  1994. "ruleLink": "@js:result=baseUrl",
  1995. "rulePubDate": "",
  1996. "ruleTitle": "title@text",
  1997. "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",
  1998. "sourceGroup": "自己在分类添加你喜欢的漫画链接即可\n格式 网站名字::网站连接",
  1999. "sourceIcon": "",
  2000. "sourceName": "25漫画网站集合~浏览器看漫画",
  2001. "sourceUrl": "http://manhua.cn",
  2002. "style": ""
  2003. },
  2004. {
  2005. "articleStyle": 0,
  2006. "customOrder": 0,
  2007. "enableJs": false,
  2008. "enabled": true,
  2009. "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}",
  2010. "loadWithBaseUrl": true,
  2011. "ruleArticles": "id.main@tag.article",
  2012. "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(/(浏览 次)/,\"\")",
  2013. "ruleImage": "tag.img@src",
  2014. "ruleLink": "tag.a.0@href",
  2015. "ruleNextPage": "text.下页@tag.a@href",
  2016. "rulePubDate": "{{@@class.date@span@title}} {{@@class.views@text}}##浏览 次",
  2017. "ruleTitle": "tag.a.0@title",
  2018. "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",
  2019. "sourceGroup": "",
  2020. "sourceIcon": "https://www.kdtjq.com/wp-content/themes/Unite/images/favicon.png",
  2021. "sourceName": "宅男俱乐部",
  2022. "sourceUrl": "https://www.kdtjq.com",
  2023. "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}"
  2024. },
  2025. {
  2026. "articleStyle": 0,
  2027. "customOrder": 0,
  2028. "enableJs": false,
  2029. "enabled": true,
  2030. "loadWithBaseUrl": false,
  2031. "ruleArticles": "class.row@class.post-grid",
  2032. "ruleContent": "class.entry-content@html@js:result.replace(/\\ssrc=.*?\\s/g,' ').replace(/data-src/g,'src')",
  2033. "ruleImage": "img@data-src",
  2034. "ruleLink": "h3@a@href",
  2035. "ruleNextPage": "page",
  2036. "rulePubDate": "class.grid-post-date@text",
  2037. "ruleTitle": "h3@a@text",
  2038. "sourceGroup": "🔞 福利",
  2039. "sourceIcon": "http://www.weibomn.com/static/images/logo.png",
  2040. "sourceName": "微博美女",
  2041. "sourceUrl": "http://www.weibomn.com/Archive{{page}}.html"
  2042. },
  2043. {
  2044. "articleStyle": 0,
  2045. "customOrder": 0,
  2046. "enableJs": true,
  2047. "enabled": true,
  2048. "loadWithBaseUrl": true,
  2049. "ruleArticles": "class.app_left_list@a",
  2050. "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>",
  2051. "ruleDescription": "",
  2052. "ruleImage": "img@src",
  2053. "ruleLink": "a@href@js:'https://www.coolapk.com'+result",
  2054. "ruleNextPage": "<js>\nvar page=Number(baseUrl.match(/\\d+/)[0])+1\nbastUrl=baseUrl.replace(/\\d+/,page)\n</js>",
  2055. "rulePubDate": "class.list_app_info@text",
  2056. "ruleTitle": "class.list_app_title@text",
  2057. "sourceIcon": "https://www.coolapk.com/favicon.ico",
  2058. "sourceName": "酷安",
  2059. "sourceUrl": "https://www.coolapk.com/apk?p=1"
  2060. },
  2061. {
  2062. "articleStyle": 0,
  2063. "customOrder": 0,
  2064. "enableJs": true,
  2065. "enabled": true,
  2066. "loadWithBaseUrl": true,
  2067. "ruleArticles": "class.list.1@li||class.column-2 ",
  2068. "ruleContent": "all##<script>xia\\(\\);tongji\\(\\);xuanfu\\(\\);</script>|<div style=\"display:none\">[\\s\\S]+ype=\"text/javascript\" src=\"/js/xx.js\"></script>",
  2069. "ruleDescription": "",
  2070. "ruleImage": "",
  2071. "ruleLink": "tag.a.0@href##^##http://www.deyunshuwu.com",
  2072. "ruleNextPage": "text.下页@href",
  2073. "rulePubDate": "class.update@text&&tag.span.0@text",
  2074. "ruleTitle": "tag.a.0@text",
  2075. "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&&",
  2076. "sourceIcon": "",
  2077. "sourceName": "德云书屋",
  2078. "sourceUrl": "http://www.deyunshuwu.com"
  2079. },
  2080. {
  2081. "articleStyle": 0,
  2082. "customOrder": 0,
  2083. "enableJs": true,
  2084. "enabled": true,
  2085. "loadWithBaseUrl": true,
  2086. "ruleArticles": "class.recommend-article@ul@li||class.untagged",
  2087. "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>",
  2088. "ruleDescription": "",
  2089. "ruleImage": "class.recmd-left@img@src||class.thumb@a@img@src",
  2090. "ruleLink": "class.recmd-left@href||class.contentHerf@href@js:'https://www.qiushibaike.com'+result+',{\"charset\": \"utf-8\",\"method\": \"GET\",\"webView\": true }'",
  2091. "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",
  2092. "rulePubDate": "",
  2093. "ruleTitle": "class.recmd-left@img@alt||class.contentHerf@class.content@span@text\n",
  2094. "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/",
  2095. "sourceIcon": "https://www.qiushibaike.com/favicon.ico",
  2096. "sourceName": "糗事百科",
  2097. "sourceUrl": "https://www.qiushibaike.com/8hr/page/1/"
  2098. },
  2099. {
  2100. "articleStyle": 0,
  2101. "customOrder": 0,
  2102. "enableJs": false,
  2103. "enabled": true,
  2104. "loadWithBaseUrl": false,
  2105. "ruleArticles": "tag.article",
  2106. "ruleContent": "id.content@article@html",
  2107. "ruleImage": "tag.img.0@src",
  2108. "ruleLink": "class.fusion-rollover-title.0@tag.a@href",
  2109. "ruleTitle": "class.fusion-rollover-title.0@tag.a@text",
  2110. "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",
  2111. "sourceIcon": "https://image.zsh8.com/uploads/2017/08/zslogophone1.png",
  2112. "sourceName": "芝士豪八动漫",
  2113. "sourceUrl": "https://www.zsh8.com"
  2114. },
  2115. {
  2116. "articleStyle": 0,
  2117. "customOrder": 0,
  2118. "enableJs": true,
  2119. "enabled": true,
  2120. "loadWithBaseUrl": true,
  2121. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  2122. "ruleContent": "//div[@id=\"content\"]",
  2123. "ruleLink": "//@href",
  2124. "ruleTitle": "//text()",
  2125. "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",
  2126. "sourceGroup": "编程",
  2127. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  2128. "sourceName": "Runoob-JavaScript",
  2129. "sourceUrl": "https://www.runoob.com/cate2"
  2130. },
  2131. {
  2132. "articleStyle": 0,
  2133. "customOrder": 0,
  2134. "enableJs": true,
  2135. "enabled": true,
  2136. "loadWithBaseUrl": true,
  2137. "ruleArticles": "//div[@id=\"leftcolumn\"]/a",
  2138. "ruleContent": "//div[@id=\"content\"]",
  2139. "ruleLink": "//@href",
  2140. "ruleTitle": "//text()",
  2141. "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",
  2142. "sourceGroup": "编程",
  2143. "sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1707514647,3697716534&fm=15&gp=0.jpg",
  2144. "sourceName": "Runoob- Web Service",
  2145. "sourceUrl": "https://www.runoob.com/#cate8"
  2146. },
  2147. {
  2148. "articleStyle": 0,
  2149. "customOrder": 0,
  2150. "enableJs": true,
  2151. "enabled": true,
  2152. "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\"}",
  2153. "loadWithBaseUrl": true,
  2154. "ruleArticles": "#m@.info",
  2155. "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}",
  2156. "ruleDescription": "",
  2157. "ruleImage": "",
  2158. "ruleLink": "@js:if(baseUrl.match(/sort/)){\njava.getString(\"@@a@href\",true);\n}else{\n baseUrl;\n}",
  2159. "ruleNextPage": "text.下一页@href",
  2160. "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}",
  2161. "ruleTitle": "@js:if(baseUrl.match(/sort/)){\njava.getString(\"@@a@text\",false);\n}else{\n \"搜索\"\n}",
  2162. "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",
  2163. "sourceIcon": "http://www.zxcs.me/favicon.ico",
  2164. "sourceName": "知轩藏书",
  2165. "sourceUrl": "http://www.zxcs.me/"
  2166. },
  2167. {
  2168. "articleStyle": 0,
  2169. "customOrder": 0,
  2170. "enableJs": true,
  2171. "enabled": true,
  2172. "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\"}",
  2173. "loadWithBaseUrl": true,
  2174. "ruleArticles": "a[href^=index]",
  2175. "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",
  2176. "ruleDescription": "",
  2177. "ruleImage": "",
  2178. "ruleLink": "href",
  2179. "ruleNextPage": "",
  2180. "rulePubDate": "",
  2181. "ruleTitle": "text",
  2182. "sortUrl": "",
  2183. "sourceIcon": "http://www.zxcs.me/favicon.ico",
  2184. "sourceName": "知轩藏书info",
  2185. "sourceUrl": "http://m.zxcs.info/"
  2186. },
  2187. {
  2188. "articleStyle": 0,
  2189. "customOrder": 0,
  2190. "enableJs": true,
  2191. "enabled": true,
  2192. "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}",
  2193. "loadWithBaseUrl": true,
  2194. "ruleArticles": "id.m@tag.li",
  2195. "ruleDescription": "",
  2196. "ruleImage": "",
  2197. "ruleLink": "tag.a@href",
  2198. "ruleNextPage": "id.diypage@tag.a@href",
  2199. "rulePubDate": "tag.span@text",
  2200. "ruleTitle": "tag.a@text##(.*)",
  2201. "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/言情女生",
  2202. "sourceIcon": "http://www.zxcs.me/content/templates/ewceocms_t/images/logo.png",
  2203. "sourceName": "知轩藏书",
  2204. "sourceUrl": "http://www.zxcs.me"
  2205. },
  2206. {
  2207. "articleStyle": 0,
  2208. "customOrder": 0,
  2209. "enableJs": true,
  2210. "enabled": true,
  2211. "loadWithBaseUrl": true,
  2212. "ruleArticles": "class.column-2",
  2213. "ruleLink": "tag.a.0@href",
  2214. "ruleNextPage": "class.nextPage@tag.a@href",
  2215. "rulePubDate": "{{@@tag.a.2@text}} · {{@@tag.span.1@text}} · {{@@tag.span.0@text}} · {{@@tag.p.-1@text}}##更新.",
  2216. "ruleTitle": "tag.a.0@text&&tag.a.1@text",
  2217. "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",
  2218. "sourceIcon": "http://www.longtenghuaxia.com/images/jipin-default.jpg",
  2219. "sourceName": "第一版主",
  2220. "sourceUrl": "http://www.longtenghuaxia.com"
  2221. },
  2222. {
  2223. "articleStyle": 0,
  2224. "customOrder": 0,
  2225. "enableJs": true,
  2226. "enabled": true,
  2227. "loadWithBaseUrl": true,
  2228. "ruleArticles": "class.column-2",
  2229. "ruleLink": "tag.a.0@href",
  2230. "ruleNextPage": "class.nextPage@tag.a@href",
  2231. "rulePubDate": "{{@@tag.a.2@text}} · {{@@tag.span.1@text}} · {{@@tag.span.0@text}} · {{@@tag.p.-1@text}}##更新.",
  2232. "ruleTitle": "tag.a.0@text&&tag.a.1@text",
  2233. "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",
  2234. "sourceGroup": "以下是备用地址\nhttp://www.maizixueyuan.com/\nhttp://dybz6.vip/\nhttp://dybz6.me/\n地址发布页\nhttp://6u6u6u.com\nhttp://6j6j6j.com",
  2235. "sourceIcon": "http://www.longtenghuaxia.com/images/jipin-default.jpg",
  2236. "sourceName": "第一版主~移动卡都能用",
  2237. "sourceUrl": "http://www.diyibanzhu5.in/"
  2238. },
  2239. {
  2240. "articleStyle": 0,
  2241. "customOrder": 0,
  2242. "enableJs": true,
  2243. "enabled": true,
  2244. "loadWithBaseUrl": true,
  2245. "ruleArticles": "html",
  2246. "ruleContent": "",
  2247. "ruleImage": "@js:'http://iyy.5ay.xyz/moban/default/template/img/load.gif'",
  2248. "ruleLink": "@js:result=baseUrl",
  2249. "rulePubDate": "",
  2250. "ruleTitle": "title@text",
  2251. "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/",
  2252. "sourceGroup": "自己在分类添加你喜欢的链接即可\n格式 网站名字::网站连接",
  2253. "sourceIcon": "",
  2254. "sourceName": "阅读听书21网站集合",
  2255. "sourceUrl": "http://listbook.cn",
  2256. "style": ""
  2257. },
  2258. {
  2259. "articleStyle": 0,
  2260. "customOrder": 0,
  2261. "enableJs": true,
  2262. "enabled": true,
  2263. "loadWithBaseUrl": true,
  2264. "ruleArticles": "html",
  2265. "ruleContent": "",
  2266. "ruleImage": "@js:'http://img.alicdn.com/imgextra/i1/0/O1CN01eobjjy1K4sdBtNtzu_!!0-rate.jpg'",
  2267. "ruleLink": "@js:result=baseUrl",
  2268. "rulePubDate": "",
  2269. "ruleTitle": "title@text",
  2270. "sortUrl": "官网::http://xxoo.com",
  2271. "sourceGroup": "",
  2272. "sourceIcon": "",
  2273. "sourceName": "情人岛影院",
  2274. "sourceUrl": "http://xxoo.com",
  2275. "style": ""
  2276. },
  2277. {
  2278. "articleStyle": 0,
  2279. "customOrder": 0,
  2280. "enableJs": true,
  2281. "enabled": true,
  2282. "loadWithBaseUrl": true,
  2283. "ruleArticles": "html",
  2284. "ruleContent": "",
  2285. "ruleImage": "",
  2286. "ruleLink": "@js:result=baseUrl",
  2287. "rulePubDate": "",
  2288. "ruleTitle": "title@text",
  2289. "sortUrl": "官网:http://jmcomic.xyz/",
  2290. "sourceGroup": "",
  2291. "sourceIcon": "",
  2292. "sourceName": "禁漫网站发布页",
  2293. "sourceUrl": "http://jmcomic.xyz/",
  2294. "style": ""
  2295. },
  2296. {
  2297. "articleStyle": 0,
  2298. "customOrder": 2,
  2299. "enableJs": true,
  2300. "enabled": true,
  2301. "loadWithBaseUrl": true,
  2302. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2303. "ruleContent": "",
  2304. "ruleDescription": "",
  2305. "ruleImage": "tag.a@tag.img@src",
  2306. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2307. "ruleNextPage": "class.page@text.下页@href",
  2308. "rulePubDate": "",
  2309. "ruleTitle": "tag.a@text",
  2310. "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/ec1dda91f3e06cda86f087aaa2c46d06",
  2311. "sourceName": "科幻世界",
  2312. "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"
  2313. },
  2314. {
  2315. "articleStyle": 0,
  2316. "customOrder": 2,
  2317. "enableJs": true,
  2318. "enabled": true,
  2319. "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\"}",
  2320. "loadWithBaseUrl": true,
  2321. "ruleArticles": "class.container@class.col-md-3 col-xs-6",
  2322. "ruleContent": "all## <script type=\"text/javascript\">var cnzz_protocol = [\\s\\S]+?</script> ",
  2323. "ruleDescription": "",
  2324. "ruleImage": "img@src",
  2325. "ruleLink": "tag.a.0@href",
  2326. "ruleNextPage": "class.pager@tag.a.-1@href",
  2327. "rulePubDate": "class.table@span@text##\\n##·",
  2328. "ruleTitle": "class.card-caption@text",
  2329. "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",
  2330. "sourceGroup": "搜索name=后面填你想搜的东西",
  2331. "sourceIcon": "http://srvcn.xbext.com/touch_icons/96x96/mobile.h5_games.png",
  2332. "sourceName": "在线游戏",
  2333. "sourceUrl": "https://www.yikm.net/nes?tag=9"
  2334. },
  2335. {
  2336. "articleStyle": 0,
  2337. "customOrder": 2,
  2338. "enableJs": true,
  2339. "enabled": true,
  2340. "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\"}",
  2341. "loadWithBaseUrl": true,
  2342. "ruleArticles": "class.container@class.col-md-3 col-xs-6",
  2343. "ruleContent": "all## <script type=\"text/javascript\">var cnzz_protocol = [\\s\\S]+?</script> ",
  2344. "ruleDescription": "",
  2345. "ruleImage": "img@src",
  2346. "ruleLink": "tag.a.0@href",
  2347. "ruleNextPage": "class.pager@tag.a.-1@href",
  2348. "rulePubDate": "class.table@span@text##\\n##·",
  2349. "ruleTitle": "class.card-caption@text",
  2350. "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",
  2351. "sourceGroup": "搜索name=后面填你想搜的东西,中文名如果无结果,请用英文名或者关键字,比如 king of fighters;拳皇\n\n注:有些游戏存档没法用,GBA类有单独的存档功能",
  2352. "sourceIcon": "http://srvcn.xbext.com/touch_icons/96x96/mobile.h5_games.png",
  2353. "sourceName": "在线游戏",
  2354. "sourceUrl": "https://www.yikm.net/"
  2355. },
  2356. {
  2357. "articleStyle": 0,
  2358. "customOrder": 2,
  2359. "enableJs": false,
  2360. "enabled": true,
  2361. "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}",
  2362. "loadWithBaseUrl": true,
  2363. "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",
  2364. "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>'",
  2365. "ruleImage": "tag.img@src",
  2366. "ruleLink": "tag.a.0@href",
  2367. "ruleNextPage": "page",
  2368. "rulePubDate": "日期:{{@@class.time@text}} 浏览:{{@@class.views@text}}",
  2369. "ruleTitle": "tag.a.0@title",
  2370. "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}}",
  2371. "sourceIcon": "http://pic53.nipic.com/file/20141114/17976421_140050038001_2.png",
  2372. "sourceName": "秋名山动图",
  2373. "sourceUrl": "http://www.qmsgif.com",
  2374. "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}"
  2375. },
  2376. {
  2377. "articleStyle": 0,
  2378. "customOrder": 3,
  2379. "enableJs": true,
  2380. "enabled": true,
  2381. "loadWithBaseUrl": true,
  2382. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2383. "ruleContent": "",
  2384. "ruleDescription": "",
  2385. "ruleImage": "tag.a@tag.img@src",
  2386. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2387. "ruleNextPage": "class.page@text.下页@href",
  2388. "rulePubDate": "",
  2389. "ruleTitle": "tag.a@text",
  2390. "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/c4bd3960ed02a4e5e7eef8223b8f1e31",
  2391. "sourceName": "故事会",
  2392. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=08dc3c17-262e-4f58-b7d9-932ab966e582"
  2393. },
  2394. {
  2395. "articleStyle": 0,
  2396. "customOrder": 4,
  2397. "enableJs": false,
  2398. "enabled": true,
  2399. "loadWithBaseUrl": false,
  2400. "ruleArticles": "$.data.data[*]",
  2401. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2402. "ruleDescription": "",
  2403. "ruleImage": "$.thumbnail",
  2404. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2405. "rulePubDate": "$.createTimeString",
  2406. "ruleTitle": "$.title",
  2407. "sourceGroup": "",
  2408. "sourceIcon": "http://47.105.79.245/netease.jpg",
  2409. "sourceName": "网易要闻",
  2410. "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}"
  2411. },
  2412. {
  2413. "articleStyle": 0,
  2414. "customOrder": 4,
  2415. "enableJs": true,
  2416. "enabled": true,
  2417. "loadWithBaseUrl": true,
  2418. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2419. "ruleContent": "",
  2420. "ruleDescription": "",
  2421. "ruleImage": "tag.a@tag.img@src",
  2422. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2423. "ruleNextPage": "class.page@text.下页@href",
  2424. "rulePubDate": "",
  2425. "ruleTitle": "tag.a@text",
  2426. "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/d086a8d4d575d1c64992d69d5857e220",
  2427. "sourceName": "意林•原创版",
  2428. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%84%8F%E6%9E%97&key=4fd8f670-f98d-459d-8263-044f6d5e4d4a"
  2429. },
  2430. {
  2431. "articleStyle": 0,
  2432. "customOrder": 4,
  2433. "enableJs": true,
  2434. "enabled": true,
  2435. "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}",
  2436. "loadWithBaseUrl": true,
  2437. "ruleArticles": "class.s-tab-main@ul@li&&class.index-container@class.btn-play-source&&class.am-list-news-bd@li",
  2438. "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}",
  2439. "ruleImage": "img@data-original",
  2440. "ruleLink": "tag.a.0@href",
  2441. "ruleNextPage": "page",
  2442. "rulePubDate": "{{@@class.hint@text}}•{{@@class.star@text}} @js:if(baseUrl.match(/(search)|(live)/)){\nresult = \"{{@@class.am-list-item-text@text}}\"}else{result}",
  2443. "ruleTitle": "class.btn-play-source@text&&class.s1@text&&class.am-list-item-hd@text",
  2444. "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}}",
  2445. "sourceIcon": "http://img2.3png.com/a507fc72abc2eea3b9ad8780d7c33155ffde.png",
  2446. "sourceName": "牛逼影院",
  2447. "sourceUrl": "https://v.lree.cn",
  2448. "style": ""
  2449. },
  2450. {
  2451. "articleStyle": 0,
  2452. "customOrder": 5,
  2453. "enableJs": false,
  2454. "enabled": true,
  2455. "loadWithBaseUrl": true,
  2456. "ruleArticles": "$.data.data[*]",
  2457. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2458. "ruleDescription": "",
  2459. "ruleImage": "$.thumbnail",
  2460. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2461. "rulePubDate": "$.createTimeString",
  2462. "ruleTitle": "$.title",
  2463. "sourceGroup": "",
  2464. "sourceIcon": "http://47.105.79.245/mtime.jpg",
  2465. "sourceName": "时光网",
  2466. "sourceUrl": "http://47.105.79.245/v3/article?feedId=27&articleId=0&pageSize=20&isLookDown=true"
  2467. },
  2468. {
  2469. "articleStyle": 0,
  2470. "customOrder": 5,
  2471. "enableJs": true,
  2472. "enabled": true,
  2473. "loadWithBaseUrl": true,
  2474. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2475. "ruleContent": "",
  2476. "ruleDescription": "",
  2477. "ruleImage": "tag.a@tag.img@src",
  2478. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2479. "ruleNextPage": "class.page@text.下页@href",
  2480. "rulePubDate": "",
  2481. "ruleTitle": "tag.a@text",
  2482. "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/6ef9ecb00ce1579d98b9a78d13ea1448",
  2483. "sourceName": "读者",
  2484. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=ea265b17-0d79-4240-b3db-0b4cf94de08b"
  2485. },
  2486. {
  2487. "articleStyle": 0,
  2488. "customOrder": 6,
  2489. "enableJs": false,
  2490. "enabled": true,
  2491. "loadWithBaseUrl": true,
  2492. "ruleArticles": "$.data.data[*]",
  2493. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2494. "ruleDescription": "",
  2495. "ruleImage": "$.thumbnail",
  2496. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2497. "rulePubDate": "$.createTimeString",
  2498. "ruleTitle": "$.title",
  2499. "sourceGroup": "",
  2500. "sourceIcon": "http://47.105.79.245/qdaily.jpg",
  2501. "sourceName": "好奇心日报",
  2502. "sourceUrl": "http://47.105.79.245/v3/article?feedId=13&articleId=0&pageSize=20&isLookDown=true"
  2503. },
  2504. {
  2505. "articleStyle": 0,
  2506. "customOrder": 6,
  2507. "enableJs": true,
  2508. "enabled": true,
  2509. "loadWithBaseUrl": true,
  2510. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2511. "ruleContent": "",
  2512. "ruleDescription": "",
  2513. "ruleImage": "tag.a@tag.img@src",
  2514. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2515. "ruleNextPage": "class.page@text.下页@href",
  2516. "rulePubDate": "",
  2517. "ruleTitle": "tag.a@text",
  2518. "sourceIcon": "http://img01.sogoucdn.com/app/a/100520146/f9048e798127d4596cdf65f4bfd28065",
  2519. "sourceName": "读者欣赏",
  2520. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=b4f38850-dda4-4559-a1a7-59479a2e05e6"
  2521. },
  2522. {
  2523. "articleStyle": 0,
  2524. "customOrder": 6,
  2525. "enableJs": true,
  2526. "enabled": true,
  2527. "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}",
  2528. "loadWithBaseUrl": true,
  2529. "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}",
  2530. "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>'",
  2531. "ruleDescription": "",
  2532. "ruleImage": "tag.img.0@src",
  2533. "ruleLink": "tag.a@href",
  2534. "ruleNextPage": "text.下一页@tag.a.0@href",
  2535. "rulePubDate": "@js:\nif(baseUrl.match(/sch/)){\nresult = \"简介:{{@@tag.a.1@text}}\"\n}\nelse{result = \"{{@@tag.a.1@text}}\"}",
  2536. "ruleTitle": "@js:\nif(baseUrl.match(/sch/)){\nresult = \"《{{@@tag.a.0@text}}》\"\n}\nelse{result =\"《{{@@tag.img@title}}》\"+\" --- \"+\"{{@@tag.a.2@text}}\"}",
  2537. "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/",
  2538. "sourceGroup": "",
  2539. "sourceIcon": "https://s3.ax1x.com/2020/11/12/BzHvCV.png",
  2540. "sourceName": "万书网(更新)",
  2541. "sourceUrl": "https://www.iysw.net",
  2542. "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}"
  2543. },
  2544. {
  2545. "articleStyle": 0,
  2546. "customOrder": 7,
  2547. "enableJs": false,
  2548. "enabled": true,
  2549. "loadWithBaseUrl": true,
  2550. "ruleArticles": "$.data.data[*]",
  2551. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2552. "ruleDescription": "",
  2553. "ruleImage": "$.thumbnail",
  2554. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2555. "rulePubDate": "$.createTimeString",
  2556. "ruleTitle": "$.title",
  2557. "sourceGroup": "",
  2558. "sourceIcon": "http://47.105.79.245/anitama.jpg",
  2559. "sourceName": "Anitama",
  2560. "sourceUrl": "http://47.105.79.245/v3/article?feedId=86&articleId=0&pageSize=20&isLookDown=true"
  2561. },
  2562. {
  2563. "articleStyle": 0,
  2564. "customOrder": 7,
  2565. "enableJs": true,
  2566. "enabled": true,
  2567. "loadWithBaseUrl": true,
  2568. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2569. "ruleContent": "",
  2570. "ruleDescription": "",
  2571. "ruleImage": "tag.a@tag.img@src",
  2572. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2573. "ruleNextPage": "class.page@text.下页@href",
  2574. "rulePubDate": "",
  2575. "ruleTitle": "tag.a@text",
  2576. "sourceIcon": "http://img02.sogoucdn.com/app/a/100520146/7d54b0a4ccf6c99887c15b5103d79fe9",
  2577. "sourceName": "读者•校园版",
  2578. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E8%AF%BB%E8%80%85&key=9e236705-8f62-4007-9dc6-0ce02ae32a4c"
  2579. },
  2580. {
  2581. "articleStyle": 0,
  2582. "customOrder": 7,
  2583. "enableJs": false,
  2584. "enabled": true,
  2585. "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}",
  2586. "loadWithBaseUrl": true,
  2587. "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})()",
  2588. "ruleContent": "@js:\nvar doc = java.getElements(\"link&&.contentbox\")\n\n//清除广告\ndoc.select(\"img[src$=ass.jpg]\").remove()\n\nresult = doc",
  2589. "ruleImage": "tag.img.0@data-original",
  2590. "ruleLink": "tag.a.1@href",
  2591. "ruleNextPage": "page",
  2592. "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}",
  2593. "ruleTitle": "h1@text",
  2594. "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}}",
  2595. "sourceIcon": "https://www.ikmjx.com/wp-content/themes/xiuerpro%2B/static/picture/favicon.ico",
  2596. "sourceName": "爱看买家秀(除新广告)",
  2597. "sourceUrl": "https://www.ikmjx.com/",
  2598. "style": ".pagebtn, .singleinfo, .shoping, .postcate, .articlename{\ndisplay:none;\n}"
  2599. },
  2600. {
  2601. "articleStyle": 0,
  2602. "customOrder": 8,
  2603. "enableJs": false,
  2604. "enabled": true,
  2605. "loadWithBaseUrl": true,
  2606. "ruleArticles": "$.data.data[*]",
  2607. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2608. "ruleDescription": "",
  2609. "ruleImage": "$.thumbnail",
  2610. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2611. "rulePubDate": "$.createTimeString",
  2612. "ruleTitle": "$.title",
  2613. "sourceGroup": "",
  2614. "sourceIcon": "http://47.105.79.245/zimuzu-9999x0w.jpg",
  2615. "sourceName": "字幕组",
  2616. "sourceUrl": "http://47.105.79.245/v3/article?feedId=3&articleId=0&pageSize=20&isLookDown=true"
  2617. },
  2618. {
  2619. "articleStyle": 0,
  2620. "customOrder": 8,
  2621. "enableJs": true,
  2622. "enabled": true,
  2623. "loadWithBaseUrl": true,
  2624. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2625. "ruleContent": "",
  2626. "ruleDescription": "",
  2627. "ruleImage": "tag.a@tag.img@src",
  2628. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2629. "ruleNextPage": "class.page@text.下页@href",
  2630. "rulePubDate": "",
  2631. "ruleTitle": "tag.a@text",
  2632. "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/d30bf0794bd30fd0fbe07e1e1acfa143",
  2633. "sourceName": "中国新闻周刊",
  2634. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E5%91%A8%E5%88%8A&key=9015a0e8-eca9-4560-9c5e-317420aee8f5"
  2635. },
  2636. {
  2637. "articleStyle": 0,
  2638. "customOrder": 8,
  2639. "enableJs": true,
  2640. "enabled": true,
  2641. "loadWithBaseUrl": true,
  2642. "ruleArticles": "class.news-top-list-content@li@a||$.data",
  2643. "ruleContent": "",
  2644. "ruleDescription": "",
  2645. "ruleImage": "$.pic",
  2646. "ruleLink": "a@href||$.url",
  2647. "rulePubDate": "",
  2648. "ruleTitle": "class.c-title-s@text||$.title",
  2649. "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=",
  2650. "sourceGroup": "铭君集",
  2651. "sourceIcon": " http://p4.so.qhimgs1.com/t026fd076fb5a14a16e.jpg",
  2652. "sourceName": "夸克排行",
  2653. "sourceUrl": " https://quark.sm.cn/s?q= 热搜"
  2654. },
  2655. {
  2656. "articleStyle": 0,
  2657. "customOrder": 8,
  2658. "enableJs": true,
  2659. "enabled": true,
  2660. "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\"}",
  2661. "loadWithBaseUrl": true,
  2662. "ruleArticles": "class.listtxt!0:-1&&tag.h2",
  2663. "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>",
  2664. "ruleImage": "",
  2665. "ruleLink": "tag.a@href",
  2666. "ruleNextPage": "text.下一页@tag.a@href",
  2667. "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>",
  2668. "ruleTitle": "tag.a@text",
  2669. "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",
  2670. "sourceIcon": "https://s1.ax1x.com/2020/10/22/BknMPP.png",
  2671. "sourceName": "万书网",
  2672. "sourceUrl": "https://m.iysw.net",
  2673. "style": ""
  2674. },
  2675. {
  2676. "articleStyle": 0,
  2677. "customOrder": 9,
  2678. "enableJs": false,
  2679. "enabled": true,
  2680. "loadWithBaseUrl": true,
  2681. "ruleArticles": "$.data.data[*]",
  2682. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2683. "ruleDescription": "",
  2684. "ruleImage": "$.thumbnail",
  2685. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2686. "rulePubDate": "$.createTimeString",
  2687. "ruleTitle": "$.title",
  2688. "sourceGroup": "",
  2689. "sourceIcon": "http://47.105.79.245/iplaysoft.png",
  2690. "sourceName": "异次元软件世界",
  2691. "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}"
  2692. },
  2693. {
  2694. "articleStyle": 0,
  2695. "customOrder": 9,
  2696. "enableJs": true,
  2697. "enabled": true,
  2698. "loadWithBaseUrl": true,
  2699. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2700. "ruleContent": "",
  2701. "ruleDescription": "",
  2702. "ruleImage": "tag.a@tag.img@src",
  2703. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2704. "ruleNextPage": "class.page@text.下页@href",
  2705. "rulePubDate": "",
  2706. "ruleTitle": "tag.a@text",
  2707. "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/625f2f3c2bcf0fb007286dc4ecceefc7",
  2708. "sourceName": "故事林",
  2709. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%95%85%E4%BA%8B&key=95ad621a-64c6-4535-a0b1-7168523387d7"
  2710. },
  2711. {
  2712. "articleStyle": 0,
  2713. "customOrder": 10,
  2714. "enableJs": true,
  2715. "enabled": true,
  2716. "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\"}",
  2717. "loadWithBaseUrl": true,
  2718. "ruleArticles": "class.wqindex_list_ul@li&&class.wqfooter@tag.li.1&&class.wqplate_warp@tag.li.5",
  2719. "ruleContent": "",
  2720. "ruleImage": "",
  2721. "ruleLink": "tag.a.0@href",
  2722. "ruleNextPage": "text.下一页@tag.a@href",
  2723. "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>",
  2724. "ruleTitle": "class.wqtitle_list.0@text&&tag.a@text",
  2725. "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",
  2726. "sourceGroup": "",
  2727. "sourceIcon": "https://www.abooky.com/template/wq_app/static/images/gz_logo.png",
  2728. "sourceName": "阅次元",
  2729. "sourceUrl": "https://abooky.com"
  2730. },
  2731. {
  2732. "articleStyle": 0,
  2733. "customOrder": 11,
  2734. "enableJs": false,
  2735. "enabled": true,
  2736. "loadWithBaseUrl": true,
  2737. "ruleArticles": "$.data.data[*]",
  2738. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2739. "ruleDescription": "",
  2740. "ruleImage": "$.thumbnail",
  2741. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2742. "rulePubDate": "$.createTimeString",
  2743. "ruleTitle": "$.title",
  2744. "sourceGroup": "",
  2745. "sourceIcon": "http://47.105.79.245/doubanmoviereview.jpg",
  2746. "sourceName": "豆瓣最受欢迎的影评",
  2747. "sourceUrl": "http://47.105.79.245/v3/article?feedId=76&articleId=0&pageSize=20&isLookDown=true"
  2748. },
  2749. {
  2750. "articleStyle": 0,
  2751. "customOrder": 11,
  2752. "enableJs": true,
  2753. "enabled": true,
  2754. "loadWithBaseUrl": true,
  2755. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2756. "ruleContent": "",
  2757. "ruleDescription": "",
  2758. "ruleImage": "tag.a@tag.img@src",
  2759. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2760. "ruleNextPage": "class.page@text.下页@href",
  2761. "rulePubDate": "",
  2762. "ruleTitle": "tag.a@text",
  2763. "sourceIcon": "http://img04.sogoucdn.com/app/a/100520146/1782eb9ea48b824945c10478a8c0f191",
  2764. "sourceName": "文苑•经典美文",
  2765. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%96%87%E8%8B%91&key=8eb793ed-1e66-4579-b9df-bd0341d56f03"
  2766. },
  2767. {
  2768. "articleStyle": 0,
  2769. "customOrder": 12,
  2770. "enableJs": false,
  2771. "enabled": true,
  2772. "loadWithBaseUrl": true,
  2773. "ruleArticles": "$.data.data[*]",
  2774. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2775. "ruleDescription": "",
  2776. "ruleImage": "$.thumbnail",
  2777. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2778. "rulePubDate": "$.createTimeString",
  2779. "ruleTitle": "$.title",
  2780. "sourceGroup": "",
  2781. "sourceIcon": "http://47.105.79.245/nfw.png",
  2782. "sourceName": "南方要闻",
  2783. "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}"
  2784. },
  2785. {
  2786. "articleStyle": 0,
  2787. "customOrder": 12,
  2788. "enableJs": true,
  2789. "enabled": true,
  2790. "loadWithBaseUrl": true,
  2791. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2792. "ruleContent": "",
  2793. "ruleDescription": "",
  2794. "ruleImage": "tag.a@tag.img@src",
  2795. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2796. "ruleNextPage": "class.page@text.下页@href",
  2797. "rulePubDate": "",
  2798. "ruleTitle": "tag.a@text",
  2799. "sourceIcon": "http://img01.sogoucdn.com/app/a/100520146/2653f4a94e3ad146b4757ae6b8a8982b",
  2800. "sourceName": "意林",
  2801. "sourceUrl": "http://qk.lifves.com/magazine.php?s=%E6%84%8F%E6%9E%97&key=7e788766-77a0-4093-b1f1-e3f55dd55137"
  2802. },
  2803. {
  2804. "articleStyle": 0,
  2805. "customOrder": 13,
  2806. "enableJs": false,
  2807. "enabled": true,
  2808. "loadWithBaseUrl": true,
  2809. "ruleArticles": "$.data.data[*]",
  2810. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2811. "ruleDescription": "",
  2812. "ruleImage": "$.thumbnail",
  2813. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2814. "rulePubDate": "$.createTimeString",
  2815. "ruleTitle": "$.title",
  2816. "sourceGroup": "",
  2817. "sourceIcon": "http://47.105.79.245/appin.png",
  2818. "sourceName": "小众软件",
  2819. "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}"
  2820. },
  2821. {
  2822. "articleStyle": 0,
  2823. "customOrder": 13,
  2824. "enableJs": true,
  2825. "enabled": true,
  2826. "loadWithBaseUrl": true,
  2827. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2828. "ruleContent": "",
  2829. "ruleDescription": "",
  2830. "ruleImage": "tag.a@tag.img@src",
  2831. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2832. "ruleNextPage": "class.page@text.下页@href",
  2833. "rulePubDate": "",
  2834. "ruleTitle": "tag.a@text",
  2835. "sourceIcon": "http://img03.sogoucdn.com/app/a/100520146/098c12c1b948f11b70b9f2eb5a793d11",
  2836. "sourceName": "南方人物周刊",
  2837. "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"
  2838. },
  2839. {
  2840. "articleStyle": 0,
  2841. "customOrder": 13,
  2842. "enableJs": false,
  2843. "enabled": true,
  2844. "loadWithBaseUrl": false,
  2845. "ruleArticles": "",
  2846. "ruleContent": "",
  2847. "ruleDescription": "",
  2848. "ruleImage": "",
  2849. "ruleLink": "",
  2850. "rulePubDate": "",
  2851. "ruleTitle": "",
  2852. "sourceGroup": "🛰 科技",
  2853. "sourceIcon": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3752866850,588898846&fm=26&gp=0.jpg",
  2854. "sourceName": "少数派",
  2855. "sourceUrl": "https://sspai.com/feed"
  2856. },
  2857. {
  2858. "articleStyle": 0,
  2859. "customOrder": 13,
  2860. "enableJs": true,
  2861. "enabled": true,
  2862. "loadWithBaseUrl": true,
  2863. "ruleArticles": "class.stui-vodlist clearfix@ul@li",
  2864. "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>",
  2865. "ruleDescription": "",
  2866. "ruleImage": "class.stui-vodlist__thumb lazyload@data-original",
  2867. "ruleLink": "class.stui-vodlist__thumb lazyload@href@js:\"https://app.movie\"+result",
  2868. "ruleNextPage": "text.下一页@href",
  2869. "rulePubDate": "class.pic-text text-right@text",
  2870. "ruleTitle": "class.stui-vodlist__thumb lazyload@title",
  2871. "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",
  2872. "sourceGroup": "",
  2873. "sourceIcon": "https://cdn.wyteam.net/webapps/maccms/template/blueghost/img/favicon.ico",
  2874. "sourceName": "APP电影(修复版)",
  2875. "sourceUrl": "https://app.movie/index.php/vod/type/id/1.html"
  2876. },
  2877. {
  2878. "articleStyle": 0,
  2879. "customOrder": 14,
  2880. "enableJs": false,
  2881. "enabled": true,
  2882. "loadWithBaseUrl": true,
  2883. "ruleArticles": "class.wrap",
  2884. "ruleContent": "@js:String(result).replace(/<html[\\s\\S]*class=\"main-wrap/,'<body><div class=\"main-wrap>').replace(/<div class=\"qr\">[\\s\\S]*/,\"</body>\")",
  2885. "ruleDescription": "",
  2886. "ruleImage": "tag.img@src",
  2887. "ruleLink": "class.link-button@href",
  2888. "rulePubDate": "",
  2889. "ruleTitle": "class.title@text",
  2890. "sourceGroup": "Origin",
  2891. "sourceIcon": "http://static.daily.zhihu.com/img/app-logo.png",
  2892. "sourceName": "知乎日報",
  2893. "sourceUrl": "https://daily.zhihu.com"
  2894. },
  2895. {
  2896. "articleStyle": 0,
  2897. "customOrder": 15,
  2898. "enableJs": true,
  2899. "enabled": true,
  2900. "loadWithBaseUrl": true,
  2901. "ruleArticles": "class.layui-flow-more layui-anim layui-anim-scaleSpring",
  2902. "ruleContent": "",
  2903. "ruleDescription": "",
  2904. "ruleImage": "tag.a@tag.img@src",
  2905. "ruleLink": "tag.a@href<js>\nbastUrl = \"http://qk.lifves.com/\"+result\n</js>",
  2906. "ruleNextPage": "class.page@text.下页@href",
  2907. "rulePubDate": "",
  2908. "ruleTitle": "tag.a@text",
  2909. "sourceIcon": "http://img01.sogoucdn.com/app/a/100520146/f09eed641db72bd7a35f4433f17690ba",
  2910. "sourceName": "文史博览",
  2911. "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"
  2912. },
  2913. {
  2914. "articleStyle": 0,
  2915. "customOrder": 15,
  2916. "enableJs": true,
  2917. "enabled": true,
  2918. "loadWithBaseUrl": true,
  2919. "ruleArticles": "tag.article",
  2920. "ruleContent": "",
  2921. "ruleDescription": "",
  2922. "ruleImage": "img@src",
  2923. "ruleLink": "tag.a.0@href",
  2924. "ruleNextPage": "##class=\"page-numbers current\"><span class=\"elementor-screen-only\">Page</span>\\d+</span> <a class=\"page-numbers\" href=\"([^\"]+)\"##$1###",
  2925. "rulePubDate": "class.elementor-post__meta-data@text",
  2926. "ruleTitle": "h3@a@text",
  2927. "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/&&",
  2928. "sourceIcon": "http://image.uc.cn/o/wemedia/s/upload/2017/e676a494f2c8b1412867d364976e158ex200x200x2.png;,80,webp;12;3,x140,;6,C-C,168x168,1,",
  2929. "sourceName": "译学馆",
  2930. "sourceUrl": "https://www.yxgapp.com/category/video/bigthink/"
  2931. },
  2932. {
  2933. "articleStyle": 0,
  2934. "customOrder": 16,
  2935. "enableJs": false,
  2936. "enabled": true,
  2937. "loadWithBaseUrl": true,
  2938. "ruleArticles": "$.data.data[*]",
  2939. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2940. "ruleDescription": "",
  2941. "ruleImage": "$.thumbnail",
  2942. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2943. "rulePubDate": "$.createTimeString",
  2944. "ruleTitle": "$.title",
  2945. "sourceGroup": "",
  2946. "sourceIcon": "http://47.105.79.245/penti.png",
  2947. "sourceName": "喷嚏图卦",
  2948. "sourceUrl": "http://47.105.79.245/v3/article?feedId=66&articleId=0&pageSize=20&isLookDown=true"
  2949. },
  2950. {
  2951. "articleStyle": 0,
  2952. "customOrder": 16,
  2953. "enableJs": false,
  2954. "enabled": true,
  2955. "loadWithBaseUrl": false,
  2956. "ruleArticles": "id.cardslist@children",
  2957. "ruleContent": "class.article-content@tag.tr.0@html@js:result.replace(/.*gif.*/g,'').replace(/data-original.*/g,'')",
  2958. "ruleDescription": "",
  2959. "ruleImage": "img@data-original",
  2960. "ruleLink": "h3@a@href",
  2961. "ruleNextPage": "text.下一页@href",
  2962. "ruleTitle": "h3@a@text##- 18疯情",
  2963. "sourceGroup": "天域战歌",
  2964. "sourceIcon": "https://www.18novel.xyz/wp-content/uploads/2020/06/2020062500051511.png",
  2965. "sourceName": "网络美女",
  2966. "sourceUrl": "https://www.18novel.xyz/category/online-beauty/"
  2967. },
  2968. {
  2969. "articleStyle": 2,
  2970. "customOrder": 16,
  2971. "enableJs": false,
  2972. "enabled": true,
  2973. "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}",
  2974. "loadWithBaseUrl": false,
  2975. "ruleArticles": "class.row mt-2@class.item col-xs-6 col-sm-4 col-md-3",
  2976. "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",
  2977. "ruleImage": "class.item-img@src",
  2978. "ruleLink": "class.item-link.0@href",
  2979. "ruleNextPage": "class.page-link.-1@tag.a@href",
  2980. "rulePubDate": "class.item-num.0@text",
  2981. "ruleTitle": "class.item-link-text.0@text",
  2982. "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",
  2983. "sourceIcon": "https://s1.ax1x.com/2020/09/17/wWjFvn.png",
  2984. "sourceName": "美女写真",
  2985. "sourceUrl": "平台_改进"
  2986. },
  2987. {
  2988. "articleStyle": 0,
  2989. "customOrder": 17,
  2990. "enableJs": false,
  2991. "enabled": true,
  2992. "loadWithBaseUrl": true,
  2993. "ruleArticles": "$.data.data[*]",
  2994. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  2995. "ruleDescription": "",
  2996. "ruleImage": "$.thumbnail",
  2997. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  2998. "rulePubDate": "$.createTimeString",
  2999. "ruleTitle": "$.title",
  3000. "sourceGroup": "",
  3001. "sourceIcon": "http://47.105.79.245/guancha.jpg",
  3002. "sourceName": "观察者 要闻",
  3003. "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}"
  3004. },
  3005. {
  3006. "articleStyle": 2,
  3007. "customOrder": 17,
  3008. "enableJs": false,
  3009. "enabled": true,
  3010. "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}",
  3011. "loadWithBaseUrl": false,
  3012. "ruleArticles": "class.row mt-2@class.item col-xs-6 col-sm-4 col-md-3",
  3013. "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",
  3014. "ruleImage": "class.item-img@src",
  3015. "ruleLink": "class.item-link.0@href",
  3016. "ruleNextPage": "class.page-link.-1@tag.a@href",
  3017. "rulePubDate": "class.item-num.0@text",
  3018. "ruleTitle": "class.item-link-text.0@text",
  3019. "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",
  3020. "sourceIcon": "https://s1.ax1x.com/2020/09/17/wWjFvn.png",
  3021. "sourceName": "模特分类",
  3022. "sourceUrl": "模特_改进"
  3023. },
  3024. {
  3025. "articleStyle": 2,
  3026. "customOrder": 17,
  3027. "enableJs": true,
  3028. "enabled": true,
  3029. "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}",
  3030. "loadWithBaseUrl": true,
  3031. "ruleArticles": "class.row mt-2@class.item col-xs-6 col-sm-4 col-md-3",
  3032. "ruleImage": "class.item-img@src",
  3033. "ruleLink": "class.item-link.0@href",
  3034. "ruleNextPage": "class.page-link.-1@tag.a@href",
  3035. "rulePubDate": "class.item-num.0@text",
  3036. "ruleTitle": "class.item-link-text.0@text",
  3037. "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",
  3038. "sourceGroup": "🔞 福利",
  3039. "sourceIcon": "https://s1.ax1x.com/2020/09/17/wWjFvn.png",
  3040. "sourceName": "平台分类",
  3041. "sourceUrl": "喜欢的自己加"
  3042. },
  3043. {
  3044. "articleStyle": 0,
  3045. "customOrder": 18,
  3046. "enableJs": false,
  3047. "enabled": true,
  3048. "loadWithBaseUrl": true,
  3049. "ruleArticles": "$.data.data[*]",
  3050. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  3051. "ruleDescription": "",
  3052. "ruleImage": "$.thumbnail",
  3053. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  3054. "rulePubDate": "$.createTimeString",
  3055. "ruleTitle": "$.title",
  3056. "sourceGroup": "",
  3057. "sourceIcon": "http://47.105.79.245/meiriyiwen.png",
  3058. "sourceName": "每日一文",
  3059. "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}"
  3060. },
  3061. {
  3062. "articleStyle": 0,
  3063. "customOrder": 19,
  3064. "enableJs": false,
  3065. "enabled": true,
  3066. "loadWithBaseUrl": false,
  3067. "ruleArticles": "$.data.data[*]",
  3068. "ruleContent": "<h1>{$.data.title}</h1><p>时间:{$.data.createTimeString}({$.data.createTime})</p>{$.data.content}<a href=\"{$.data.url}\">原文链接</a>",
  3069. "ruleDescription": "",
  3070. "ruleImage": "$.thumbnail",
  3071. "ruleLink": "http://47.105.79.245/v2/text/{$.id}",
  3072. "rulePubDate": "$.createTimeString",
  3073. "ruleTitle": "$.title",
  3074. "sourceGroup": "",
  3075. "sourceIcon": "https://static.zhihu.com/heifetz/assets/apple-touch-icon-120.b3e6278d.png",
  3076. "sourceName": "知乎每日精选",
  3077. "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}"
  3078. },
  3079. {
  3080. "articleStyle": 0,
  3081. "customOrder": 19,
  3082. "enableJs": true,
  3083. "enabled": false,
  3084. "loadWithBaseUrl": true,
  3085. "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>",
  3086. "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>",
  3087. "ruleDescription": "",
  3088. "ruleImage": "c",
  3089. "ruleLink": "d",
  3090. "ruleNextPage": "",
  3091. "rulePubDate": "b",
  3092. "ruleTitle": "a",
  3093. "sourceGroup": "📖 推书",
  3094. "sourceIcon": "https://avatar.bbs.miui.com/data/avatar/047/62/40/97_avatar_small.jpg",
  3095. "sourceName": "多看阅读",
  3096. "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}"
  3097. },
  3098. {
  3099. "articleStyle": 2,
  3100. "customOrder": 20,
  3101. "enableJs": true,
  3102. "enabled": true,
  3103. "loadWithBaseUrl": true,
  3104. "ruleArticles": "class.thumb-overlay-albums&&class.well well-sm",
  3105. "ruleContent": "",
  3106. "ruleDescription": "",
  3107. "ruleImage": "tag.img@data-original&&tag.img@src",
  3108. "ruleLink": "tag.a.0@href@js:\"https://18comic.bet\"+result",
  3109. "ruleNextPage": "class.prevnext.0@href",
  3110. "rulePubDate": "class.video-views pull-left@text&&class.video-added@text",
  3111. "ruleTitle": "tag.img@title",
  3112. "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",
  3113. "sourceGroup": "",
  3114. "sourceIcon": "https://18comic.bet/media/logo/new_logo.png",
  3115. "sourceName": "禁漫天堂",
  3116. "sourceUrl": "https://18comic.bet/"
  3117. },
  3118. {
  3119. "articleStyle": 2,
  3120. "customOrder": 20,
  3121. "enableJs": true,
  3122. "enabled": true,
  3123. "loadWithBaseUrl": true,
  3124. "ruleArticles": "class.thumb-overlay-albums&&class.well well-sm",
  3125. "ruleContent": "",
  3126. "ruleDescription": "",
  3127. "ruleImage": "tag.img@data-original&&tag.img@src",
  3128. "ruleLink": "tag.a.0@href@js:\"https://18comic2.biz\"+result",
  3129. "ruleNextPage": "class.prevnext.0@href",
  3130. "rulePubDate": "class.video-views pull-left@text&&class.video-added@text",
  3131. "ruleTitle": "tag.img@title",
  3132. "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",
  3133. "sourceGroup": "",
  3134. "sourceIcon": "https://18comic2.biz/media/logo/new_logo.png",
  3135. "sourceName": "禁漫天堂",
  3136. "sourceUrl": "https://18comic3.biz/"
  3137. },
  3138. {
  3139. "articleStyle": 0,
  3140. "customOrder": 24,
  3141. "enableJs": true,
  3142. "enabled": true,
  3143. "loadWithBaseUrl": true,
  3144. "ruleArticles": "id.song-list-pre-cache@class.f-hide@tag.a||class.tit",
  3145. "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",
  3146. "ruleDescription": "",
  3147. "ruleImage": "@css:img@src@js:result.split(\"?\")[0]",
  3148. "ruleLink": "@href##/s.*=@js:\"https://api.imjad.cn/cloudmusic/?type=detail&id=\"+result",
  3149. "rulePubDate": "",
  3150. "ruleTitle": "@text",
  3151. "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",
  3152. "sourceGroup": "音频",
  3153. "sourceIcon": "https://s3.jpg.cm/2020/04/12/6Xjqw.png",
  3154. "sourceName": "网易云音乐",
  3155. "sourceUrl": "https://music.163.com/discover/toplist?"
  3156. },
  3157. {
  3158. "articleStyle": 0,
  3159. "customOrder": 28,
  3160. "enableJs": false,
  3161. "enabled": true,
  3162. "header": "{\n Cookie:\"uid=000000\"\n}",
  3163. "loadWithBaseUrl": false,
  3164. "ruleArticles": "$.data",
  3165. "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>",
  3166. "ruleImage": "$.headUrl",
  3167. "ruleLink": "http://api.moonreader.cn/mreader/discuss/queryBookListInfo.do?listId={{$.listId}}",
  3168. "rulePubDate": "updateTime",
  3169. "ruleTitle": "listName",
  3170. "sourceGroup": "订阅源集合",
  3171. "sourceIcon": "https://android-artworks.25pp.com/fs08/2019/11/15/7/106_4213117808d53ee3721efc0fdf294589_con.png",
  3172. "sourceName": "搜书大师书单",
  3173. "sourceUrl": "http://api.moonreader.cn/mreader/discuss/queryBookLists.do?skip=0&maxCount=20&sortType=1"
  3174. },
  3175. {
  3176. "articleStyle": 0,
  3177. "customOrder": 44,
  3178. "enableJs": true,
  3179. "enabled": true,
  3180. "header": "{\n\"Content-Type\": \"application/x-www-form-urlencoded;charset=utf-8\"}",
  3181. "loadWithBaseUrl": true,
  3182. "ruleArticles": "$.response.items[*]||$.response.posts[*]",
  3183. "ruleContent": "@css:.g-mnc,div[class~=cont],.main\n.box,.ct@html##(.*?class=\"nctitle\">|<!-- Pager -->)[\\s\\S]+|(?<=\\<p\\>)(\\s|&nbsp;)*",
  3184. "ruleDescription": "",
  3185. "ruleImage": "$.post\n@js:if(result.match(/firstImageUrl=\\[\"\",\"\"\\]/)){\nresult=result.match(/bigAvaImg=(.*?),/)[1];}else{\nresult=result.match(/firstImageUrl=\\[\"([^\"]+)\"/)[1]\n}",
  3186. "ruleLink": "$.post.blogPageUrl",
  3187. "ruleNextPage": "page",
  3188. "rulePubDate": "$.post.publishTime\n@js:java.timeFormat(result)",
  3189. "ruleTitle": "$.post.title||$.post.digest||$.post.blogInfo.blogId\n##^(?:<.*?>)*([^<]{0,20})##$1###",
  3190. "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\"}",
  3191. "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",
  3192. "sourceName": "Lofter",
  3193. "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\"}",
  3194. "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%}"
  3195. },
  3196. {
  3197. "articleStyle": 0,
  3198. "customOrder": 47,
  3199. "enableJs": true,
  3200. "enabled": true,
  3201. "loadWithBaseUrl": true,
  3202. "ruleArticles": "$.data.list",
  3203. "ruleContent": "",
  3204. "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>",
  3205. "ruleImage": "$.pic",
  3206. "ruleLink": "https://player.bilibili.com/player.html?aid={{$.aid}}",
  3207. "rulePubDate": "",
  3208. "ruleTitle": "$.title",
  3209. "sourceGroup": "🎞 视频",
  3210. "sourceIcon": "https://dgss3.bdstatic.com/-bA2ezTa2gU2pMbgoY3K/img/0/512_512/ce8d065cbedf24ecf82449b4033450f2.png",
  3211. "sourceName": "哔哩哔哩",
  3212. "sourceUrl": "https://api.bilibili.com/x/web-interface/ranking"
  3213. },
  3214. {
  3215. "articleStyle": 0,
  3216. "customOrder": 60,
  3217. "enableJs": false,
  3218. "enabled": true,
  3219. "loadWithBaseUrl": false,
  3220. "ruleArticles": "$.data",
  3221. "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>",
  3222. "ruleImage": "$..coverImg",
  3223. "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",
  3224. "rulePubDate": "summary",
  3225. "ruleTitle": "【{{$.groupName}}】{{$.title}}",
  3226. "sourceGroup": "订阅源集合",
  3227. "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",
  3228. "sourceName": "17k找书圈",
  3229. "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"
  3230. },
  3231. {
  3232. "articleStyle": 0,
  3233. "customOrder": 69,
  3234. "enableJs": false,
  3235. "enabled": true,
  3236. "loadWithBaseUrl": false,
  3237. "ruleArticles": "$.pins",
  3238. "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>",
  3239. "ruleDescription": "",
  3240. "ruleImage": "https://hbimg.huabanimg.com//{$.file.key}",
  3241. "ruleLink": "https://api.huaban.com/pins/{$.pin_id}",
  3242. "rulePubDate": "$.created_at@js:(new Date(result*1000)).toLocaleDateString();",
  3243. "ruleTitle": "$.board.title",
  3244. "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",
  3245. "sourceGroup": "🗾 美图",
  3246. "sourceIcon": "https://hbimg.huabanimg.com//6b7b7456a3cb7b1b149be2463dca29c18e8c03c2bd0c-DcxKZ5_/sq/150/gifto/true/format/webp",
  3247. "sourceName": "花瓣\n合集",
  3248. "sourceUrl": "https://api.huaban.com"
  3249. },
  3250. {
  3251. "articleStyle": 0,
  3252. "customOrder": 74,
  3253. "enableJs": true,
  3254. "enabled": true,
  3255. "loadWithBaseUrl": true,
  3256. "ruleArticles": "$.[*]",
  3257. "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>",
  3258. "ruleDescription": "",
  3259. "ruleImage": "small_image",
  3260. "ruleLink": "https://m.guokr.com/article/{$.id}/",
  3261. "rulePubDate": "date_created",
  3262. "ruleTitle": "title",
  3263. "sourceGroup": "💨 图文",
  3264. "sourceIcon": "https://tvax1.sinaimg.cn/crop.0.0.300.300.180/6e53d84fly8fkf9vrhbqbj208c08c74d.jpg?KID=imgbed,tva&Expires=1584744731&ssig=y1uBtsuvVV",
  3265. "sourceName": "果壳",
  3266. "sourceUrl": "https://m.guokr.com/beta/proxy/science_api/articles?retrieve_type=by_category&page=1"
  3267. },
  3268. {
  3269. "articleStyle": 0,
  3270. "customOrder": 111,
  3271. "enableJs": true,
  3272. "enabled": false,
  3273. "header": "",
  3274. "loadWithBaseUrl": false,
  3275. "ruleArticles": "$.data[*].documents[*]",
  3276. "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>",
  3277. "ruleDescription": "",
  3278. "ruleImage": "$.images",
  3279. "ruleLink": "$.url",
  3280. "rulePubDate": "$.date",
  3281. "ruleTitle": "$.title",
  3282. "sourceGroup": "📰 资讯",
  3283. "sourceIcon": "http://t1.market.xiaomi.com/thumbnail/webp/l144q80/AppStore/0ab964f09cbb019970ac2990ef8f619fa9c40dbc2",
  3284. "sourceName": "MIUI浏览器",
  3285. "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"
  3286. },
  3287. {
  3288. "articleStyle": 0,
  3289. "customOrder": 144,
  3290. "enableJs": true,
  3291. "enabled": true,
  3292. "loadWithBaseUrl": true,
  3293. "ruleArticles": "html",
  3294. "ruleContent": "",
  3295. "ruleImage": "@js:'http://img.alicdn.com/imgextra/i1/0/O1CN01eobjjy1K4sdBtNtzu_!!0-rate.jpg'",
  3296. "ruleLink": "@js:result=baseUrl",
  3297. "rulePubDate": "",
  3298. "ruleTitle": "title@text",
  3299. "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/",
  3300. "sourceGroup": "自己在分类添加你喜欢的链接即可\n格式 网站名字::网站连接",
  3301. "sourceIcon": "",
  3302. "sourceName": "阅读浏览器~让阅读拥有内部浏览器",
  3303. "sourceUrl": "http://xianyui.icu/index.html",
  3304. "style": ""
  3305. }
  3306. ]