1 Star 0 Fork 122

Azleal/idea小说阅读 idea摸鱼插件 chapter_reader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
chapter_config-v1.json 73.42 KB
一键复制 编辑 原始数据 按行查看 历史
Azleal 提交于 2022-12-28 07:15 . 余华《活着》
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
{
"www.bqg78.com": {
"chapterPath": "/html/body/div[6]",
"checkUrl": "https://www.bqg78.com/book/93799/",
"contentPath": "/html/body/div[5]/div[3]/div[3]"
},
"www.tldyyy.com": {
"chapterPath": "/html/body/div[2]/div[2]/dl",
"checkUrl": "https://www.tldyyy.com/html/149149/7/",
"contentPath": "/html/body/div[2]/div/div[3]"
},
"www.tyxsw.org": {
"chapterPath": "/html/body/div[3]/div[2]/dl",
"checkUrl": "https://www.tyxsw.org/read/87516/",
"contentPath": "/html/body/div[3]/div[2]"
},
"www.tldyyy.com": {
"chapterPath": "/html/body/div[2]/div[3]/dl",
"checkUrl": "https://www.tldyyy.com/html/149149/",
"contentPath": "/html/body/div[2]/div/div[3]"
},
"www.jiguangwx.com": {
"chapterPath": "/html/body/div/div[2]/div[3]/div/div",
"checkUrl": "http://www.jiguangwx.com/book/catalog?book_id=10686",
"contentPath": "/html/body/div/div[2]/div[4]/div[1]/div[3]"
},
"top.la": {
"chapterPath": "/html/body/div[9]",
"checkUrl": "https://top.la/91_91963/",
"contentPath": "/html/body/div[7]"
},
"mip.shengxuxu.com": {
"chapterPath": "/html/body/div/div[3]/div[3]",
"checkUrl": "http://mip.shengxuxu.com/dir/67742/",
"contentPath": "/html/body/div/div[3]/div[4]/div[1]"
},
"www.00shu.com": {
"chapterPath": "https://www.00shu.com/book/28635/",
"checkUrl": "https://www.00shu.com/book/28635/",
"contentPath": "https://www.00shu.com/28/28635/13978390.html"
},
"www.daomutxt.com": {
"chapterPath": "/html/body/div[3]/div[2]",
"checkUrl": "https://www.daomutxt.com/txt/55664/",
"contentPath": "/html/body/div[3]/div/div[2]/div[2]"
},
"www.lewenn.cc": {
"chapterPath": "/html/body/div[6]",
"checkUrl": "https://www.lewenn.cc/lw85022548/",
"contentPath": "/html/body/div[5]"
},
"www.biqubu.com": {
"chapterPath": "/html/body/div[1]/div[6]/div/dl",
"checkUrl": "https://www.biqubu.com/book_127978/",
"contentPath": "/html/body/div[1]/div[5]/div/div[3]"
},
"www.sangwu8.com": {
"chapterPath": "/html/body/div[6]/dl",
"checkUrl": "http://www.sangwu8.com/book/0/40/",
"contentPath": "/html/body/div[4]/div[3]"
},
"www.xqb5200.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.xqb5200.com/53_53991/",
"contentPath": "/html/body/div[1]/div[2]/div/div[4]"
},
"www.213x.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/ul[2]",
"checkUrl": "https://www.213x.com/html/32/32612/",
"contentPath": "/html/body/div[3]/div[1]/div/div"
},
"www.bqg99.com": {
"chapterPath": "/html/body/div[6]",
"checkUrl": "https://www.bqg99.com/book/43493/",
"contentPath": "/html/body/div[4]/div[3]/div[3]"
},
"www.bequge.cc": {
"chapterPath": "/html/body/div[2]/div[3]/dl",
"checkUrl": "https://www.bequge.cc/book/36992/",
"contentPath": "/html/body/div[2]/div[1]/div[2]"
},
"www.23us.la": {
"chapterPath": "/html/body/div[3]/div[2]",
"checkUrl": "http://www.23us.la/html/698/698805/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[3]"
},
"www.bkxs.net": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]",
"checkUrl": "https://www.bkxs.net/bkxs/144658/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[3]"
},
"www.xbiqugee.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[1]",
"checkUrl": "https://www.xbiqugee.com/book/5817/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]"
},
"www.lwxstxt.org": {
"chapterPath": "/html/body/div[2]/div[3]/div/div/div[2]",
"checkUrl": "https://www.lwxstxt.org/80/80190/",
"contentPath": "/html/body/div[2]/div[1]/div/div[2]/div[3]"
},
"www.biqukan8.cc": {
"chapterPath": "/html/body/div[4]",
"checkUrl": "https://www.biqukan8.cc/24_24750/",
"contentPath": "/html/body/div[4]/div"
},
"www.cits0871.com": {
"chapterPath": "/html/body/div/div[7]/div",
"checkUrl": "http://www.cits0871.com/booktxt/1970/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.axx61.com": {
"chapterPath": "/html/body/div/section[2]/ol",
"checkUrl": "https://www.axx61.com/indexlist/99931/",
"contentPath": "/html/body/div/section[3]/div[2]"
},
"m.qqxs.la": {
"chapterPath": "https://m.qqxs.la/book_83983/25774543.html",
"checkUrl": "https://m.qqxs.la/book_83983/25774543.html",
"contentPath": "https://m.qqxs.la/book_83983/25774543.html"
},
"www.aidusk.com": {
"chapterPath": "/html/body/div[3]/div[4]/div[10]",
"checkUrl": "http://www.aidusk.com/t/14624/",
"contentPath": "/html/body/div[3]/div[4]/div[7]"
},
"www.vipkanshu.la": {
"chapterPath": "/html/body/div[3]/div[2]",
"checkUrl": "https://www.vipkanshu.la/shu/39165/",
"contentPath": "/html/body/div[3]/div/div[2]/div[3]"
},
"www.dzs5.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div",
"checkUrl": "https://www.dzs5.com/7/7147/",
"contentPath": "/html/body/div[1]/div[4]/div/div/div[3]"
},
"www.sanyu99.com": {
"chapterPath": "/html/body/div[1]/div[5]/dl[2]",
"checkUrl": "http://www.sanyu99.com/book/168769/",
"contentPath": "/html/body/div[2]/div[3]/div"
},
"www.guishuji.cc": {
"chapterPath": "/html/body/section/div/div",
"checkUrl": "https://www.guishuji.cc/dushi/8711/",
"contentPath": "/html/body/section/div[1]/div/article"
},
"www.99wx.cc": {
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]/div[2]/ul",
"checkUrl": "https://www.99wx.cc/poyun2tunhai/",
"contentPath": "/html/body/div/div/div[3]"
},
"www.hsrnsw.com": {
"chapterPath": "/html/body/div/div[6]/div/dl[2]",
"checkUrl": "https://www.hsrnsw.com/xshs/50962/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.bixia66.net": {
"chapterPath": "/html/body/div[2]/div[2]/div/div/div[4]",
"checkUrl": "http://www.bixia66.net/xs/98/98817/",
"contentPath": "/html/body/div[2]/div[1]/div/div[2]/div[4]"
},
"www.ytzww.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul/ul",
"checkUrl": "https://www.ytzww.com/book/html/3371.html",
"contentPath": "/html/body/div[3]/div/div/div[2]/div[2]"
},
"www.xbiqugee.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "https://www.xbiqugee.com/index/39934/",
"contentPath": "/html/body/div[4]/div/div/div[2]"
},
"www.bqg70.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.bqg70.com/book/673/",
"contentPath": "/html/body/div[4]/div[3]/div[3]"
},
"www.bqwo.cc": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.bqwo.cc/bqw202171/",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.ddbqgtxt.com": {
"chapterPath": ".listmain",
"checkUrl": "https://www.ddbqgtxt.com/book/89943169.html",
"contentPath": ".showtxt"
},
"www.daomushu.com": {
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]/div[2]",
"checkUrl": "http://www.daomushu.com/midaozhuizong/",
"contentPath": "/html/body/div/div/div[4]"
},
"www.wmdown8.com": {
"chapterPath": "/html/body/div[4]/dl",
"checkUrl": "https://www.wmdown8.com/novel/gk2Rle0Rp3o.html",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.lawenshuwu.com": {
"chapterPath": "/html/body/div[2]/div[4]/div/div/div[2]/ul",
"checkUrl": "https://www.lawenshuwu.com/60/60355/",
"contentPath": "/html/body/div[2]/div[3]/div/div[2]/div[3]"
},
"wap.xbiquge.la": {
"chapterPath": "/html/body/div[2]/ul[1]",
"checkUrl": "https://wap.xbiquge.la/wapbook/103144.html",
"contentPath": "/html/body/div[2]/div[3]/div",
"nextUrlPath": "/html/body/div[2]/div[2]/table/tbody/tr/td[3]"
},
"www.9biqu.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div",
"checkUrl": "https://www.9biqu.com/biquge/6027/",
"contentPath": "/html/body/div[1]/div[4]/div/div/div[3]"
},
"www.xbiquge.so": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.xbiquge.so/book/9331/",
"contentPath": "/html/body/div[1]/div[2]/div/div[4]"
},
"www.xrsilu.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.xrsilu.com/23569/",
"contentPath": "/html/body/div[3]/div"
},
"www.xsyq.cc": {
"chapterPath": "/html/body/div[5]/dl",
"checkUrl": "https://www.xsyq.cc/html/51619/51619443/index.html",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.93xscc.com": {
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]/div[2]/ul",
"checkUrl": "https://www.93xscc.com/weizhuangxuezha/",
"contentPath": "/html/body/div/div/div[3]"
},
"www.xbooktxt.net": {
"chapterPath": "/html/body/div[1]/div[5]/div/dl",
"checkUrl": "https://www.xbooktxt.net/21_21486/",
"contentPath": "/html/body/div[1]/div[3]/div/div[4]"
},
"www.yuanzun888.com": {
"chapterPath": "/html/body/div[4]/dl",
"checkUrl": "https://www.yuanzun888.com/book/15729/",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.biquwz.com": {
"chapterPath": "/html/body/div[1]/div[5]/div/dl",
"checkUrl": "https://www.biquwz.com/52_52593/",
"contentPath": "/html/body/div[1]/div[4]/div/div[4]"
},
"www.biqujiao.com": {
"chapterPath": "/html/body/div[4]/dl",
"checkUrl": "http://www.biqujiao.com/c542335/1.html",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.xswang.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div/dl",
"checkUrl": "https://www.xswang.com/book/45675/",
"contentPath": "/html/body/div[1]/div[4]/div/div/div[3]"
},
"www.noxstxt.com": {
"chapterPath": "/html/body/div[2]/div/div[3]/div[1]",
"checkUrl": "https://www.noxstxt.com/10202_10202111/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.piaotian.org": {
"chapterPath": "/html/body/div[4]/dl",
"checkUrl": "https://m.piaotian.org/book_35467/",
"contentPath": "/html/body/div[3]/div[2]/div[1]"
},
"www.biqugeabc.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]",
"checkUrl": "https://www.biqugeabc.com/book/628896.html",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[3]/div[2]"
},
"www.zbzw.la": {
"chapterPath": "/html/body/div[6]/dl",
"checkUrl": "https://www.zbzw.la/book/78852/",
"contentPath": "/html/body/div[5]/div[2]/div[2]"
},
"www.ywggzy.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "http://www.ywggzy.com/bxwx/9601/",
"contentPath": "/html/body/div[4]/div/div/div[3]/div[3]",
"nextUrlPath": "/html/body/div[4]/div/div/div[3]"
},
"www.yuanzun5200.com": {
"chapterPath": "/html/body/div[1]/div/dl",
"checkUrl": "http://www.yuanzun5200.com/?ivk_sa=1024320u",
"contentPath": "/html/body/div[2]/div[3]/div/div[3]"
},
"www.biquff.com": {
"chapterPath": "/html/body/div/div[5]/div/dl",
"checkUrl": "https://www.biquff.com/43_43974/",
"contentPath": "/html/body/div/div[4]/div/div[4]"
},
"www.dingdianxsw.com": {
"chapterPath": "/html/body/div[1]/div[5]/div/div/div/div[2]/div[3]",
"checkUrl": "https://www.dingdianxsw.com/6/6882/",
"contentPath": "/html/body/div[1]/div[2]/div[2]"
},
"www.biqugesk.org": {
"chapterPath": "/html/body/div/div[7]/div/dl",
"checkUrl": "https://www.biqugesk.org/biquge/99932/?aavuny=kryj82",
"contentPath": "/html/body/div/div[5]/div[2]/font[2]/div"
},
"www.xuanshu.com": {
"chapterPath": "/html/body/div/div[4]/div[1]/ul",
"checkUrl": "https://www.xuanshu.com/book/17609/",
"contentPath": "/html/body/div/div[3]/div[1]/div[2]"
},
"www.yetianlian.com": {
"chapterPath": "/html/body/div[0]/dl",
"checkUrl": "http://www.yetianlian.com/yt20281/",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.shuhaiwu.com": {
"chapterPath": "/html/body/div[0]/div[5]/div",
"checkUrl": "http://www.shuhaiwu.com/74_74649/",
"contentPath": "/html/body/div[0]/div[3]/div[1]/div[1]"
},
"www.bige7.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.bige7.com/book/623/",
"contentPath": "/html/body/div[4]/div[3]/div[3]"
},
"www.xs123.co": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.xs123.co/xs/87/87615/",
"contentPath": "/html/body/div/div[5]"
},
"www.biqudu.net": {
"chapterPath": "/html/body/div/div[5]/div/dl",
"checkUrl": "https://www.biqudu.net/40_40517/",
"contentPath": "/html/body/div/div[4]/div/div[4]"
},
"www.x23us.us": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.x23us.us/7_7289/",
"contentPath": "/html/body/div/div[2]/div/div[5]"
},
"www.cdxs.cc": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.cdxs.cc/25/94212/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.shuquge.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.shuquge.com/txt/14639/index.html",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.zym888.com": {
"chapterPath": "/html/body/div[2]/div[2]/dl/dd[3]/table",
"checkUrl": "http://www.zym888.com/xiaoshuo/0/393/",
"contentPath": "/html/body/div[3]/div[2]/dl/div[3]"
},
"www.asxs.com": {
"chapterPath": "/html/body/div[2]/div[2]/dl/dd[3]",
"checkUrl": "https://www.asxs.com/view/95497/",
"contentPath": "/html/body/div[3]/div[2]/dl/dd[5]"
},
"hananke.com": {
"chapterPath": "/html/body/div[2]/section/div[3]/div",
"checkUrl": "https://hananke.com/book/15438/",
"contentPath": "/html/body/div[2]/main/section",
"nextUrlPath": "/html/body/div[2]/main/div/a[3]"
},
"m.tushumi.com": {
"chapterPath": "/html/body/div[2]/ul[2]",
"checkUrl": "http://m.tushumi.com/shu/140100/",
"contentPath": "/html/body/div[5]"
},
"www.biquhh.com": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.biquhh.com/book/1889/",
"contentPath": "/html/body/div/div[4]/div/div[4]"
},
"book.qidian.com": {
"chapterPath": "/html/body/div/div[6]/div[3]/div[2]/div[2]/ul",
"checkUrl": "https://book.qidian.com/info/1032555938/#Catalog",
"contentPath": "/html/body/div[2]/div[3]/div[2]/div[1]/div/div/div[2]"
},
"www.xbiqugela.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div/dl",
"checkUrl": "https://www.xbiqugela.com/book_44069/",
"contentPath": "/html/body/div[1]/div[4]/div[1]/div/div[5]"
},
"m.kubij.cc": {
"chapterPath": "/html/body/div[2]/ul[2]",
"checkUrl": "https://m.kubij.cc/331926/",
"contentPath": "/html/body/div[5]"
},
"www.dafengdagengren.com": {
"checkUrl": "https://www.dafengdagengren.com/11_11454/",
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"titlePath": "/html/body/div[5]/div/div/div[2]/h1",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[3]"
},
"www.xbiquge.so": {
"checkUrl": "https://www.xbiquge.so/book/55075/",
"chapterPath": "/html/body/div[3]/div",
"titlePath": "/html/body/div[2]/div[2]/div[2]/h1",
"contentPath": "/html/body/div[1]/div[2]/div/div[4]"
},
"www.biqupai.com": {
"checkUrl": "https://www.biqupai.com/96_96441/",
"chapterPath": "/html/body/div/div[4]/div",
"titlePath": "/html/body/div/div[3]/div/div[2]/h1",
"contentPath": "/html/body/div/div[3]/div/div[4]"
},
"www.kubiji.org": {
"checkUrl": "https://www.kubiji.org/146686/",
"chapterPath": "/html/body/div[2]/div[4]/div[6]",
"titlePath": "/html/body/div[3]/div[2]",
"contentPath": "/html/body/div[3]/div[6]"
},
"www.silukew.com": {
"chapterPath": "/html/body/div/div[6]/div/dl",
"checkUrl": "https://www.silukew.com/ny66716/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.23xstxt.com": {
"checkUrl": "https://www.23xstxt.com/book/93406/93406777/",
"chapterPath": "/html/body/div[5]",
"titlePath": "/html/body/div[4]/div[2]/h1",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.qiushuge.net": {
"checkUrl": "http://www.qiushuge.net/conghongyuekaishi/",
"chapterPath": "/html/body/div[4]",
"titlePath": "/html/body/div[3]/div[2]/h1",
"contentPath": "/html/body/div[3]/div[2]/div[3]"
},
"www.lstxt.cc": {
"checkUrl": "https://www.lstxt.cc/ebook/6267.html",
"chapterPath": "/html/body/div[4]",
"titlePath": "/html/body/div[3]/div[2]/h1",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.shukeba.com": {
"checkUrl": "https://www.shukeba.com/115786/",
"chapterPath": "/html/body/div[4]/dl[2]",
"titlePath": "/html/body/div[2]/h1",
"contentPath": "/html/body/div[3]/div[1]/div[1]"
},
"www.qu-la.com": {
"checkUrl": "http://www.qu-la.com/booktxt/58791935116/",
"chapterPath": "/html/body/div/div[2]/div/div[3]/ul[2]",
"titlePath": "/html/body/div/div[1]/div[2]/div[1]/h1",
"contentPath": "/html/body/div/div[1]/div[2]/div[2]"
},
"www.doupo321.com": {
"checkUrl": "http://www.doupo321.com/doupocangqiongxujitiancantudou/",
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]/div[2]",
"titlePath": "/html/body/div/div/div[2]/h1",
"contentPath": "/html/body/div/div/div[4]"
},
"www.vipxs.la": {
"checkUrl": "https://www.vipxs.la/53_53969/",
"chapterPath": "/html/body/div/div[7]/div/dl",
"titlePath": "/html/body/div/div[5]/div[1]/div[2]/h1",
"contentPath": "/html/body/div/div[5]/div[1]/div[2]/div[3]"
},
"www.ranwen.la": {
"checkUrl": "https://www.ranwen.la/files/article/110/110322/",
"chapterPath": "/html/body/div/div[6]",
"titlePath": "/html/body/div/div[4]/div/div[2]/h1",
"contentPath": "/html/body/div/div[4]/div/div[5]"
},
"www.yxlmdl.net": {
"checkUrl": "https://www.yxlmdl.net/book/83360558/",
"chapterPath": "/html/body/div/div[2]/div/div[3]/ul[2]",
"titlePath": "/html/body/div/div[1]/div[2]/div[1]",
"contentPath": "/html/body/div/div[1]/div[2]/div[2]"
},
"www.biduoxs.com": {
"checkUrl": "https://www.biduoxs.com/biquge/58_58688/",
"chapterPath": "/html/body/div[1]/div[6]/div/dl/dd",
"titlePath": "/html/body/div[1]/div[4]/div/div[2]/h1",
"contentPath": "/html/body/div[1]/div[4]/div/div[4]"
},
"www.cv148.com": {
"checkUrl": "https://www.cv148.com/67_67421/",
"chapterPath": "/html/body/div/div[6]/div/dl",
"titlePath": "/html/body/div[1]/div[5]/div/div[2]/h1",
"contentPath": "/html/body/div[1]/div[5]/div/div[3]"
},
"m.lewen01.com": {
"checkUrl": "https://m.lewen01.com//67_67421/",
"chapterPath": "/html/body/div/div[6]/div/dl",
"titlePath": "/html/body/div[1]/div[5]/div/div[2]/h1",
"contentPath": "/html/body/div[1]/div[5]/div/div[3]"
},
"www.xs123.net": {
"checkUrl": "https://www.xs123.org/xs/17/17205/",
"chapterPath": "/html/body/div/div[6]/div",
"titlePath": "/html/body/div/div[5]/div/div[2]/h1",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.xs123.org": {
"checkUrl": "https://www.xs123.org/xs/20/20414/",
"chapterPath": "/html/body/div/div[6]/div",
"titlePath": "/html/body/div/div[3]/div/div[2]/h1",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.bqxs520.com": {
"chapterPath": "/html/body/div/div[6]/div/dl",
"checkUrl": "http://www.bqxs520.com/103172/",
"contentPath": "/html/body/div[1]/div[4]/div"
},
"www.ibiqu.org": {
"checkUrl": "http://www.ibiqu.org/book/8187/",
"chapterPath": "/html/body/div/div[5]/div",
"titlePath": "/html/body/div/div[3]/div/div[2]/h1",
"contentPath": "/html/body/div/div[3]/div/div[4]"
},
"www.ibiqu.org2": {
"checkUrl": "http://www.ibiqu.org/book/7/",
"chapterPath": "/html/body/div/div[5]/div",
"titlePath": "/html/body/div/div[3]/div/div[2]/h1",
"contentPath": "/html/body/div/div[3]/div/div[4]"
},
"www.dddbiquge.cc": {
"chapterPath": "/html/body/div[4]/dl/dd[144]/a",
"checkUrl": "https://www.dddbiquge.cc/book/18874/",
"contentPath": "/html/body/div[3]/div[2]/div[3]"
},
"www.qb5.la": {
"chapterPath": "/html/body/div[4]",
"checkUrl": "https://www.qb5.la/book_15399/",
"contentPath": "/html/body/div[3]/div[2]/div[1]"
},
"w.linovelib.com": {
"chapterPath": "/html/body/div[1]/div/div[2]/div[2]/div[1]/ol",
"checkUrl": "https://w.linovelib.com/novel/2547/catalog",
"titlePath": "/html/body/div[1]/div[2]/div/div[1]",
"contentPath": "/html/body/div[1]/div[2]/div/div[2]"
},
"www.xswang.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div",
"checkUrl": "https://www.xswang.com/book/60835/",
"contentPath": "/html/body/div[1]/div[4]/div/div/div[3]"
},
"www.ywggzy.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "http://www.ywggzy.com/bxwx/29320/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[3]",
"nextUrlPath": "/html/body/div[4]/div/div/div[3]/div[5]/a[3]"
},
"www.xbiquge.la": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.xbiquge.la/63/63514/",
"contentPath": "/html/body/div/div[3]/div/div[3]"
},
"www.haonongcunzj.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]",
"checkUrl": "http://www.haonongcunzj.com/book/14767/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]"
},
"www.xiaoshuoba.com": {
"chapterPath": "/html/body/div[3]/div[3]/ul/ul/li",
"checkUrl": "http://www.xiaoshuoba.com/html/1246/1246865/",
"contentPath": "/html/body/div[2]/div[3]div[2]"
},
"www.42biquge.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div/dl",
"checkUrl": "http://www.42biquge.com/book/33955/",
"contentPath": "/html/body/div[1]/div[4]/div/div/div[3]"
},
"www.miaojiang8.net": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.miaojiang8.net/4_4107/",
"contentPath": "/html/body/div/div[3]/div/div[3]"
},
"www.vipkanshu.vip": {
"chapterPath": "/html/body/div[3]/div[2]",
"checkUrl": "https://www.vipkanshu.vip/shu/26472/",
"contentPath": "/html/body/div[3]/div/div[2]/div[3]"
},
"www.xxbiqudu.com": {
"chapterPath": "/html/body/div/div[5]",
"checkUrl": "https://www.xxbiqudu.com/133_133821/",
"contentPath": "/html/body/div/div[4]/div[2]/div[2]"
},
"www.9biquge.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div/dl",
"checkUrl": "https://www.9biquge.com/29/29894/",
"contentPath": "/html/body/div[1]/div[4]/div[1]/div/div[5]"
},
"book.myk3.com": {
"chapterPath": "/html/body/div[1]/div[7]/div",
"checkUrl": "https://book.myk3.com/i43702.html",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.gdedu.tv": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.gdedu.tv/37933/",
"contentPath": "/html/body/section/div/article/div[2]"
},
"www.bbiquge.net": {
"chapterPath": "/html/body/div[4]/dl",
"checkUrl": "https://www.bbiquge.net/book_84680/",
"contentPath": "/html/body/div[3]/div[2]/div[1]"
},
"www.yinyangdailiren.org": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "http://www.yinyangdailiren.org/zuchangdaiwoquxiuxian/",
"contentPath": "/html/body/div[5]/div"
},
"www.wddsnxn.org": {
"chapterPath": "/html/body/div[7]",
"checkUrl": "https://www.wddsnxn.org/nvwuqingzhengyan/",
"contentPath": "/html/body/div[5]"
},
"www.79wx.com": {
"chapterPath": ".listmain",
"checkUrl": "https://www.79wx.com/html/0/734/",
"contentPath": "#content"
},
"www.qbiqu.com": {
"chapterPath": "/html/body/div/div[6]/div/dl",
"checkUrl": "https://www.qbiqu.com/91_91348/",
"contentPath": "/html/body/div[1]"
},
"www.blbq888.com": {
"chapterPath": "/html/body/div[2]/div[2]/div/div/div[5]/div[1]",
"checkUrl": "https://www.blbq888.com/80_80864/",
"contentPath": "/html/body"
},
"www.ddxs.cc": {
"chapterPath": "/html/body/div/div[6]/div/dl",
"checkUrl": "https://www.ddxs.cc/ddxs/167980/",
"contentPath": "/html/body/div/div[4]/div/div[3]/"
},
"www.bxuu.net": {
"chapterPath": "/html/body/div[4]/div/dl",
"checkUrl": "https://www.bxuu.net/1/1367/",
"contentPath": "/html/body/div[4]"
},
"www.bxwx.tv": {
"chapterPath": "/html/body/div[5]/dl",
"checkUrl": "https://www.bxwx.tv/book/96067143/",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.bxwx6.org": {
"chapterPath": "/html/body/section/div[1]/div[4]/div[2]",
"checkUrl": "https://www.bxwx6.org/bxwx441816.html",
"contentPath": "/html/body/section/div/article/div[2]"
},
"www.biqusa.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.biqusa.com/142_142302/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.zjzfcj.com": {
"chapterPath": "/html/body/div[2]",
"checkUrl": "https://www.zjzfcj.com/book/738/",
"contentPath": "/html/body/div[2]/h1"
},
"www.rsilu.com": {
"chapterPath": "/html/body/div[3]/div/div[2]/div[3]/div[3]",
"checkUrl": "https://www.rsilu.com/300077/",
"contentPath": "/html/body/div[1]/div[2]/div[2]"
},
"www.1biquge.net": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.1biquge.net/10/10852/",
"contentPath": "/html/body/div/div[4]/div/div[4]"
},
"www.2mcnn.com": {
"chapterPath": "/html/body/div[4]",
"checkUrl": "https://www.2mcnn.com/html/book/94396/94396150/",
"contentPath": "/html/body"
},
"ouoou.com": {
"chapterPath": "/html/body/div/div[4]/div[2]/div",
"checkUrl": "http://ouoou.com/ou_42482/",
"contentPath": "/html/body"
},
"www.ouoou.com": {
"chapterPath": "/html/body/div/div[4]/div[2]/div",
"checkUrl": "http://www.ouoou.com/ou_44222/",
"contentPath": "/html/body"
},
"ajnnan.com": {
"chapterPath": "/html/body/div[1]/div[6]/div[2]/div",
"checkUrl": "https://ajnnan.com/43_43233/",
"contentPath": "/html/body/div[1]/div[5]/div/div"
},
"www.bimilou.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]",
"checkUrl": "https://www.bimilou.com/book/85404.html",
"contentPath": "/html/body"
},
"www.kuangguwenhua.com": {
"chapterPath": "/html/body/section[1]/div[5]",
"checkUrl": "http://www.kuangguwenhua.com/book/5074/",
"contentPath": "/html/body/section[2]/div[2]"
},
"www.xbiquwx.la": {
"chapterPath": "/html/body/div/div[7]/div",
"checkUrl": "https://www.xbiquwx.la/77_77735/",
"contentPath": "/html/body/div/div[5]/div"
},
"www.wangshuge.com": {
"chapterPath": "/html/body/div[3]/div[2]/dl/dd[3]/table/tbody",
"checkUrl": "https://www.wangshuge.com/books/14/14530/",
"contentPath": "/html/body/div[4]/div[2]/dl/dd[3]"
},
"www.wangshuge.la": {
"chapterPath": "/html/body/div[3]/div[2]/dl/dd[3]/table/tbody",
"checkUrl": "https://www.wangshuge.la/books/44/44822/",
"contentPath": "/html/body/div[4]/div[2]/dl/dd[3]"
},
"m.qbiqu.com": {
"chapterPath": "/html/body/div[3]/ul/li",
"checkUrl": "https://m.qbiqu.com/0/292/",
"contentPath": "/html/body/div[2]/div[5]/div"
},
"www.bswtan.com": {
"chapterPath": "/html/body/div/div[5]/div/",
"checkUrl": "https://www.bswtan.com/3/3287/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.biqugse.com": {
"chapterPath": "/html/body/div/div[5]/div/",
"checkUrl": "https://www.biqugse.com/3/3287/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"ajnnan.com": {
"chapterPath": "/html/body/div[1]/div[6]/div[2]/div",
"checkUrl": "https://ajnnan.com/43_43233/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.haobiquge.com": {
"chapterPath": "/html/body/div[1]/div[6]/div",
"checkUrl": "https://www.haobiquge.com/read/104954/",
"contentPath": "/html/body/div[1]/div[6]/div"
},
"www.58160.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div/dl",
"checkUrl": "https://www.58160.com/book/5357.html",
"contentPath": "/html/body"
},
"www.99mk.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.99mk.com/tag/19_19747/",
"contentPath": "/html/body/div[4]/div[2]"
},
"www.513gp.org": {
"chapterPath": "/html/body/div[7]",
"checkUrl": "https://www.513gp.org/book/4979/",
"contentPath": "/html/body/div[5]"
},
"www.ranwen8.com": {
"chapterPath": "/html/body/div[4]/div",
"checkUrl": "https://www.ranwen8.com/book_118945/",
"contentPath": "/html/body/div[3]/div/div[2]/div/div[2]"
},
"www.szhswy.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "https://www.szhswy.com/37720.html",
"contentPath": "/html/body/div[3]/div[1]/div/div"
},
"www.lidapoly.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "http://www.lidapoly.com/ldks/4744/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]"
},
"www.znlzd.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "https://www.znlzd.com/bqg/121447/",
"contentPath": "/html/body/div[6]/div/div/div[2]"
},
"www.xuanshu.com": {
"chapterPath": "/html/body/div/div[4]/div[1]",
"checkUrl": "https://www.xuanshu.com/book/61191/",
"contentPath": "/html/body/div[1]/div[3]/div[1]"
},
"www.biqugesk.com": {
"chapterPath": "/html/body/div/div[4]/div[1]",
"checkUrl": "https://wap.biqugesk.org/wapbiquge/109497/",
"contentPath": "/html/body/div[1]/div[3]/div[1]"
},
"www.xbequge.com": {
"chapterPath": "/html/body/center/div[2]/center/div[1]/div[1]/ul",
"checkUrl": "https://www.xbequge.com/4_4476/",
"contentPath": "/html/body/div[4]/div/div[2]"
},
"www.ybiquge.com": {
"chapterPath": "/html/body/div/div[4]/div/dl",
"checkUrl": "http://www.ybiquge.com/84_84532/",
"contentPath": "/html/body/div/div[3]/div/div[4]"
},
"www.lvmaizi.com": {
"chapterPath": "/html/body/div[2]/div[2]/div/div[1]/div[2]/div/div[2]/div",
"checkUrl": "https://www.lvmaizi.com/book/ailisimengyouxianjing/",
"contentPath": "/html/body/div[2]/div[2]/div/div[1]/div[1]/div[3]"
},
"www.ywggzy.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "http://www.ywggzy.com/bxwx/25325/",
"contentPath": "/html/body/div[4]/div/div/div[3]"
},
"m.lstxt.cc": {
"chapterPath": "/html/body/div[2]/div[5]",
"checkUrl": "https://m.lstxt.cc/books/40/40179/index_asce_96.html?_v_bookinfo_=m.lstxt.cc%3A%5Cu592A%5Cu8352%5Cu541E%5Cu5929%5Cu8BC0%3A%5Cu94C1%5Cu9A6C%5Cu98DE%5Cu6865%5Cu5206%5Cu7C7B%5CuFF1A%5Cu7384%5Cu5E7B%5Cu5C0F%5Cu8BF4&_v_offset_=0&_v_size_=0&_v_total_=0&_v_sort_=1",
"contentPath": "/html/body"
},
"www.5izhenjiang.com": {
"chapterPath": "/html/body/div[4]/div[2]",
"checkUrl": "http://www.5izhenjiang.com/75_75554/",
"contentPath": "/html/body/div[2]/div/article"
},
"www.kankezw.com": {
"chapterPath": "/html/body/div/div[5]/div[1]",
"checkUrl": "https://www.kankezw.com/du/95/95695/",
"contentPath": "/html/body/div/div[3]/div[1]"
},
"www.xbiquwx.la": {
"chapterPath": "/html/body/div/div[7]/div",
"checkUrl": "https://www.xbiquwx.la/11_11763/",
"contentPath": "/html/body/div/div[5]/div"
},
"www.znlzd.com": {
"chapterPath": "/html/body/div[3]/div[2]/div",
"checkUrl": "https://www.znlzd.com/bqg/120655/",
"contentPath": "/html/body/div[6]/div/div/div[2]"
},
"www.ywggzy.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]",
"checkUrl": "http://www.ywggzy.com/bxwx/5107/",
"contentPath": "/html/body/div[4]/div/div/div[3]/div[3]"
},
"www.huangdizhijia.com": {
"chapterPath": "/html/body/div[3]/div[1]/div/div[2]/div[2]",
"checkUrl": "https://www.huangdizhijia.com/novel-2340.html",
"contentPath": "/html/body/div[3]/div[1]/div/div[2]/div[2]"
},
"www.xsggd.com": {
"chapterPath": "/html/body/div[2]/div[2]/div/div/div[2]/ul",
"checkUrl": "https://www.xsggd.com/novel/41894.html",
"contentPath": "/html/body/div[2]/div[1]/div/div/div[3]"
},
"www.maotxt.net": {
"chapterPath": "/html/body/div[2]/div[2]/div/div/div[2]/ul",
"checkUrl": "https://www.maotxt.net/indexlist/73228.html",
"contentPath": "/html/body/div[2]/div[1]/div/div/div[3]"
},
"www.86zw.co": {
"chapterPath": "/html/body/div/div[6]/div/dl",
"checkUrl": "http://www.86zw.co/xiaoshuo/98112/",
"contentPath": "/html/body/div[1]/div[4]/div"
},
"www.shouda88.com": {
"chapterPath": "html/body/div[4]/div[2]",
"checkUrl": "https://www.shouda88.com/5317/",
"contentPath": "/html/body/div[4]/div[2]"
},
"www.wzxmt.com": {
"chapterPath": "/html/body/div[2]/div[4]",
"checkUrl": "https://www.wzxmt.com/info/72410/",
"contentPath": "/html/body/div[2]/div[1]"
},
"www.biqugetv.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.biqugetv.com/96_96578/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.51shucheng.net": {
"chapterPath": "/html/body/div/div[3]/div[2]/div[6]",
"checkUrl": "https://www.51shucheng.net/kehuan/santi/santi1",
"contentPath": "/html/body/div[1]/div[4]/div[3]"
},
"m.trxs.cc": {
"chapterPath": "/html/body/div[3]/div[3]/ul",
"checkUrl": "https://m.trxs.cc/tongren/5375.html",
"contentPath": "/html/body/div[3]/div/div[2]/div[2]"
},
"www.uuzuowen.com": {
"chapterPath": "/html/body/div/div[4]/div[1]/div[2]",
"checkUrl": "https://www.uuzuowen.com/wuxia/jinyongxs/xiaoaojianghu/",
"contentPath": "/html/body/div/div[4]/div[1]/div[2]/div[2]"
},
"www.gdwxcn.com": {
"chapterPath": "/html/body/div[5]/div[2]",
"checkUrl": "https://www.gdwxcn.com/jinyong/xajh/",
"contentPath": "/html/body/div[5]/div/div[1]"
},
"www.zhhbqg.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.zhhbqg.com/11_11551/",
"contentPath": "/html/body/div[4]"
},
"www.81book.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.81book.com/book/71701/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.shidiao01.com": {
"chapterPath": "/html/body/article[2]/div[1]/dl[3]",
"checkUrl": "http://www.shidiao01.com/83/83569/",
"contentPath": "/html/body/article/div[5]"
},
"www.uuzuowen.com": {
"chapterPath": "/html/body/div/div[4]/div[1]/div[2]/div[3]",
"checkUrl": "https://www.uuzuowen.com/zgmingzhu/weicheng/",
"contentPath": "/html/body/div/div[4]/div[1]/div[2]/div[2]"
},
"m.ajnnan.com": {
"chapterPath": "/html/body/div[2]",
"checkUrl": "https://m.ajnnan.com/21_21226/all.html",
"contentPath": "/html/body/div[1]"
},
"www.x23us.us": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.x23us.us/57_57852/",
"contentPath": "/html/body/div/div[2]/div/div[5]"
},
"m.biqugg.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://m.biqugg.com/xs/793/all.html",
"contentPath": "/html/body/div/div[2]/div/div[5]"
},
"www.lqzw.org": {
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]",
"checkUrl": "https://www.lqzw.org/du/65750/",
"contentPath": "/html/body/div[1]/div/div[2]/div[2]"
},
"bige7.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://bige7.com/book/929/",
"contentPath": "/html/body/div[5]"
},
"www.biququ.com": {
"chapterPath": "/html/body/div/div[8]/div/dl",
"checkUrl": "https://www.biququ.com/html/89095/",
"contentPath": "/html/body/div/div[4]/div[2]"
},
"www.ixs.la": {
"chapterPath": "/html/body/div[1]/div[6]/div",
"checkUrl": "https://www.ixs.la/ks40627/",
"contentPath": "/html/body/div[4]/div/div[4]"
},
"www.sobiquge.com": {
"chapterPath": "/html/body/div[1]/div[6]/div/dl",
"checkUrl": "https://www.sobiquge.com/book/7879/",
"contentPath": "/html/body/div[1]/div[5]/div/div[3]"
},
"100470.jupindai.com": {
"chapterPath": "/html/body/div[2]/div[3]/dl",
"checkUrl": "https://100470.jupindai.com/",
"contentPath": "html/body/div[2]/div"
},
"www.biqupai.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.biqupai.com/3_3266/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"m.wawxc.com": {
"chapterPath": "/html/body/div[2]/div/ul/",
"checkUrl": "http://m.wawxc.com/html/20238/5/",
"contentPath": "/html/body/div/div[2]/div[3]"
},
"m.xiumb.com": {
"chapterPath": "/html/body/div",
"checkUrl": "https://m.xiumb.com/161/161081/all.html",
"contentPath": "/html/body/div/p[2]/a"
},
"www.qikuaiwx.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div/dl",
"checkUrl": "https://www.qikuaiwx.com/wenxue/84895.html",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[3]"
},
"www.qitxt.com": {
"chapterPath": "/html/body/div/div[2]/div[1]/div[3]/ul[2]",
"checkUrl": "https://www.qitxt.com/66/60466/",
"contentPath": "/html/body/div[1]/div/"
},
"www.zwwx.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.zwwx.com/book/7/7736/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"jhssd.com": {
"chapterPath": "/html/body/div[5]/div",
"checkUrl": "https://jhssd.com/16749/",
"contentPath": "/html/body/div[4]/div[1]/div[1]"
},
"xbiquge.so": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.xbiquge.so/book/6169/",
"contentPath": "/html/body/div[1]/div[2]/div/div[4]"
},
"www.yydushu.com": {
"chapterPath": "/html/body/div[2]/div[2]/ul",
"checkUrl": "https://www.yydushu.com/santi/",
"contentPath": "/html/body/div[1]/article/div[3]"
},
"www.xuesoo.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "http://www.xuesoo.com/bqg/32677/",
"contentPath": "/html/body/div[4]/div/div/div[3]/div[2]",
"nextUrlPath": "/html/body/div[4]/div/div/div[3]/div[1]/a[3]"
},
"m.97em.cn": {
"chapterPath": "/html/body/section[2]/div[2]/div[2]/ul",
"checkUrl": "https://m.97em.cn/book/293142/",
"contentPath": "/html/body/div[2]/div/div/div[3]"
},
"www.dghsym.com": {
"chapterPath": "/html/body/div[2]/section/div[4]/div/ul",
"checkUrl": "https://www.dghsym.com/b/xbooks/641986/",
"contentPath": "/html/body/div[2]/main/section/article"
},
"www.xbiquke.net": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div/dl",
"checkUrl": "https://www.xbiquke.net/20_20339/",
"contentPath": "/html/body/div[1]/div[4]/div[1]/div/div[5]"
},
"www.kpxx.net": {
"chapterPath": "/html/body/div[3]/div[2]",
"checkUrl": "http://www.kpxx.net/45_45377/",
"contentPath": "/html/body/div[1]/div/article"
},
"www.kanunu8.com": {
"chapterPath": "/html/body/div[1]/table[9]/tbody/tr/td[2]/table[4]/tbody/tr/td/table[2]",
"checkUrl": "https://www.kanunu8.com/files/world/201105/2817.html",
"contentPath": "/html/body/div[1]/table[5]/tbody/tr/td[2]/p"
},
"flbook.com.cn": {
"chapterPath": "/c/[1]#page/[2]",
"checkUrl": "https://flbook.com.cn/c/RjAdXClvFk#page/10",
"contentPath": "/c/[1]#page/[2]"
},
"www.piaotian.org1": {
"chapterPath": "/html/body/div[4]/dl",
"checkUrl": "https://m.piaotian.org/book_35467/",
"contentPath": "/html/body/div[3]/div[2]/div[1]"
},
"tmiep.org": {
"chapterPath": "/html/body/div/div[6]/div/dl[2]",
"checkUrl": "https://tmiep.org/xs/33/33112/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.xbooktxt.net": {
"chapterPath": "/html/body/div[1]/div[5]/div/dl",
"checkUrl": "https://www.xbooktxt.net/0_688",
"contentPath": "/html/body/div[1]/div[3]/div/div[4]"
},
"www.biqugewu.com": {
"chapterPath": "/html/body/div",
"checkUrl": "https://www.biqugewu.com/23_23967/",
"contentPath": "/html/body/div/div[7]/div/dl/dd[357]"
},
"m.lwxsww.com": {
"chapterPath": "/html/body/section[2]/ul",
"checkUrl": "https://m.lwxsww.com/96_96916_1/",
"contentPath": "/html/body/section[1]/article",
"nextUrlPath": "/html/body/section[1]/div[3]/a[3]"
},
"www.zwwx.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.zwwx.com/book/81/81632/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.tmiep.org": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.tmiep.org/xs/102/102641/",
"contentPath": "/html/body"
},
"www.kanshu5.la": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.kanshu5.la/157/157626/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[3]"
},
"www.123wenxue.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.123wenxue.com/files/article/html/86/86531/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.xuandong123.com": {
"chapterPath": "/html/body/article[2]/div[1]/dl/div",
"checkUrl": "https://www.xuandong123.com/indexlist/49936/",
"contentPath": "/html/body/article/div[5]"
},
"www.fyrsks.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "http://www.fyrsks.com/bqg/2199/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[3]/div"
},
"book.tvfans.top": {
"chapterPath": "/html/body/div[2]/div/div[2]/div[2]/ul",
"checkUrl": "https://book.tvfans.top/other/chapters/id/288652.html",
"contentPath": "/html/body/div[1]/div[3]/div[1]/div/div"
},
"www.ghxsw.com": {
"chapterPath": "/html/body/div[1]/div[6]/div/dl",
"checkUrl": "https://www.ghxsw.com/book/78/78785/",
"contentPath": "/html/body/div[1]/div[5]/div/div[3]"
},
"www.xxbiquge.com": {
"chapterPath": "/html/body/div/div[6]",
"checkUrl": "https://www.xxbiquge.com/39_39046/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.xuesoo.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "http://www.xuesoo.com/bqg/1028/",
"contentPath": "/html/body/div[4]/div/div/div[3]/div[2]",
"nextUrlPath": "/html/body/div[4]/div/div/div[3]/div[5]/a[3]"
},
"shuihu.5000yan.com": {
"chapterPath": "/html/body/div/div[1]/main/div/ul",
"checkUrl": "https://shuihu.5000yan.com/",
"contentPath": "/html/body/div/div[1]/main"
},
"www.zhenhunxiaoshuo.com": {
"chapterPath": "/html/body/section/div/div",
"checkUrl": "https://www.zhenhunxiaoshuo.com/moumou/",
"contentPath": "/html/body/section/div[1]/div/article"
},
"www.477zw.com": {
"chapterPath": "/html/body/div/div[6]/div/dl[2]",
"checkUrl": "https://www.477zw.com/html/157/157973/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.biqumy.com": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.biqumy.com/20_20934/",
"contentPath": "/html/body/div/div[4]/div/div[4]"
},
"www.51shucheng.net": {
"chapterPath": "/html/body/div[1]/div[3]/div[2]/div[5]",
"checkUrl": "https://www.51shucheng.net/jiakong/guanjuyipin",
"contentPath": "/html/body/div[1]/div[4]"
},
"www.qibookw.com": {
"chapterPath": "/html/body/div[2]/div/div[3]/div[6]/ul",
"checkUrl": "http://www.qibookw.com/book/6/6866/",
"contentPath": "/html/body/div[1]/div[2]/div[3]"
},
"www.xxyanqing5.com": {
"chapterPath": "/html/body/div[4]",
"checkUrl": "https://www.xxyanqing5.com/book/60087709/",
"contentPath": "/html/body/div[3]/div[2]/div[3]"
},
"www.shuquge.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.shuquge.com/txt/142175/index.html",
"contentPath": "/html/body/div[4]/div[2]"
},
"www.ibiquta.com": {
"chapterPath": "/html/body/div[5]/div[2]",
"checkUrl": "https://www.ibiquta.com/read/103469.html",
"contentPath": "/html/body/div[6]/div[2]"
},
"m.kuangguwenhua.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "https://m.kuangguwenhua.com/bqg/126854/",
"contentPath": "/html/body/div[6]/div/div/div[2]/div[3]"
},
"lingjingxingzhe.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.bequgexs.com/28/28346/",
"contentPath": "/html/body/div[1]/div[5]/div"
},
"www.yawenba.net": {
"chapterPath": "/html/body/div/div[7]/div",
"checkUrl": "https://www.yawenba.net/mofa/191891.html",
"contentPath": "/html/body/div[1]/div[5]/div/div[4]"
},
"www.bequgexs.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.bequgexs.com/28/28346/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.108shu.com": {
"chapterPath": "/html/body/div[4]/div[3]/div/div[2]",
"checkUrl": "http://www.108shu.com/book/18683/",
"contentPath": "/html/body/div[5]/div[1]/div/div[3]/div[2]"
},
"www.zwwx.org": {
"chapterPath": "/html/body/div/div[6]",
"checkUrl": "https://www.zwwx.org/book/76/76764/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.23qb.net": {
"chapterPath": "/html/body/div[3]/div[3]/ul[2]",
"checkUrl": "https://www.23qb.net/book/1888/",
"contentPath": "/html/body/div[2]/div/div"
},
"www.zwwx.org": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.zwwx.org/book/42/42596/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.jujiazy.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.jujiazy.com/book/10545/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.qdsunde.net": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]",
"checkUrl": "http://www.qdsunde.net/bqg/37505/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]"
},
"www.zhhbq.com": {
"chapterPath": "/html/body/div[4]",
"checkUrl": "https://www.zhhbq.com/11_11551/",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.cascoo.net": {
"chapterPath": "/html/body/div/div[6]",
"checkUrl": "https://www.cascoo.net/94_94787/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.biqusa.org": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.biqusa.org/137_137624/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.biququ.com": {
"chapterPath": "/html/body/div/div[8]/div",
"checkUrl": "https://www.biququ.com/html/8638/",
"contentPath": "/html/body/div/div[8]/div"
},
"www.bzxsw.com": {
"chapterPath": "/html/body/div[4]/div/ul",
"checkUrl": "https://www.bzxsw.com/index/148186/3/",
"contentPath": "/html/body/div[3]/div[2]/div[2]"
},
"www.xiushukong.com": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.xiushukong.com/112/112316/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[3]"
},
"www.gonb.org": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.gonb.org/78/78339/",
"contentPath": "/html/body/div[1]/div[5]/div/div"
},
"www.xuanhuanwu.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.xuanhuanwu.com/xhw19283023/",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.baiycap.net": {
"chapterPath": "div#list",
"checkUrl": "https://www.baiycap.net/book/59/59063/",
"contentPath": "div#content"
},
"www.bbzayy.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "http://www.bbzayy.com/ldks/17422/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]",
"nextUrlPath": "/html/body/div[4]/div/div/div[2]/div[3]/a[3]"
},
"www.shuxinyi.net": {
"chapterPath": "#list",
"checkUrl": "https://www.shuxinyi.net/190/190198/",
"contentPath": "#content"
},
"www.bagerrr.com": {
"chapterPath": "/html/body/div[1]/div[5]/div",
"checkUrl": "http://www.bagerrr.com/0_350/",
"contentPath": "/html/body/div[1]/div[4]/div/div[4]"
},
"www.ycyuedu.com": {
"chapterPath": "/html/body/div[1]/div[3]/dl",
"checkUrl": "https://www.ycyuedu.com/book/160766.html",
"contentPath": ""
},
"www.daomu1234.com": {
"chapterPath": "/html/body/div/div[2]/div[1]/div[3]/div[2]/ul",
"checkUrl": "https://www.daomu1234.com/book/21939/",
"contentPath": "/html/body/div/div/div[4]",
"nextUrlPath": "/html/body/div/div/div[8]/a[3]"
},
"www.93xscc.com": {
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]/div[2]/ul",
"checkUrl": "https://www.93xscc.com/12509/",
"contentPath": "/html/body/div/div/div[3]"
},
"www.kuaishuku.com": {
"chapterPath": "/html/body/div[2]/div[3]/div/div/div[2]/ul",
"checkUrl": "http://www.kuaishuku.com/162902/",
"contentPath": "/html/body/div[2]/div[1]/div/div[2]/div[3]/div[2]"
},
"m.xsyq.cc": {
"chapterPath": "/html/body/div[2]/div[4]",
"checkUrl": "https://m.xsyq.cc/html/67397/67397273/index.html",
"contentPath": "/html/body/div[6]"
},
"www.shuzw.com": {
"chapterPath": "/html/body/div/div[3]/div[2]",
"checkUrl": "http://www.shuzw.com/139_139946/",
"contentPath": "/html/body/div[1]/div/article",
"www.shuzw.com": "/html/body/div[1]/div/div[7]/a[3]"
},
"www.86wxw.com": {
"chapterPath": "/html/body/div/div[2]/div[3]",
"checkUrl": "https://www.86wxw.com/0/41/",
"contentPath": "/html/body/div[2]/div[3]"
},
"www.biquka.com": {
"chapterPath": "#list",
"checkUrl": "https://www.biquka.com/Html/Book/116/116907/",
"contentPath": "#content"
},
"book.qq.com": {
"chapterPath": "#list",
"checkUrl": "https://book.qq.com/book-detail/712403",
"contentPath": "#content"
},
"www.biququ.info": {
"chapterPath": "#list",
"checkUrl": "http://www.biququ.info/html/60810/",
"contentPath": "#content"
},
"www.dpq6.com": {
"chapterPath": "/html/body/article[2]",
"checkUrl": "http://www.dpq6.com/list/9146.html",
"contentPath": "/html/body/article"
},
"www.wdtieyi.com": {
"chapterPath": "",
"checkUrl": "https://www.wdtieyi.com/book_10252/",
"contentPath": ""
},
"www.bicui.net": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.bicui.net/1_1328/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.86wxw.com": {
"chapterPath": "/html/body/div/div[2]/div[3]",
"checkUrl": "https://www.86wxw.com/2/18/",
"contentPath": "/html/body/div/div[2]/div[3]/table"
},
"www.nlxswx.com": {
"chapterPath": "/html/body/div/div[3]/div/div/div[2]/ul",
"checkUrl": "https://www.nlxswx.com/27/27290/3/",
"contentPath": "/html/body/div/div[1]/div/div/div[3]",
"nextUrlPath": "/html/body/div/div[4]/div/nav/ul/li[3]"
},
"www.xbiqugela.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div",
"checkUrl": "https://www.xbiqugela.com/book_56081/",
"contentPath": "/html/body/div[1]/div[4]/div[1]/div/div[5]"
},
"www.qqxsnew.net": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.qqxsnew.net/41/41203/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[3]"
},
"www.sxu3xs.com": {
"chapterPath": "/html/body/div/div[2]/div/div/div[4]",
"checkUrl": "https://www.sxu3xs.com/read/15401_12747584.html",
"contentPath": "/html/body/div/div[1]/div/div/div[5]"
},
"www.ggdown8.org": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.ggdown8.org/93/93374/",
"contentPath": "/html/body/div/div[6]/div/dl[2]/dd[1]/a"
},
"www.aishangba.org": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.aishangba.org/114_114627/",
"contentPath": "/html/body/div/div[5]/div/div[3]"
},
"www.qingpinji.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]",
"checkUrl": "http://www.qingpinji.com/ldks/5105/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]"
},
"www.ibiquge.la": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.ibiquge.la/63/63514/",
"contentPath": "/html/body/div/div[3]/div/div[3]"
},
"www.biqunge.com": {
"chapterPath": "/html/body/div[1]/div[4]/div[4]/div[1]",
"checkUrl": "http://www.biqunge.com/info/207739771/",
"contentPath": "/html/body/div[4]/div[1]/div/div[2]/div[2]"
},
"www.limkokwingchina.com": {
"chapterPath": "/html/body/section[5]/ul",
"checkUrl": "http://www.limkokwingchina.com/bqg/34475/",
"contentPath": "/html/body/section/div[3]",
"nextUrlPath": "/html/body/section/div[4]/a[3]"
},
"www.qu-la.com": {
"chapterPath": "/html/body/div/div[2]/div/div[3]/ul[2]",
"checkUrl": "https://www.qu-la.com/booktxt/42128381116/",
"contentPath": "/html/body/div/div[1]/div[2]"
},
"www.ixuanshu.org": {
"chapterPath": "/html/body/div[1]/div[5]/div[1]",
"checkUrl": "https://www.ixuanshu.org/book/17354/",
"contentPath": "/html/body/div[1]/div[3]/div[1]"
},
"www.biqusa.org": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.biqusa.org/145_145237",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.guidexs.com": {
"chapterPath": "/html/body/div[3]/div/dl/",
"checkUrl": "https://www.guidexs.com/86755/",
"contentPath": "/html/body/section/div/article/div[2]"
},
"m.gdsgy.com": {
"chapterPath": "/html/body/div[1]/article/ul",
"checkUrl": "http://m.gdsgy.com/wap_xiaoshuo/8870/",
"contentPath": "/html/body/div[3]/div"
},
"www.kulemi.com": {
"chapterPath": "/html/body/div[3]/div[1]/div[2]/div[2]/ul",
"checkUrl": "http://www.kulemi.com/zt/1/",
"contentPath": "/html/body/div[3]/div[2]/div/div/div[2]"
},
"www.7722bar.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.7722bar.com/html/74100905/",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.wsltxt.com": {
"chapterPath": "/html/body/div/div[5]/div[3]/dl",
"checkUrl": "https://www.wsltxt.com/14/14911/",
"contentPath": "/html/body/div/div[3]"
},
"www.dadxs.com": {
"chapterPath": "/html/body/table[4]/tbody",
"checkUrl": "http://www.dadxs.com/dad.asp?id=49790",
"contentPath": "/html/body/table[3]/tbody/tr[3]/td"
},
"www.tstdoors.com": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]/ul",
"checkUrl": "http://www.tstdoors.com/ldks/35971/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[2]",
"nextUrlPath": "/html/body/div[4]/div/div/div[2]/div[4]/a[3]"
},
"m.biquge.tv": {
"chapterPath": "/html/body/div[3]/ul/li",
"checkUrl": "https://m.biquge.tv/0/292/",
"contentPath": "/html/body/div[2]/div[5]/div"
},
"www.bqg333.com": {
"chapterPath": "/html/body/div/div[8]/div/dl",
"checkUrl": "http://www.bqg333.com/xs/1380935/",
"contentPath": "#neirongDiv"
},
"www.23wx.la": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.23wx.la/book_29391/",
"contentPath": "/html/body/div[1]/div[2]/div/div[4]"
},
"book.zongheng.com": {
"chapterPath": "/html/body/div[3]/div[2]/div[2]",
"checkUrl": "https://book.zongheng.com/showchapter/867252.html",
"contentPath": "/html/body/div[2]/div[3]/div[3]/div/div[1]/div[5]"
},
"www.dgyjcc.com": {
"chapterPath": "/html/body/article[2]/div[1]",
"checkUrl": "https://www.dgyjcc.com/tags/3620515/",
"contentPath": "/html/body/article/div[4]"
},
"www.ixsw.la": {
"chapterPath": "/html/body/div[1]/div[7]/div",
"checkUrl": "https://www.ixsw.la/ks89229/",
"contentPath": "//*[@id=\"content\"]"
},
"www.23uswx.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.23uswx.com/5_5261/",
"contentPath": "/html/body/div/div[2]/div/div[5]"
},
"www.xxbooktxt.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.xxbooktxt.com/0_686/",
"contentPath": "/html/body"
},
"www.ishuquge.com": {
"chapterPath": "/html/body/div[6]/dl",
"checkUrl": "https://www.ishuquge.com/txt/116661/index.html",
"contentPath": "/html/body/div[4]/div[2]/div[3]"
},
"m.paoshu8.com": {
"chapterPath": "/html/body/div[4]/ul",
"checkUrl": "http://m.paoshu8.com/wapbook-167412/",
"contentPath": "/html/body/div[3]"
},
"www.kanshu5.net": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.kanshu5.net/14/14434/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[3]"
},
"www.kujiang.com": {
"chapterPath": "/html/body/div[2]/article/section/ul/li/dl/dd/ol",
"checkUrl": "https://www.kujiang.com/book/66977/catalog",
"contentPath": ".chapter_main"
},
"www.fd80.com": {
"chapterPath": "/html/body/div[4]/div[2]",
"checkUrl": "http://www.fd80.com/156/156001/",
"contentPath": "/html/body/div[2]/div/article"
},
"www.cits0871.com": {
"chapterPath": "/html/body/div/div[7]",
"checkUrl": "http://www.cits0871.com/booktxt/51052/",
"contentPath": "/html/body/div/div[5]"
},
"www.qiuyuge.com": {
"chapterPath": "#list",
"checkUrl": "http://www.qiuyuge.com/book/2/2801/",
"contentPath": "#content"
},
"www.xxdingdian.com": {
"chapterPath": "#list",
"checkUrl": "https://www.xxdingdian.com/book/242726/",
"contentPath": "#content"
},
"m.23hh.net": {
"chapterPath": "/html/body/div[3]/div[2]/div/div[2]",
"checkUrl": "https://m.23hh.net/html/671/671831/",
"contentPath": "/html/body/div[4]/div/div/div[2]/div[3]",
"nextUrlPath": "/html/body/div[4]/div/div/div[2]/div[4]/a[3]"
},
"www.wxsy.net": {
"chapterPath": "/html/body/div[4]/div/div[4]/div[1]/div/div[2]/div[2]/div[2]",
"checkUrl": "https://www.wxsy.net/novel/31437",
"contentPath": "/html/body/div[4]/div/div[2]"
},
"www.1biqug.cc": {
"chapterPath": "/html/body/div/div[5]/div",
"checkUrl": "https://www.1biqug.cc/5/5182/",
"contentPath": "/html/body/div/div[4]/div/div[4]"
},
"www.biqusa.org": {
"chapterPath": "/html/body/div[1]/div[5]/div[2]/div",
"checkUrl": "https://www.biqusa.org/124_124571/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.xqxsw.com": {
"chapterPath": "body>div.listmain>dl",
"checkUrl": "http://www.xqxsw.com/36_36863/",
"contentPath": "#content"
},
"www.jianlaixiaoshuo.com": {
"chapterPath": "/html/body/div[1]/div/dl",
"checkUrl": "http://www.jianlaixiaoshuo.com/",
"contentPath": "#BookText"
},
"www.cdxiaoshuo.cc": {
"chapterPath": "/html/body/div[1]/div[3]",
"checkUrl": "https://www.cdxiaoshuo.cc/178/178714/",
"contentPath": "/html/body/div[1]/div[3]"
},
"www.shizongzui.cc": {
"chapterPath": "/html/body/div[6]",
"checkUrl": "https://www.shizongzui.cc/santi/?jdfwkey=jvlhy1",
"contentPath": "/html/body/div[5]"
},
"www.90zw.cc": {
"chapterPath": "/html/body/div[3]/div[3]/div[1]/div[2]",
"checkUrl": "https://www.90zw.cc/90zw_190451.html",
"contentPath": "/html/body/div[4]"
},
"www.bzxsw.cc": {
"chapterPath": "/html/body/div[4]/div/ul",
"checkUrl": "https://www.bzxsw.cc/index/175996/1/",
"contentPath": "/html/body/div[3]/div[2]"
},
"www.zzrich.com": {
"chapterPath": "/html/body/div/div[6]/div/dl",
"checkUrl": "https://www.zzrich.com/read/66914428119/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.kujiang.com": {
"chapterPath": "/html/body/div[2]/article/section",
"checkUrl": "https://www.kujiang.com/book/9/catalog",
"contentPath": "/html/body/article/div[2]/div[2]"
},
"www.biquge7.top": {
"chapterPath": "html/body/div[2]/div[4]/ul/li",
"checkUrl": "https://www.biquge7.top/50381",
"contentPath": "html/body/div[2]/div[3]/div[2]"
},
"www.mldyd.com": {
"chapterPath": "/html/body/div[2]/div[3]/dl",
"checkUrl": "http://www.mldyd.com/40/40831.html",
"contentPath": "/html/body/div[2]/div"
},
"www.yushubo.net": {
"chapterPath": "/html/body/div[3]/div[1]/div[2]/div[2]/ul",
"checkUrl": "https://www.yushubo.net/list_other_36387.html",
"contentPath": "/html/body/div[3]/div[1]/div[5]",
"nextUrlPath": "/html/body/div[3]/div[1]/div[7]/a[4]"
},
"www.maxreader.la": {
"chapterPath": "/html/body/div[2]/div[3]",
"checkUrl": "https://www.maxreader.la/read/guimibeiluntujing/",
"contentPath": "/html/body/div[4]/div[2]/div[3]"
},
"www.51kenshu.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.biquxsw.com/135_135302/",
"contentPath": "/html/body/div[1]/div[2]/div/div[4]"
},
"www.biqudiao.com": {
"chapterPath": "/html/body/div[2]/div[2]/ul",
"checkUrl": "https://www.biqudiao.com/books/1309523/",
"contentPath": "/html/body/div[2]/div[1]"
},
"gzjyjc168.com": {
"chapterPath": "#list",
"checkUrl": "https://gzjyjc168.com/shuwu/17976",
"contentPath": "#content"
},
"www.sydi.cn": {
"chapterPath": "/html/body/div/div[6]",
"checkUrl": "https://www.sydi.cn/book/129446/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.doupobook.cc": {
"chapterPath": "/html/body/div[1]/div[2]/div[1]/div[3]",
"checkUrl": "https://www.doupobook.cc/doupo/",
"contentPath": "/html/body/div/div/div[3]"
},
"www.1718k.com": {
"chapterPath": "/html/body/div[3]/div[2]/ul[2]",
"checkUrl": "https://www.1718k.com/files/article/html/1/1459/",
"contentPath": "/html/body/div[2]/div[3]/div",
"nextUrlPath": "/html/body/p/a[4]"
},
"www.yushugu.com": {
"chapterPath": "/html/body/div[3]/div[1]/div[2]/div[2]/ul",
"checkUrl": "https://www.yushugu.com/list_other_59491.html",
"contentPath": "/html/body/div[3]/div[1]/div[5]",
"nextUrlPath": "/html/body/div[3]/div[1]/div[7]/a[4]"
},
"www.goufangwang.top": {
"chapterPath": "/html/body/div[6]/div[4]",
"checkUrl": "https://www.goufangwang.top/mulu/1.html",
"contentPath": "/html/body/div[6]/div[6]",
"nextUrlPath": "/html/body/div[6]/div[6]"
},
"www.biqu5200.net": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "http://www.biqu5200.net/101_101144/",
"contentPath": "#content"
},
"www.121du.cc": {
"chapterPath": "/html/body/div[1]/div[2]/div[3]/div[4]/dl",
"checkUrl": "https://www.121du.cc/149378/",
"contentPath": "/html/body/div[1]/div[3]/div[3]"
},
"www.xdingdianxsw.com": {
"chapterPath": "/html/body/div[1]/div[5]/div/div/div/div[2]",
"checkUrl": "https://www.xdingdianxsw.com/20/1069/",
"contentPath": "/html/body/div[1]/div[2]"
},
"www.maoshanhouyi.cn": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.maoshanhouyi.cn/jianwenmizong/",
"contentPath": "/html/body/div[3]"
},
"www.biquxsw.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.biquxsw.com/0_228/",
"contentPath": "/html/body/div[1]/div[2]"
},
"www.wenku8.net": {
"chapterPath": "/html/body/table/tbody",
"checkUrl": "http://www.wenku8.net/novel/0/93/index.htm",
"contentPath": "/html/body/div[4]/div[4]",
"nextUrlPath": "/html/body/div[5]/div[2]/a[4]"
},
"www.linovelib.com": {
"chapterPath": "/html/body/div[2]/div[3]/div[2]/div[3]/div/ul",
"checkUrl": "https://www.linovelib.com/novel/1805/catalog",
"contentPath": "/html/body/div[2]/div[3]",
"nextUrlPath": "/html/body/p/a[5]"
},
"www.147xs.org": {
"chapterPath": "/html/body/div/div[4]/div",
"checkUrl": "https://www.147xs.org/book/150801/",
"contentPath": "/html/body/div/div[3]"
},
"www.xbiquge.so": {
"chapterPath": "/html/body/div[3]/div/dl",
"checkUrl": "https://www.xbiquge.so/book/6684/",
"contentPath": "/html/body/div[1]/div[2]/div"
},
"wujixsw.com": {
"chapterPath": "/html/body/div[1]/div[6]/div[2]/div/dl",
"checkUrl": "https://wujixsw.com/6_6391/",
"contentPath": "/html/body/div[1]/div[5]/div/div/div[4]"
},
"www.boyuart.cn": {
"chapterPath": "/html/body/div[2]/div[2]/div[2]",
"checkUrl": "https://www.boyuart.cn/b/19030/",
"contentPath": "/html/body/div[2]/div[1]/article"
},
"m.hgq26.com": {
"chapterPath": "/html/body/div[2]",
"checkUrl": "https://m.hgq26.com/wapbook-154790_20/",
"contentPath": "/html/body/div[2]/div[4]/div"
},
"book.sfacg.com": {
"chapterPath": "/html/body/div[1]/div[3]/div[4]",
"checkUrl": "https://book.sfacg.com/Novel/599079/MainIndex/",
"contentPath": "/html/body/div[1]/div[3]/div"
},
"www.81zw.com": {
"chapterPath": "#list",
"checkUrl": "https://www.81zw.com/book/135278/",
"contentPath": "#content"
},
"www.qishuta.la": {
"chapterPath": "/html/body/div/div[5]/div[1]/ul",
"checkUrl": "https://www.qishuta.la/du/32/32384/",
"contentPath": "#info"
},
"www.zhhbiqu.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "https://www.zhhbiqu.com/1_1495/",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.26ks.org": {
"chapterPath": "/html/body/div[1]/div[4]/div[2]/div",
"checkUrl": "http://www.26ks.org/book/106/",
"contentPath": "/html/body/div[1]/div[4]/div/div/div[3]"
},
"m.swangwx.com": {
"chapterPath": "/html/body/div[5]",
"checkUrl": "http://m.swangwx.com/206756/287.html",
"contentPath": "/html/body/div[4]/div[2]/div[2]"
},
"www.ixsw.org": {
"chapterPath": "/html/body/div[1]/div[7]",
"checkUrl": "https://www.ixsw.org/ks40999/",
"contentPath": "/html/body/div[4]/div/div[4]"
},
"m.630shu.net": {
"chapterPath": "/html/body/div[2]",
"checkUrl": "https://m.630shu.net/chapters_707",
"contentPath": "/html/body/div[2]/div[1]/ul/li[2]/a"
},
"www.xpiaotian.com": {
"chapterPath": "#list",
"checkUrl": "https://www.xpiaotian.com/book/403112/",
"contentPath": "#content"
},
"www.86wxw.com": {
"chapterPath": "/html/body/div/div[2]/div[3]/table",
"checkUrl": "https://www.86wxw.com/1/1050/",
"contentPath": "/html/body/div[2]/div[3]"
},
"www.bookxuan.org": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "http://www.bookxuan.org/book/16/16623/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.121du.cc": {
"chapterPath": "/html/body/div/div[2]",
"checkUrl": "https://www.121du.cc/170442/",
"contentPath": "/html/body/div/div[3]/div[3]"
},
"www.tyxsw.org": {
"chapterPath": "/html/body/div[3]/div[2]/dl",
"checkUrl": "https://www.tyxsw.org/read/97265/",
"contentPath": "/html/body/div[3]/div[2]"
},
"www.wcxsw.com": {
"chapterPath": "/html/body/div[3]/div",
"checkUrl": "https://www.wcxsw.com/book_102378/",
"contentPath": "/html/body/div[1]/div[2]/div[1]/div[4]"
},
"www.118book.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.118book.com/book/39258/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.yulinshu.com": {
"chapterPath": "/html/body/div[3]/div[1]/dl",
"checkUrl": "https://www.yulinshu.com/go/4603/",
"contentPath": "/html/body/div[3]/div[1]/div[1]"
},
"www.qu-la.com": {
"chapterPath": "/html/body/div/div[2]/div/div[3]",
"checkUrl": "https://www.qu-la.com/booktxt/83219908116/",
"contentPath": "/html/body/div/div[1]/div[2]/div[2]"
},
"www.yunzhonggexiaoshuo.com": {
"chapterPath": "/html/body/div[6]",
"checkUrl": "https://www.yunzhonggexiaoshuo.com/santi/",
"contentPath": "/html/body/div[5]",
"nextUrlPath": "/html/body/div[7]/div/h2/a[3]"
},
"fanqienovel.com": {
"chapterPath": "/html/body/div",
"checkUrl": "https://fanqienovel.com/page/6833430353554705422",
"contentPath": "/html/body/div"
},
"www.118book.com": {
"chapterPath": "/html/body/div/div[6]/div",
"checkUrl": "https://www.118book.com/book/187/",
"contentPath": "/html/body/div/div[4]/div/div[3]"
},
"www.wawxc.com": {
"chapterPath": "/html/body/div[2]/div/div[2]/div[2]/ul",
"checkUrl": "https://www.wawxc.com/html/66213/",
"contentPath": "/html/body/div[2]/div/div/div[3]"
},
"www.daomutxt.cc": {
"chapterPath": "/html/body/div[3]/div[2]",
"checkUrl": "https://www.daomutxt.cc/txt/56220/",
"contentPath": "/html/body/div[3]/div/div[2]"
},
"www.biququ.com": {
"chapterPath": "/html/body/div/div[10]/div",
"checkUrl": "https://www.biququ.com/html/104285/",
"contentPath": "/html/body/div[1]/div[6]/div[2]/div[4]"
},
"www.023zw.com": {
"chapterPath": "/html/body/div/div[4]/div[1]",
"checkUrl": "https://www.023zw.com/49/49924/",
"contentPath": "/html/body/div[1]/div[3]/div/div[3]"
},
"www.xiakeddd.com": {
"chapterPath": "/html/body/div[1]/div[5]/div",
"checkUrl": "http://www.xiakeddd.com/txt20032.shtml",
"contentPath": "/html/body/div[1]/div[4]/div/div[4]"
},
"www.biqudiao.com": {"chapterPath":"/html/body/div[2]/div[2]",
"checkUrl":"https://www.biqudiao.com/258/258305/",
"contentPath":"/html/body/div[2]/div[1]"},
"www.zanghaihua.org": {
"chapterPath":"/html/body/div[6]",
"checkUrl":"https://www.zanghaihua.org/huozhou/",
"contentPath":"/html/body/div[5]"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Azleal/chapter_reader.git
git@gitee.com:Azleal/chapter_reader.git
Azleal
chapter_reader
idea小说阅读 idea摸鱼插件 chapter_reader
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385