-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookSource.json
More file actions
2112 lines (2112 loc) · 271 KB
/
BookSource.json
File metadata and controls
2112 lines (2112 loc) · 271 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"bookSourceComment": "//2024.11.12◎GEd520◎",
"bookSourceGroup": "",
"bookSourceName": "夜伴书屋",
"bookSourceType": 0,
"bookSourceUrl": "http://www.ybswa.com/",
"customOrder": -92867,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"全部🏷分类\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"奇幻·玄幻\",\"url\":\"/list/qihuan{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"科幻·游戏\",\"url\":\"/list/kehuan{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"武侠·仙侠\",\"url\":\"/list/wuxia{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"女生·言情\",\"url\":\"/list/yanqing{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"都市·娱乐\",\"url\":\"/list/dushi{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"历史·军事\",\"url\":\"/list/lishi{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"悬疑·灵异\",\"url\":\"/list/xuanyi{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"耽美·纯爱\",\"url\":\"/list/chunai{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},{\"title\":\"轻小说\",\"url\":\"/list/lightnovel{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},]",
"header": "{'User-Agent':'Mozilla/5.0 (Linux; Android 14; V2304A; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/123.0.6312.118 Mobile Safari/537.36',\n\"cookie\":\"1\"}",
"lastUpdateTime": 1756896946820,
"respondTime": 7285,
"ruleBookInfo": {
"author": ".row.1@a.0@text",
"coverUrl": "img.0@src",
"downloadUrls": "",
"intro": " \n📖 书名:{{@@h1@a.0@text}}\n👤 作者:{{@@.row.1@a.0@text}}\n🕰 最新:{{@@.row.1@a.1@text}}\n🏷 简介:{{@@.book-detail@text}}",
"lastChapter": ".row.1@a.1@text",
"tocUrl": "",
"wordCount": ".row.1@div.2@text##状态:"
},
"ruleContent": {
"content": "#cont-body@html||.cont-body@html",
"nextContentUrl": "ul@li@a@href"
},
"ruleExplore": {
"bookList": ".row@.media",
"bookUrl": "h4@a@href",
"coverUrl": "img@src",
"intro": ".media-info@text",
"name": "h4@a@text"
},
"ruleSearch": {
"author": "td.1@text",
"bookList": ".table@tbody@tr",
"bookUrl": "a@href",
"coverUrl": "",
"intro": "",
"kind": "",
"name": ".orange@text##\\《|\\》"
},
"ruleToc": {
"chapterList": ".row@.col-md-6",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "/plus/search.php?q={{key}}",
"weight": 0
},
{
"bookSourceComment": "25-04-05 靈狐 制\n25-08-18 修复正文解密\n\n部分书详情页封面无法访问可使用搜索封面规则",
"bookSourceGroup": "",
"bookSourceName": "3A小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.aaawz.cc",
"customOrder": 0,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": false,
"header": "@js:JSON.stringify({\n 'Accept': \"application/json, text/plain, */*\",\n 'origin': source.key,\n 'referer': source.key+\"/\",\n 'accept-language': \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\"\n})",
"jsLib": "function decompressFromBase64(input) {\n if (input == null) return '';\n if (input === '') return null;\n\n const base64Alphabet = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";\n const lookup = {};\n for (let i = 0; i < base64Alphabet.length; i++) {\n lookup[base64Alphabet.charAt(i)] = i;\n }\n function getValue(char) {\n return lookup[char];\n }\n\n function decompress(length, resetValue, getNextValue) {\n const dictionary = [];\n let dictSize = 4;\n let bits = 3;\n let result = [];\n let data = { val: getNextValue(0), position: resetValue, index: 1 };\n\n // 读取初始控制代码(2 位)\n let res = 0;\n let maxPower = Math.pow(2, 2);\n let power = 1;\n while (power != maxPower) {\n let bit = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n if (data.index > length) return '';\n data.val = getNextValue(data.index++);\n }\n res |= (bit > 0 ? 1 : 0) * power;\n power <<= 1;\n }\n\n let next;\n switch (res) {\n case 0: // 8 位字符\n res = 0;\n maxPower = Math.pow(2, 8);\n power = 1;\n while (power != maxPower) {\n let bit = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n if (data.index > length) return '';\n data.val = getNextValue(data.index++);\n }\n res |= (bit > 0 ? 1 : 0) * power;\n power <<= 1;\n }\n next = String.fromCharCode(res);\n break;\n case 1: // 16 位字符\n res = 0;\n maxPower = Math.pow(2, 16);\n power = 1;\n while (power != maxPower) {\n let bit = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n if (data.index > length) return '';\n data.val = getNextValue(data.index++);\n }\n res |= (bit > 0 ? 1 : 0) * power;\n power <<= 1;\n }\n next = String.fromCharCode(res);\n break;\n case 2: // 结束\n return '';\n }\n\n // 初始化字典\n dictionary[0] = '';\n dictionary[1] = '';\n dictionary[2] = '';\n dictionary[3] = next;\n let w = next;\n result.push(next);\n\n // 主解压循环\n while (data.index <= length) {\n let code = 0;\n maxPower = Math.pow(2, bits);\n power = 1;\n while (power != maxPower) {\n let bit = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n if (data.index > length) break;\n data.val = getNextValue(data.index++);\n }\n code |= (bit > 0 ? 1 : 0) * power;\n power <<= 1;\n }\n\n if (data.index > length && code === 0) break;\n\n switch (next = code) {\n case 0: // 新 8 位字符\n res = 0;\n maxPower = Math.pow(2, 8);\n power = 1;\n while (power != maxPower) {\n let bit = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n if (data.index > length) return result.join('');\n data.val = getNextValue(data.index++);\n }\n res |= (bit > 0 ? 1 : 0) * power;\n power <<= 1;\n }\n dictionary[dictSize++] = String.fromCharCode(res);\n next = dictSize - 1;\n break;\n case 1: // 新 16 位字符\n res = 0;\n maxPower = Math.pow(2, 16);\n power = 1;\n while (power != maxPower) {\n let bit = data.val & data.position;\n data.position >>= 1;\n if (data.position == 0) {\n data.position = resetValue;\n if (data.index > length) return result.join('');\n data.val = getNextValue(data.index++);\n }\n res |= (bit > 0 ? 1 : 0) * power;\n power <<= 1;\n }\n dictionary[dictSize++] = String.fromCharCode(res);\n next = dictSize - 1;\n break;\n case 2: // 结束\n return result.join('');\n }\n\n if (dictSize - 1 >= Math.pow(2, bits) - 1) bits++;\n\n let entry;\n if (dictionary[next]) {\n entry = dictionary[next];\n } else if (next === dictSize) {\n entry = w + w.charAt(0);\n } else {\n return null;\n }\n\n result.push(entry);\n dictionary[dictSize++] = w + entry.charAt(0);\n w = entry;\n\n if (dictSize - 1 >= Math.pow(2, bits) - 1) bits++;\n }\n\n return result.join('');\n }\n\n return decompress(input.length, 32, (index) => getValue(input.charAt(index)));\n}",
"lastUpdateTime": 1756898967581,
"loginCheckJs": "let url = result.url()\nlet body = result.body()\nif(url.includes('-chapter-')){\n let data = java.base64DecodeToByteArray(body)\n let iv = data.slice(0,16)\n let x = java.createSymmetricCrypto('AES/CBC/PKCS7Padding',java.strToBytes('123#2^0@0vm@08.b5%$1[A]1&4115s(('), iv)\n body = x.decryptStr(data.slice(16, data.length))\n}\nPackages.io.legado.app.help.http.StrResponse(url, decompressFromBase64(String(body).replace(/\\s/g,'')))",
"respondTime": 8850,
"ruleBookInfo": {
"author": "author",
"coverUrl": "imgurl",
"intro": "intro",
"kind": "lastupdate@js:java.timeFormat(result[0]*1000)",
"lastChapter": "{{$.lastchapter}}·{{java.timeFormat(java.getString('$.lastupdate')*1000)}}",
"name": "articlename",
"tocUrl": "/api-chapterlist-{{$.tid}}-{{$.siteid}}"
},
"ruleContent": {
"content": "@js:result"
},
"ruleExplore": {},
"ruleSearch": {
"author": "author##<\\/?em>",
"bookList": "data.books",
"bookUrl": "/api-info-{{$.tid}}-{{$.siteid}}",
"coverUrl": "tid@js:let sid = java.getString('siteid');\n'/bookimg/'+sid+'/'+result%100+'/'+result+'.jpg'",
"kind": "lastupdate",
"lastChapter": "lastchapter&&lastupdate##\\n##·",
"name": "articlename##<\\/?em>"
},
"ruleToc": {
"chapterList": "*",
"chapterName": "title",
"chapterUrl": "{{baseUrl.replace('list-','-')}}-{{$.cid}}",
"updateTime": "{{java.timeFormat(java.getString('$.update')*1000)}}更新 {{$.wordNum}}字"
},
"searchUrl": "/api-search,{\n \"method\": \"POST\",\n \"body\": 'keyword={{key}}&page={{page}}&size=10'\n}",
"weight": 0
},
{
"bookSourceComment": "//2025.02.05\n//by 天天的鸟蛋蛋 \n//正文 webView by 关耳 正文 解密by== by水镜绘纱\n//发现 by 另一个书友圈\n// 设置书源变量 默认为0 0是调用解密\n//1是webView加载 下面的代码勿动\ncontent = java.getElement(\"@@class.content\");\nscript = result.match(/\\<script\\>var c=\"[\\s\\S]+?defer=\"defer\"\\>\\<\\/script\\>/)[0];\nscript = content+script;\nresult = java.webView(script,\"http://www.xinjianpan.com\",\"\")",
"bookSourceGroup": "",
"bookSourceName": "新键盘小说网",
"bookSourceType": 0,
"bookSourceUrl": "http://www.xinjianpan.com",
"customOrder": 1,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"exploreUrl": "[\n {\n \"title\": \"🌊 热门 🌊\",\n \"url\": \"\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 1\n }\n },\n {\n \"title\": \"周点击\",\n \"url\": \"/rank/weekvisit/?page={{page}}\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.25\n }\n },\n {\n \"title\": \"月点击\",\n \"url\": \"/rank/monthvisit/?page={{page}}\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.25\n }\n },\n {\n \"title\": \"总点击\",\n \"url\": \"/rank/allvisit/?page={{page}}\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.25\n }\n },\n {\n \"title\": \"🌊 分类 🌊\",\n \"url\": \"\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 1\n }\n },\n {\n \"title\": \"玄幻\",\n \"url\": \"/sort/xuanhuan-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"仙侠\",\n \"url\": \"/sort/xianxia-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"都市\",\n \"url\": \"/sort/dushi-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"历史\",\n \"url\": \"/sort/lishi-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"网游\",\n \"url\": \"/sort/wangyou-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"科幻\",\n \"url\": \"/sort/kehuan-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"灵异\",\n \"url\": \"/sort/lingyi-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"言情\",\n \"url\": \"/sort/yanqing-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": 0.2\n }\n },\n {\n \"title\": \"其他\",\n \"url\": \"/sort/qita-{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": -1,\n \"layout_flexBasisPercent\": 0.205\n }\n },\n {\n \"title\": \"全本\",\n \"url\": \"/quanben/sort/{{page}}.html\",\n \"style\": {\n \"layout_flexGrow\": -1,\n \"layout_flexBasisPercent\": 0.205\n }\n }\n]",
"header": "{\"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 14; zh-cn; M2102K1AC Build/UKQ1.231207.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/109.0.5414.118 Mobile Safari/537.36 MQQBrowser/10.1.0\"}",
"lastUpdateTime": 1756390877700,
"respondTime": 605,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property~=status|update_time|category]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"tocUrl": "text.更多章节@href"
},
"ruleContent": {
"content": "<js>\nz = source.getVariable().split(\",\");\nif(!(parseInt(z[0])>0)){\n let regex = /var c=\"([^\"]*)\"/;\nlet dd = result.match(regex)[1]\n\nlet j = java.base64Decode(dd);\n //java.log(j)\n jja=String(j).replace(/^[^-]*-/,\"-\")\n if(/=/.test(jja)){jj=jja.replace(/=[^=]*$/,\"\");}else{jj=jja.replace(/_[^_]*$/,\"\");}\n \nm=jj.replace(/-/g,\"PHA+\").replace(/_/g,\"8L3A+\");\nn=java.getString(\"@@#chaptercontent@p@html\");\nn+\tjava.base64Decode(m)\n\n \n}else if(parseInt(z[0])){\n src=eval(String(source.bookSourceComment))\nresult=java.getString(\"id.chaptercontent@html\",src)\nresult\n}\n\n</js>\n",
"nextContentUrl": "##onclick=\"location.href='([^\"]+_\\d+.html)'\">下一章</a>##$1###",
"replaceRegex": "##天才一秒记住【.*】地址.*|.*退出阅读模式即可,谢谢!|小说推荐:.*|.*新键盘小说网.*",
"title": "",
"webJs": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": "dd@a@text",
"bookList": "dl:nth-child(n+1)",
"bookUrl": "dt@a@href",
"checkKeyWord": "斗破苍穹",
"coverUrl": "img@data-src",
"intro": "dd.0@text",
"kind": "dd@span.0:-1@text",
"name": "dt@a@text",
"wordCount": "dd@span.1@text"
},
"ruleToc": {
"chapterList": ".all@ul@li@a",
"chapterName": "text",
"chapterUrl": "onclick##.*\\'(.*)\\'##$1###",
"nextTocUrl": "option@value"
},
"searchUrl": "/search/?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "西瓜小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.pdske.com",
"customOrder": 3,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": false,
"exploreUrl": "[{\"title\":\"职业商战\",\"url\":\"/class/1/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"军旅生涯\",\"url\":\"/class/2/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖悬疑\",\"url\":\"/class/3/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"探险异闻\",\"url\":\"/class/4/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"变身情缘\",\"url\":\"/class/5/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"国术武技\",\"url\":\"/class/6/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"菁菁校园\",\"url\":\"/class/7/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"人文社科\",\"url\":\"/class/8/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"全本完结\",\"url\":\"/wanjie/{{page}}.html,{'webView': true}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
"lastUpdateTime": 1747540039291,
"respondTime": 2082,
"ruleBookInfo": {
"author": ".xas645@text",
"coverUrl": ".fxjais@img@src",
"intro": ".sc7f1w@text##(^|[。!?]+[”」)】]?)##$1<br>",
"kind": ".8dxgao@a.1@text&&.wqo02t,.kmqi6u,.cp5dfn@text##.*:|\\s..:.*",
"lastChapter": ".6kcp8h@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"name": ".h4a0bo@text",
"tocUrl": ""
},
"ruleContent": {
"content": "id.TextContent@p@html",
"replaceRegex": "##想要看最新章节.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "a.2@text",
"bookList": ".bookbox",
"bookUrl": "a.1@href##$##,{'webView': true}",
"checkKeyWord": "",
"coverUrl": "img@data-original",
"intro": ".update@textNodes",
"kind": ".author!0@text##.*:|\\s..:.*",
"lastChapter": "a.3@text",
"name": "a.1@text",
"wordCount": ""
},
"ruleToc": {
"chapterList": "id.chapter@a",
"chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"chapterUrl": "href##$##,{'webView': true}"
},
"searchUrl": "/search.php?searchkey={{key}}&action=login&submit=,{\n \"method\": \"get\",\n \"webView\": true\n}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "笔趣阁22",
"bookSourceType": 0,
"bookSourceUrl": "https://m.22biqu.com/",
"bookUrlPattern": "https?://m.22biqu.com/biqu\\d+/",
"customOrder": 4,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"排行🏷榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"总排行榜\",\"url\":\"/rank/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},{\"title\":\"月排行榜\",\"url\":\"/rank/monthvisit/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},{\"title\":\"周排行榜\",\"url\":\"/rank/weekvisit/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},{\"title\":\"收藏榜\",\"url\":\"/rank/goodnum/\",\"style\":{\"layout_flexBasisPercent\":0.4,\"layout_flexGrow\":1}},{\"title\":\"标签🏷分类\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"全部分类\",\"url\":\"/fenlei/{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"玄幻奇幻\",\"url\":\"/fenlei/1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"武侠修真\",\"url\":\"/fenlei/2_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市言情\",\"url\":\"/fenlei/3_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/fenlei/4_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻灵异\",\"url\":\"/fenlei/6_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"游戏竞技\",\"url\":\"/fenlei/5_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"女生耽美\",\"url\":\"/fenlei/7_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"其他类型\",\"url\":\"/fenlei/8_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
"lastUpdateTime": 1733463080646,
"respondTime": 8539,
"ruleBookInfo": {
"author": "@get:{a}",
"coverUrl": "@get:{c}",
"init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property~=las?test_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
"intro": "@get:{i}",
"kind": "@get:{k}",
"lastChapter": "@get:{l}",
"name": "@get:{n}",
"wordCount": ""
},
"ruleContent": {
"content": "#chaptercontent@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##本章未完.*|『加入书签,方便阅读』"
},
"ruleExplore": {
"author": ".author@text##(.*)",
"bookList": ".hot_sale",
"bookUrl": "a.0@href",
"coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##https://img.22biqu.com/$2/$1/$1s.jpg###",
"intro": ".review@text##简介:",
"kind": "",
"name": ".title@text##[1-9^]."
},
"ruleSearch": {
"author": ".author.0@text",
"bookList": ".bookbox",
"bookUrl": ".bookname@a@href",
"coverUrl": "img@src",
"kind": ".author.1@text##类型:",
"lastChapter": ".update@a@text",
"name": ".bookname@a@text"
},
"ruleToc": {
"chapterList": ".directoryArea.1@p@a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "option@value"
},
"searchUrl": "{{cookie.removeCookie(source.getKey())}}/ss/,{\n \"body\": \"searchkey={{key}}\",\n \"method\": \"POST\"\n}",
"weight": 0
},
{
"bookSourceComment": "by天天的鸟蛋蛋\n同模板\nwww.qhdbu.com\nwww.cxyxk.cn\nwww.jdzre.com",
"bookSourceGroup": "",
"bookSourceName": "青豆小说网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.jdzwo.com",
"customOrder": 5,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"lastUpdateTime": 1734249458381,
"respondTime": 4707,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=author]@content",
"intro": "{{@@class.umys1j bookintromore@html}}\n{{@@[property$=description]@content}}",
"kind": "[property~=update_time|category|status]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content"
},
"ruleContent": {
"content": "#TextContent@html",
"nextContentUrl": "",
"replaceRegex": "##www.*小说网"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".author > a@text",
"bookList": ".bookbox:nth-child(n+2)",
"bookUrl": "a@href",
"checkKeyWord": "",
"coverUrl": "img@data-original",
"intro": ".update@text",
"kind": ".author:nth-child(3)@text&&.author:nth-child(4)@text##.*:",
"lastChapter": ".cat > a@text",
"name": ".bookname > a@text"
},
"ruleToc": {
"chapterList": "#listsss@dd@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "/search.php?searchkey={{key}}&action=login&submit=",
"weight": 0
},
{
"bookSourceComment": "by幕惜&by天天的鸟蛋蛋",
"bookSourceGroup": "",
"bookSourceName": "无限小说网",
"bookSourceType": 0,
"bookSourceUrl": "https://wuxianbook.com",
"customOrder": 6,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"lastUpdateTime": 1747316234381,
"respondTime": 6953,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"init": "<js>\nid=src.match(/data\\-bookid\\=\\\"(\\d+)\\\"/)[1]\njava.log(id)\njava.put(\"id\",id)\n</js>",
"intro": "[property$=description]@content",
"kind": "[property~=category|status|update_time]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"tocUrl": "<js>\nid=java.get(\"id\");\njava.log(id)\nurl=\"https://wuxianbook.com/e/extend/bookpage/pages.php?id=\"+id+\"&pageNum=0&dz=asc\"\nurl;\n</js>"
},
"ruleContent": {
"content": "#text@html"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".book-author@text",
"bookList": ".s-nv-list@ul@li",
"bookUrl": "a@href",
"checkKeyWord": "",
"coverUrl": "img@src",
"intro": "p@text",
"name": ".title@text"
},
"ruleToc": {
"chapterList": ".list[*]",
"chapterName": ".title",
"chapterUrl": "{{book.bookUrl}}{{$.pic}}",
"nextTocUrl": ".totalPage\n<js>\nid=java.get(\"id\");\njava.log(id)\nmatch=String(result).match(/(\\d+)/)\nn=match[1]\nlist=[]\nfor(var i=1; i<=n; i++){\n\n list.push(\"https://wuxianbook.com/e/extend/bookpage/pages.php?id=\"+id+\"&pageNum=\"+i+\"&dz=asc\")\n\n }\n\nlist;\n</js>"
},
"searchUrl": "https://wuxianbook.com/e/search/index.php,{\n \"body\": \"tbname=bookname&show=title&tempid=1&keyboard={{key}}\",\n \"method\": \"POST\"\n}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "25中文网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.i25zw.com",
"customOrder": 8,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"lastUpdateTime": 1756897345801,
"respondTime": 836,
"ruleBookInfo": {
"author": "p:nth-child(2) > a@text",
"coverUrl": "img@src",
"init": "",
"intro": ".introtxt@text##简介:",
"kind": "#info > p:nth-child(3)@text##\\(\\)",
"lastChapter": "p:nth-child(6) > a@text",
"name": "h1@text",
"tocUrl": ""
},
"ruleContent": {
"content": "id.content@html##投推荐票|上一章|章节目录|下一章|加入书签|返回书架",
"replaceRegex": "",
"sourceRegex": "",
"webJs": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.span@text##作者:",
"bookList": "id.alist@id.alistbox",
"bookUrl": "class.title@tag.h2@tag.a.0@href",
"checkKeyWord": "我的",
"coverUrl": "tag.img@src",
"intro": "class.intro@text",
"kind": "tag.p.2@text##分类:",
"lastChapter": "class.sys@tag.li@text##最新更新:",
"name": "class.title@tag.h2@tag.a.0@text"
},
"ruleToc": {
"chapterList": "id.list@tag.dd",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "/search.html,{\nmethod: \"post\",\nbody: \"searchkey={{key}}&searchtype=all&Submit=\"\n}",
"weight": 0
},
{
"bookSourceComment": "┍ 书源作者:萌 新 ┒\n├───┬────────────┤\n│!免责│本书源只提供代码进行技术│\n│!声明│交流,请于24小时后删除│\n└────────────────┘\n交流群610296345",
"bookSourceGroup": "",
"bookSourceName": "全本-小说",
"bookSourceType": 0,
"bookSourceUrl": "https://quanben-xiaoshuo.com",
"customOrder": 9,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"https://quanben-xiaoshuo.net/category/xuanhuanxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"奇幻\",\"url\":\"https://quanben-xiaoshuo.net/category/qihuanxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"科幻\",\"url\":\"https://quanben-xiaoshuo.net/category/kehuanxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"武侠\",\"url\":\"https://quanben-xiaoshuo.net/category/wuxiaxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"仙侠\",\"url\":\"https://quanben-xiaoshuo.net/category/xianxiaxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"网游\",\"url\":\"https://quanben-xiaoshuo.net/category/wangyouxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"推理\",\"url\":\"https://quanben-xiaoshuo.net/category/tuilixiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"灵异\",\"url\":\"https://quanben-xiaoshuo.net/category/lingyixiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"恐怖\",\"url\":\"https://quanben-xiaoshuo.net/category/kongbuxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"历史\",\"url\":\"https://quanben-xiaoshuo.net/category/lishixiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"军事\",\"url\":\"https://quanben-xiaoshuo.net/category/junshixiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"都市\",\"url\":\"https://quanben-xiaoshuo.net/category/dushixiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"言情\",\"url\":\"https://quanben-xiaoshuo.net/category/yanqinxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"架空\",\"url\":\"https://quanben-xiaoshuo.net/category/jiakongxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"耽美\",\"url\":\"https://quanben-xiaoshuo.net/category/danmeixiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"青春\",\"url\":\"https://quanben-xiaoshuo.net/category/qingchunxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"校园\",\"url\":\"https://quanben-xiaoshuo.net/category/xiaoyuanxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"生活\",\"url\":\"https://quanben-xiaoshuo.net/category/shenghuoxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"古书\",\"url\":\"https://quanben-xiaoshuo.net/category/gudianshuji-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"古小\",\"url\":\"https://quanben-xiaoshuo.net/category/gudianxiaoshuo-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},{\"title\":\"其它\",\"url\":\"https://quanben-xiaoshuo.net/category/qitashuji-{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}}]",
"lastUpdateTime": 1756391213410,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".info p.0@span@text",
"coverUrl": ".pic img@src",
"intro": ".info p.2@span@text",
"kind": ".info p.1@span@text",
"name": ".info h1@text",
"tocUrl": "text.开始阅读@href##$##,{'webView': true}"
},
"ruleContent": {
"content": "#articlebody p@textNodes"
},
"ruleExplore": {
"bookList": ".list2 li",
"bookUrl": "a@href",
"name": "span@text"
},
"ruleSearch": {
"author": "p span@textNodes",
"bookList": ".book",
"bookUrl": "h1 a@href",
"intro": ".description p@text",
"kind": "p a@text",
"name": "h1@a@text"
},
"ruleToc": {
"chapterList": ".list li",
"chapterName": "a span@text##章节目录.",
"chapterUrl": "a@href"
},
"searchUrl": "/?c=book&a=search&keyword={{key}},{'webView': true}",
"weight": 0
},
{
"bookSourceComment": "聆听月与悦-8.20\n (๑′ᴗ‵๑)I Lᵒᵛᵉᵧₒᵤ\n",
"bookSourceGroup": "",
"bookSourceName": "全本小说网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.quanbenxiaoshuo.com",
"customOrder": 10,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"jsLib": "function next(page, url) {\n const n_u = [];\n for (let num = 1; num <= page; num++) {\n n_u.push(`${url}index_${num}.html`);\n }\n return n_u;\n}\n",
"lastUpdateTime": 1756291846346,
"respondTime": 180000,
"ruleBookInfo": {
"author": "@@li.0@a@text",
"coverUrl": "http://www.quanbenxiaoshuo.com{{@@img@src}}",
"init": "@css:div[class].box",
"intro": "div#intro_pc@text",
"kind": "li[3]@text##状态:",
"lastChapter": "{{@@li.4@text}} {{@@li.1@text}}##[最更新章节时间:]",
"name": "h1@text"
},
"ruleContent": {
"content": "article.font_max@html",
"nextContentUrl": "@js:\nfunction c_next(page, url) {\n const n_u = [];\n for (let num = 1; num <= page; num++) {\n n_u.push(`${url}_${num}.html`);\n }\n return n_u;\n}\n\nlet burl = chapter.url;\nlet content = java.ajax(burl);\nlet text = java.getString(\"article.font_max@html\", content);\n//java.log(text)\nlet regex = /第\\((\\d+)\\/(\\d+)\\)页/;\nlet p_g = text.match(regex)[2];\nlet url = burl.split(\".html\")[0];\nlet next_url;\nif ( p_g[2] == \"1\") {\n\t next_url = \"\";\n} else {\n\t next_url = c_next(p_g, url).join(\"\\n\");\n}",
"replaceRegex": "##第\\(\\d+\\/\\d+\\)页|笔趣阁手机端 http\\:\\/\\/m\\.biquwu\\.cc|<[^>]+?> |amp|http(s)?\\:[a-zA-Z0-9)]\\.[a-zA-Z0-9)].com|\\=|\\/+|\\.{1,3}|http(s)?\\:\\/\\/|www|qidian|com|[a-z]|\\&\\;|lt|ahref\\=|https?\\:[a-zA-Z0-9]\\.[a-zA-Z0-9]\\.com?|gt|[;]|起点中文网|欢迎.{0,9}|最.{1}|的连载作品尽在.{0,6}!\\!?|手机用户请到.*阅读。|^(((http|https|ftp):\\/\\/)?([[a-zA-Z0-9]\\-\\.])+(\\.)([[a-zA-Z0-9]]){2,4}([[a-zA-Z0-9]\\/+=%&_\\.~?\\-]*))*$"
},
"ruleExplore": {},
"ruleSearch": {
"author": "dd.book_other[0]@text",
"bookList": "@css:body > section > div.container > div.box.hot > div.row > div.col-12.col-md-6",
"bookUrl": "dl > dt > a[href][0]@href",
"checkKeyWord": "我就是英雄",
"coverUrl": "http://www.quanbenxiaoshuo.com{{@@img@src}}",
"kind": "dd.book_other[1]@text##状态:",
"lastChapter": "{{@@.book_other.3@text}} {{@@.book_other.2@text}}##[最新章节时间更:]",
"name": "dl > dd > h3 > a@text"
},
"ruleToc": {
"chapterList": ".book_list.1@.row@li||.book_list@.row@li",
"chapterName": "a@text",
"chapterUrl": "http://www.quanbenxiaoshuo.com{{@@a@href}}",
"nextTocUrl": "@js:\nlet all = java.getString(\".pages@.pagination@li.0@text\");\njava.log(\"目录\" + all);\nlet regex = /(\\d+)/g;\nlet c_p = all.match(regex)[1];\n//var p = id.toString().substring(0,2);\n//java.log(c_p);\nlet next_url;\nif ( all == \"1/1\" ) {\n\t next_url = \"\";\n\t} else {\n\t next_url = next(c_p, baseUrl).join(\"\\n\");\n\t}"
},
"searchUrl": "http://www.quanbenxiaoshuo.com/search.php?q={{key}}&p={{page}}",
"weight": 0
},
{
"bookSourceComment": "①\nhttp://api.jmlldsc.com/search?keyword={{key}}&page={{page}}\n②\nhttp://api.lfdapengu.com/search?keyword={{key}}&page={{page}}\n③:http://api.jxgtzxc.com/search?keyword={{key}}&page={{page}}\n④:http://api.lemiyigou.com/search?keyword={{key}}&page={{page}}\n⑤:http://api.myweipin.com/search?keyword={{key}}&page={{page}}",
"bookSourceGroup": "",
"bookSourceName": "猫眼看书",
"bookSourceType": 0,
"bookSourceUrl": "http://api.jmlldsc.com##@曦灵",
"customOrder": 12,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[\n{\"title\": \"男频榜单\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"/module/rank?type=1&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"/module/rank?type=5&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"/module/rank?type=2&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"/module/rank?type=3&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"/module/rank?type=4&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"/module/rank?type=6&channel=1&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男频全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=lejRej\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=nel5aK\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mbk5ez\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=vbmOeY\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=xbojag\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mep2bM\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=zbq2dp\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=YerEdO\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男频完结\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"男频连载\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"玄幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=lejRej&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"武侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=nel5aK&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"都市\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mbk5ez&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"仙侠\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=vbmOeY&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"军事\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=penRe7&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"历史\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=xbojag&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"游戏\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=mep2bM&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"科幻\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=zbq2dp&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"轻小说\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=YerEdO&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频榜单\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"必读榜\",\"url\": \"/module/rank?type=1&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"潜力榜\",\"url\": \"/module/rank?type=5&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"完本榜\",\"url\": \"/module/rank?type=2&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"更新榜\",\"url\": \"/module/rank?type=3&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"搜索榜\",\"url\": \"/module/rank?type=4&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"评论榜\",\"url\": \"/module/rank?type=6&channel=2&page={{page}}\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频全部\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9avmeG\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=DdwRb1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=7ax9by\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=Pdy7aQ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=kazYeJ\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9aAOdv\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频完结\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=1\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"女频连载\",\"url\": \"\",\n\"style\": {\"layout_flexGrow\": 0,\n\"layout_flexBasisPercent\": 1\n}},\n{\"title\": \"现代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9avmeG&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"古代言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=DdwRb1&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"幻想言情\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=7ax9by&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"青春校园\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=Pdy7aQ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"唯美纯爱\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=kazYeJ&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}},\n{\"title\": \"同人衍生\",\"url\": \"/novel?sort=1&page={{page}}&categoryId=9aAOdv&isComplete=0\",\n\"style\": {\"layout_flexGrow\": 1,\n\"layout_flexBasisPercent\": 0.29\n}}\n]",
"header": "{\n'User-Agent': 'okhttp/4.9.2','client-device': '0cdeb38dd0f2a381b06c0a02926ee317','client-brand': 'vivo','client-version': '2.3.0','client-name': 'app.maoyankanshu.novel','client-source': 'android','Authorization': 'bearereyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9hcGkuam1sbGRzYy5jb21cL2F1dGhcL3RoaXJkIiwiaWF0IjoxNzIzNzI2NTkyLCJleHAiOjE4MTcwMzg1OTIsIm5iZiI6MTcyMzcyNjU5MiwianRpIjoiMHJaS05IdlRVelR4Vm15SCIsInN1YiI6ODAyMzcyLCJwcnYiOiJhMWNiMDM3MTgwMjk2YzZhMTkzOGVmMzBiNDM3OTQ2NzJkZDAxNmM1In0.w9vCdsWWqnD5pTz5aluSDb8WxeLZqrZsqX06CYC_J1A'\n}",
"lastUpdateTime": 1755941034458,
"loginUrl": "http://api.jmlldsc.com/auth/me",
"respondTime": 427,
"ruleBookInfo": {
"author": "$.authorName",
"canReName": "",
"coverUrl": "$.cover",
"init": "$.data",
"intro": " \n📕书名:{{$.novelName}}\n👩💻作者:{{$.authorName}}\n🔥热度:{{$.hotInfo}},{{$.readInfo}}人在读\n💮更新:共{{$.chapterNum}}章\n最新章节:{{$.lastChapter.chapterName}}\n更新时间:{{$.lastUpdatedAt}}\n📖简介:{{$.summary}}",
"kind": "$.categoryNames.className",
"lastChapter": "{{$.lastChapter.chapterName}} {{$.lastChapter.decTime}}",
"name": "$.novelName",
"tocUrl": "/novel/{{$.novelId}}/chapters",
"wordCount": "$.wordNum"
},
"ruleContent": {
"content": "$.content",
"replaceRegex": "##.*乐文手机版.*|本书由公众号整理制作.*|7017k|.*69书吧.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "$.authorName",
"bookList": "$.data[*]",
"bookUrl": "/novel/{{$.novelId}}?isSearch=1",
"checkKeyWord": "我不是戏神",
"coverUrl": "$.cover",
"intro": "$.summary",
"kind": "$.categoryNames.className",
"name": "$.novelName",
"wordCount": "$.wordNum"
},
"ruleToc": {
"chapterList": "$.data.list[*]",
"chapterName": "$.chapterName",
"chapterUrl": "$.path@js:java.aesBase64DecodeToString(result,\"f041c49714d39908\",\"AES/CBC/PKCS5Padding\",\"0123456789abcdef\")",
"preUpdateJs": "",
"updateTime": "{{$.updatedAt}} 字数:{{$.wordNum}}"
},
"searchUrl": "http://api.jmlldsc.com/search?keyword={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "肉肉屋",
"bookSourceType": 0,
"bookSourceUrl": "https://www.rourouwu.in",
"customOrder": 13,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": " 分类 \n玄幻奇幻::https://www.rourouwu.in/xuanhuan/{{page}}.html\n武侠仙侠::https://www.rourouwu.in/wuxia/{{page}}.html\n都市言情::https://www.rourouwu.in/dushi/{{page}}.html\n穿越历史::https://www.rourouwu.in/lishi/{{page}}.html\n网游竞技::https://www.rourouwu.in/wangyou/{{page}}.html\n其他类型::https://www.rourouwu.in/qita/{{page}}.html\n完结小说::https://www.rourouwu.in/wanben/{{page}}.html\n 排行榜 \n总点击榜::https://www.rourouwu.in/ph/allvisit_{{page}}.html\n月点击榜::https://www.rourouwu.in/ph/monthvisit_{{page}}.html\n周点击榜::https://www.rourouwu.in/ph/weekvisit_{{page}}.html\n总推荐榜::https://www.rourouwu.in/ph/allvote_{{page}}.html\n月推荐榜::https://www.rourouwu.in/ph/monthvote_{{page}}.html\n周推荐榜::https://www.rourouwu.in/ph/weekvote_{{page}}.html\n 收藏榜 ::https://www.rourouwu.in/ph/goodnum_{{page}}.html\n 字数榜 ::https://www.rourouwu.in/ph/size_{{page}}.html\n最新入库::https://www.rourouwu.in/ph/postdate_{{page}}.html\n最近更新::https://www.rourouwu.in/ph/lastupdate_{{page}}.html",
"lastUpdateTime": 1731820489361,
"respondTime": 841,
"ruleBookInfo": {
"author": ".novelauthor > a@text",
"coverUrl": ".catalog_pic > img@src",
"intro": ".catalognovel_intro@text",
"kind": ".catalognovel_type > .p2@text",
"lastChapter": ".catalognovel_newest > a@text",
"name": ".novelname@text",
"wordCount": ".p3:nth-child(3)@text"
},
"ruleContent": {
"content": ".chapter_content@html",
"replaceRegex": "##可领!|抽红包!|.*公\\s*众\\s*号.*|.*看书领现金.*|.*收集免费好书.*|.*点币红包.*|.*现金红包.*"
},
"ruleExplore": {
"author": ".novel_author > a@text||.p3@text",
"bookList": ".novel_box:nth-child(n+1)||.list_ul > li:nth-child(n+1)",
"bookUrl": ".novel_name > a@href||.p1 > a@href",
"coverUrl": "img@src",
"intro": ".novel_intro@text",
"kind": "h3@text",
"lastChapter": ".novel_newest > a@text||.p2 > a@text",
"name": ".novel_name > a@text||.p1 > a@text",
"wordCount": ".p4@text"
},
"ruleSearch": {
"author": ".p3@text",
"bookList": ".list_ul > li:nth-child(n+1)",
"bookUrl": ".p1 > a@href",
"checkKeyWord": "我的",
"lastChapter": ".p2 > a@text",
"name": ".p1 > a@text",
"wordCount": ".p4@text"
},
"ruleToc": {
"chapterList": ".index_listbox:nth-child(6) li:nth-child(n+1)",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "/modules/article/search.php,{\n\"charset\":\"gbk\",\n\"method\":\"POST\",\n\"body\":\"searchkey={{key}}&type=articlename\"\n}",
"weight": 0
},
{
"bookSourceComment": "@MR.无名",
"bookSourceGroup": "",
"bookSourceName": "看书网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.kanshuw.com",
"customOrder": 15,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "@js: var result = [];\njava.toast(\"🔥动态获取发现中……\");\nvar push=(title,url,size)=>result.push({\n \t\"title\": title,\n \t\"url\": url,\n \t\"style\": {\n \"layout_flexGrow\": 1,\n \"layout_flexBasisPercent\": size\n }\n });\nvar top = java.ajax(\"https://www.kanshuw.com/top/all_0_1.html\");\nvar full = java.ajax(\"https://www.kanshuw.com/full/0_1.html\")\nif (top&&full) {\na=org.jsoup.Jsoup.parse(top).select(\".row\").eq(2);\na=org.jsoup.Jsoup.parse(a).select(\"a\");\nb=org.jsoup.Jsoup.parse(full).select(\".row\").eq(1);\nb=org.jsoup.Jsoup.parse(b).select(\"a\");\nc=org.jsoup.Jsoup.parse(full).select(\".container a\")\npush(\"排行总榜分类\",null,1)\n for(i in a){\n title=a[i].text()\n url=a[i].attr(\"href\")\n if (url.endsWith(\"_1.html\")) {\n url=String(url).replace(/_1\\.html$/,\"_{{page}}.html\")\n size=0.3;\n push(title,url,size)\n }};\n push(\"完本分类\",null,1)\n for(i in b){\n title=b[i].text()\n url=b[i].attr(\"href\")\n if (url.endsWith(\"_1.html\")) {\n url=String(url).replace(/_1\\.html$/,\"_{{page}}.html\")\n size=0.3;\n push(title,url,size)\n }};\n \n push(\"分类\",null,1)\n for(i in c){\n title=c[i].text()\n url=c[i].attr(\"href\")\n if(url.match(/\\/list/)){\n url=url+\"1.html\"\n if (url.endsWith(\"1.html\")) {\n url=String(url).replace(/1\\.html$/,\"{{page}}.html\")\n size=0.3;\n push(title,url,size)\n }}};\n } else { \n java.toast(\"🚫发现获取失败……\");\n}\nJSON.stringify(result);",
"lastUpdateTime": 1733995572472,
"respondTime": 1679,
"ruleBookInfo": {
"author": "class.row book_info@a[0]@text",
"coverUrl": "class.row book_info@img@src",
"init": "",
"intro": "class.row book_info@id.intro_pc@oweText",
"kind": "class.title@a[1]@text",
"lastChapter": "class.row book_info@a[2]@text",
"name": "class.row book_info@h1@text##免费阅读.*",
"tocUrl": ""
},
"ruleContent": {
"content": ".font_max@html##第\\(\\d+/\\d+\\)页",
"nextContentUrl": "text.下一章@href",
"replaceRegex": "##[a-zA-Z0-9-]+[a-zA-Z0-9-].*\\.[a-zA-Z0-9-].*"
},
"ruleExplore": {
"author": "span@text",
"bookList": ".row[-1]@dl",
"bookUrl": "a[0]@href",
"coverUrl": "img@src",
"kind": ".book_other[1]@text",
"lastChapter": ".book_other[-1]@text",
"name": "h3@text##\\[|.*\\]|免费阅读.*"
},
"ruleSearch": {
"author": "span@text",
"bookList": ".row@dl",
"bookUrl": "a[0]@href",
"checkKeyWord": "我的",
"coverUrl": "tag.dt@tag.a@img@src",
"kind": "h3@text##\\[|\\].*",
"lastChapter": "a[-1]@text",
"name": "h3@text##\\[|.*\\]|免费阅读.*"
},
"ruleToc": {
"chapterList": ".row[-1]@a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "class.pages@tag.ul@tag.li.!0:1:-1@tag.a@href"
},
"searchUrl": "/search.php?q={{key}}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "铅笔小说jundu8",
"bookSourceType": 0,
"bookSourceUrl": "http://www.jundu8.com/",
"customOrder": 17,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"exploreUrl": "[\n{\"title\":\"玄幻\",\"url\":\"/class/xuanhuanqihuan/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"武侠\",\"url\":\"/class/wuxiaxiuzhen/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市\",\"url\":\"/class/dushichongsheng/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史\",\"url\":\"/class/lishijunshi/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"网游\",\"url\":\"/class/wangyoujingji/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/class/kehuanchiyuan/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/class/lingyikongbu/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"女生\",\"url\":\"/class/nvshengyanqing/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"全本\",\"url\":\"/quanben/class/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n]",
"lastUpdateTime": 1738792482074,
"respondTime": 1062,
"ruleBookInfo": {
"coverUrl": "#fmimg@img@data-original",
"intro": "#intro@text",
"lastChapter": "class.lastchapter visible-xs@a@text",
"tocUrl": "text.章节目录@href"
},
"ruleContent": {
"content": "#booktxt@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##本章未完,点击下一页继续阅读。|.*热门小说免费阅读.*"
},
"ruleExplore": {
"author": ".s4@text",
"bookList": ".l@ul@li",
"bookUrl": ".s2@a@href",
"coverUrl": ".s2@a@href##.+\\D((\\d+)\\d{3})\\D##http://img.jundu8.com/$2/$1/$1s.jpg###",
"kind": ".s1@text&&.s5@text",
"lastChapter": ".s3@a@text",
"name": ".s2@a@text"
},
"ruleSearch": {
"author": ".btm@a@text",
"bookList": ".item",
"bookUrl": "dl@dt@a@href",
"checkKeyWord": "",
"coverUrl": ".image@a@img@data-original",
"intro": "dd@text",
"kind": ".btm@em.1@text",
"name": "dl@dt@a@text",
"wordCount": ".btm@em.0@text"
},
"ruleToc": {
"chapterList": "#content_1@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)\njava.ajax(url).match(/search.*action=\"(.+?)\"/)[1]}}?searchkey={{key}}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "爱书包网",
"bookSourceType": 0,
"bookSourceUrl": "https://wap.ishubao.org/",
"bookUrlPattern": "https://wap.ishubao.org/\\d+/\\d+/",
"customOrder": 18,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"🔹分类🔹\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"玄幻小说\",\"url\":\"/list/1_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"仙侠小说\",\"url\":\"/list/2_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市小说\",\"url\":\"/list/3_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史小说\",\"url\":\"/list/4_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"游戏小说\",\"url\":\"/list/5_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻小说\",\"url\":\"/list/6_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"恐怖小说\",\"url\":\"/list/7_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.29,\"layout_flexGrow\":-1}},{\"title\":\"全本小说\",\"url\":\"/full/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.29,\"layout_flexGrow\":-1}},{\"title\":\"🔹排行🔹\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},{\"title\":\"日点击榜\",\"url\":\"/top/dayvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周点击榜\",\"url\":\"/top/weekvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月点击榜\",\"url\":\"/top/monthvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总点击榜\",\"url\":\"/top/allvisit_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总收藏榜\",\"url\":\"/top/goodnum_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"字数排行\",\"url\":\"/top/size_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"日推荐榜\",\"url\":\"/top/dayvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"周推荐榜\",\"url\":\"/top/weekvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"月推荐榜\",\"url\":\"/top/monthvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"总推荐榜\",\"url\":\"/top/allvote_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最新入库\",\"url\":\"/top/postdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"最近更新\",\"url\":\"/top/lastupdate_{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
"lastUpdateTime": 1735274425765,
"respondTime": 831,
"ruleBookInfo": {
"author": "@get:{a}",
"coverUrl": "@get:{c}",
"init": "@put:{n:\"[property$=book_name]@content\",\na:\"[property$=author]@content\",\nk:\"[property~=category|status|update_time]@content\",\nl:\"[property~=las?test_chapter_name]@content\",\ni:\"[property$=description]@content\",\nc:\"[property$=image]@content\"}",
"intro": "@get:{i}",
"kind": "@get:{k}",
"lastChapter": "@get:{l}",
"name": "@get:{n}"
},
"ruleContent": {
"content": "#nr1@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##(本章未完,.*|◢随◢梦.*|百度搜索\\:.*|.*页\\)"
},
"ruleExplore": {
"lastChapter": ""
},
"ruleSearch": {
"author": "a.2@text",
"bookList": ".line",
"bookUrl": "a.1@href",
"coverUrl": "a.1@href##/(\\d+)/(\\d+)##https://www.ishubao.org/files/article/image/$1/$2/$2s.jpg###",
"kind": "a.0@text##\\[|\\]",
"name": "a.1@text"
},
"ruleToc": {
"chapterList": ".book_last dl dd a",
"chapterName": "text@js:result.replace(/^(\\d+)[、.]/,'')",
"chapterUrl": "href",
"nextTocUrl": "option@value"
},
"searchUrl": "/s.php,{\n \"body\": \"s={{key}}\",\n \"method\": \"POST\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "饿狼小说",
"bookSourceType": 0,
"bookSourceUrl": "http://m.elkoparts.net",
"customOrder": 20,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"lastUpdateTime": 1732801215174,
"respondTime": 398,
"ruleBookInfo": {
"author": ".top@p.0@text",
"coverUrl": ".imgbox@img@src",
"intro": ".xdesc@textNodes##(^|[。!?]+[”」)】]?)##$1<br>",
"kind": ".top@p.1:2:4@text##.*:|小说|\\s..:.*",
"lastChapter": ".top@a.-1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"name": ".top@h1@text"
},
"ruleContent": {
"content": "id.content@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##.*第[0-9]/[0-9]页.*|.*本章未完.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".s4@text",
"bookList": ".txt-list-row5@li!0",
"bookUrl": "a.0@href",
"coverUrl": "a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.elkoparts.net/files/article/image/$2/$1/$1s.jpg###",
"kind": ".s1,.s5@text##\\[|\\]|小说",
"lastChapter": "a.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"name": "a.0@text"
},
"ruleToc": {
"chapterList": ".section-list@li@a",
"chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.",
"chapterUrl": "href",
"nextTocUrl": ".right@a@href"
},
"searchUrl": "/search.php?keyWord={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "独步小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.dbxsd.com",
"bookUrlPattern": "",
"customOrder": 21,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"玄幻奇幻\",\"url\":\"/nav/xh-qh-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"科幻游戏\",\"url\":\"/nav/kh-yx-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"仙侠武侠\",\"url\":\"/nav/xx-wx-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"女生言情\",\"url\":\"/nav/ns-yq-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"都市娱乐\",\"url\":\"/nav/ds-yl-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"历史军事\",\"url\":\"/nav/ls-js-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"悬疑灵异\",\"url\":\"/nav/xy-ly-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"耽美纯爱\",\"url\":\"/nav/dm-ca-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"成长励志\",\"url\":\"/nav/cz-lz-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"散文随笔\",\"url\":\"/nav/sw-sb-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"轻の小说\",\"url\":\"/nav/qxs-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"国外文学\",\"url\":\"/nav/gwwx-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"文学名著\",\"url\":\"/nav/wxmz-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"现代当代\",\"url\":\"/nav/xddwx-{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},{\"title\":\"\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
"header": "{\n 'User-Agent': 'Mozilla/5.0 (Linux; Android 9; PDBM00 Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.110 Mobile Safari/537.36'\n}",
"lastUpdateTime": 1756897918650,
"loginUrl": "",
"respondTime": 4846,
"ruleBookInfo": {
"author": ".media-body@a.1@text",
"coverUrl": ".book-img-middel@src",
"init": "",
"intro": ".book-detail@text##(^|[。!?]+[”」)】]?)##$1<br>",
"kind": ".col-md-4@text##.*:|\\s..:.*",
"lastChapter": ".media-body@a.2@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"name": ".book-name@a@text",
"wordCount": ""
},
"ruleContent": {
"content": "id.cont-body@html ",
"nextContentUrl": ".page@a@href"
},
"ruleExplore": {
"bookList": ".media",
"bookUrl": "a.1@href",
"coverUrl": "img@src",
"intro": ".media-info@text",
"name": "a.1@text"
},
"ruleSearch": {
"author": "td.1@text",
"bookList": ".table@tbody@tr",
"bookUrl": "a.0@href",
"checkKeyWord": "",
"coverUrl": "a.0@href<js>\nvar id = result.match(/(\\d+)\\/?$/)[1];\n'/uploads/cover/'+id+'s.jpg';\n</js>",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "a.0@text##《|》"
},
"ruleToc": {
"chapterList": "id.all-chapter@div@a",
"chapterName": "text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"chapterUrl": "href"
},
"searchUrl": "/plus/search.php?q={{key}}",
"weight": 0
},
{
"bookSourceComment": "24.10.31",
"bookSourceGroup": "",
"bookSourceName": "88读书网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.88haoshu.com/",
"customOrder": 22,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"exploreUrl": "[\n{\n \"title\":\"༺ˇ»`ʚ分类ɞ´«ˇ༻\",\n \"url\":\"\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":1\n }\n },\n {\n \"title\":\"玄幻\",\n \"url\":\"list/1-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"武侠\",\n \"url\":\"list/2-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"都市\",\n \"url\":\"list/3-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"历史\",\n \"url\":\"list/4-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"科幻\",\n \"url\":\"list/5-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"游戏\",\n \"url\":\"list/6-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"悬疑\",\n \"url\":\"list/7-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"女生\",\n \"url\":\"list/9-{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n ]",
"header": "",
"lastUpdateTime": 1732801230442,
"respondTime": 581,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "🕰 更新时间:\n{{@@[property$=update_time]@content##\\s.*}}\n📜 内容简介:\n{{@@[property$=description]@content}}##(^|[。!?……;]+[”」)】]?)##$1<br>",
"kind": "[property~=category|status|update_time]@content##\\s.*",
"lastChapter": "{{@@[property$=chapter_name]@content##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求含理更谢乐发推票盟补加字].*?[】)\\)]}}•{{@@[property$=update_time]@content##\\s.*}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、.]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
"name": "[property$=book_name]@content"
},
"ruleContent": {
"content": "#content@p@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##.本章完.|{{try{title}catch(e){\"\"} }}"
},
"ruleExplore": {
"author": ".s4@text",
"bookList": ".l@ul@li",
"bookUrl": "a.0@href",
"coverUrl": "a.0@href##.*\\/(\\d+)\\/(\\d+)\\/.*##https://img.88haoshu.com/$1/$2/$2s.jpg",
"kind": ".s1@text&&.s5@text##\\[|\\]",
"lastChapter": ".s3@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求含理更谢乐发推票盟补加字].*?[】)\\)]\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、.]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
"name": ".s2@text"
},
"ruleSearch": {
"author": "td.2@text",
"bookList": "tr!0",
"bookUrl": "a.0@href",
"checkKeyWord": "我的模拟长生路",
"coverUrl": "a.0@href##.*\\/(\\d+)\\/(\\d+)\\/.*##https://img.88haoshu.com/$1/$2/$2s.jpg",
"kind": "td.-1@text",
"lastChapter": "{{@@td.3@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求含理更谢乐发推票盟补加字].*?[】)\\)]}}•{{@@td.-1@text}}\n@js:result\n.replace(\"••\",\"\")\n.replace(/^(\\d+).第/,'第')\n.replace(/^(\\d+)[、.]第.+章/,'第$1章')\n.replace(/^(\\d+)、\\d+、/,'第$1章 ')\n.replace(/^(\\d+)、\\d+/,'第$1章')\n.replace(/^(第.+章)\\s?\\d+/,'$1')\n.replace(/^(\\d+)、/,'第$1章 ')\n.replace(/^(第.+章)\\s?第.+章/,'$1')\n.replace(/第\\s(.+)\\s章/,'第$1章')\n.replace(/.*(chapter|Chapter)\\s?(\\d+)\\s?/,'$1 $2 ')\n.replace(/\\(.+\\)/,'')\n.replace(/\\[|。/,'')\n.replace(/第([零一二两三四五六七八九十百千]+)章/g,java.toNumChapter(result))\n##(章)([^\\s]+)(\\s·)##$1 $2$3",
"name": "td.1@text"
},
"ruleToc": {
"chapterList": "#list@dl@dd@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url);\nurl}}sss/?searchkey={{key}}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "书客吧",
"bookSourceType": 0,
"bookSourceUrl": "http://m.shuke8.dlbeauty.cn",
"customOrder": 23,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[\n {\n \"title\":\"❀分类❀\",\n \"url\":\"/list_f_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":1\n }\n },\n {\n \"title\":\"玄幻魔法\",\n \"url\":\"/list_1_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"其他类型\",\n \"url\":\"/list_2_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"科幻灵异\",\n \"url\":\"/list_4_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"都市言情\",\n \"url\":\"/list_5_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"仙侠修真\",\n \"url\":\"/list_6_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"历史军事\",\n \"url\":\"/list_7_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"网游竞技\",\n \"url\":\"/list_8_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"恐怖惊悚\",\n \"url\":\"/list_9_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"全部类型\",\n \"url\":\"/list_f_f_f_f_f_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"❀排行❀\",\n \"url\":\"\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":1\n }\n },\n {\n \"title\":\"点击\",\n \"url\":\"/list_f_f_f_f_2_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.2\n }\n },\n {\n \"title\":\"时间\",\n \"url\":\"/list_f_f_f_f_3_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n {\n \"title\":\"字数\",\n \"url\":\"/list_f_f_f_f_1_{{page}}.html\",\n \"style\":{\n \"layout_flexGrow\":1,\n \"layout_flexBasisPercent\":0.25\n }\n },\n ]",
"lastUpdateTime": 1730724552312,
"respondTime": 355,
"ruleBookInfo": {
"tocUrl": "class.book-meta book-status@href"
},
"ruleContent": {
"content": "class.chapter-content@html",
"replaceRegex": "##书客吧shuke8.dlbeauty.cn,最快更新.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".book-meta-l@text",
"bookList": "#books-0@.book-li",
"bookUrl": "a.0@href",
"coverUrl": "img@src",
"intro": ".book-desc@text",
"kind": ".book-meta-r@em[0,1]@text",
"name": ".book-title@text",
"wordCount": ".book-meta-r@em.2@text"
},
"ruleToc": {
"chapterList": "#volumes@li@a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "text.下一页@href"
},
"searchUrl": "/list_f_f_f_f_f_{{page}}.html?title={{key}}",
"weight": 0
},
{
"bookSourceComment": "一程大佬书源,\n添加请求头,修复搜索",
"bookSourceGroup": "",
"bookSourceName": "搜搜小说",
"bookSourceType": 0,
"bookSourceUrl": "http://www.soeo.net",
"customOrder": 24,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"玄幻\",\"url\":\"/fenlei/1/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"奇幻\",\"url\":\"/fenlei/2/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"武侠\",\"url\":\"/fenlei/3/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"仙侠\",\"url\":\"/fenlei/4/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/fenlei/5/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"军事\",\"url\":\"/fenlei/6/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"历史\",\"url\":\"/fenlei/7/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"/fenlei/8/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"竞技\",\"url\":\"/fenlei/9/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/fenlei/10/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"悬疑\",\"url\":\"/fenlei/11/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"灵异\",\"url\":\"/fenlei/12/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"其他\",\"url\":\"/fenlei/13/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"古代\",\"url\":\"/fenlei/14/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"仙侠\",\"url\":\"/fenlei/15/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"现代\",\"url\":\"/fenlei/16/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"浪漫\",\"url\":\"/fenlei/17/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"玄幻\",\"url\":\"/fenlei/18/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"悬疑\",\"url\":\"/fenlei/19/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"科幻\",\"url\":\"/fenlei/20/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"游戏\",\"url\":\"/fenlei/21/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"BL\",\"url\":\"/fenlei/22/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"GL\",\"url\":\"/fenlei/23/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},{\"title\":\"二次\",\"url\":\"/fenlei/24/{{page}}/\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}}]",
"header": "@js:\nJSON.stringify({\"Referer\": baseUrl,\n\"X-Requested-With\": \"mark.via\",\n\"Accept-Language\": \"zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7\",\n\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10; PACM00 Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.5359.79 Mobile Safari/537.36\"})",
"lastUpdateTime": 1747539122279,
"loginCheckJs": "",
"respondTime": 2370,
"ruleBookInfo": {
"author": "id.info@a.0@text",
"coverUrl": "id.fmimg@img@data-original",
"intro": "id.intro@text##(^|[。!?]+[”」)】]?)##$1<br>",
"kind": ".con_top@a.1@text&&id.info@p.3:6@text##.*:|小说|\\s..:.*",
"lastChapter": "id.info@a.1@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"name": "id.info@h1@text",
"tocUrl": ".readbtn@a.1@href",
"wordCount": "id.info@p.2@text##.*:"
},
"ruleContent": {
"content": "id.booktxt@p!0@text",
"nextContentUrl": ".bottem1@a.2@href",
"replaceRegex": "##\\(本章完\\)|.*搜搜小说网.*|.*找不到书请留言!"
},
"ruleExplore": {
"author": "a.2@text",
"bookList": ".l[-1]@.item",
"bookUrl": "a.1@href",
"coverUrl": "img@data-original",
"intro": "dd@text",
"kind": "em.1@text",
"name": "a.1@text",
"wordCount": "em.0@text"
},
"ruleSearch": {
"author": "span@text",
"bookList": ".item",
"bookUrl": "a.1@href",
"checkKeyWord": "",
"coverUrl": "img@src",
"intro": "dd@text",
"name": "a.1@text"
},
"ruleToc": {
"chapterList": "id.content_1@a",
"chapterName": "dd@text##正文卷.|正文.|VIP卷.|默认卷.|卷_|VIP章节.|免费章节.|章节目录.|最新章节.|[\\((【].*?[求更票谢乐发订合补加架字修Kk].*?[】)\\)]",
"chapterUrl": "href"
},
"searchUrl": "https://www.sososhu.com/?q={{key}}&site=soeonet,{\n \"headers\": {\n \"Referer\": \"https://www.sososhu.com\"\n },\n \"webView\": true\n}",
"weight": 0
},
{
"bookSourceGroup": "",
"bookSourceName": "顶点小说",
"bookSourceType": 0,
"bookSourceUrl": "http://www.ibooktxt.net ##_By-[曦灵]",
"customOrder": 24,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,