forked from XIU2/Yuedu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshuyuan
1433 lines (1433 loc) · 115 KB
/
shuyuan
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
[
{
"bookSourceName": "起点中文",
"bookSourceUrl": "https://www.qidian.com",
"bookSourceGroup": "正版",
"customOrder": 0,
"bookSourceType": "0",
"bookSourceComment": "",
"loginUrl": "https://passport.qidian.com",
"bookUrlPattern": "",
"header": "",
"searchUrl": "/search?kw={{key}}",
"exploreUrl": "↓ 月 票 榜 ::/rank/yuepiao?style=1&page={{page}}\n ⇦ 风 云 榜 ⇨ ::/rank/fengyun?style=1&page={{page}}\n 热 销 榜 ↓::/rank/hotsales?style=1&page={{page}}\n↓ 阅 读 榜 ::/rank/readIndex?style=1&page={{page}}\n ⇦ 粉 丝 榜 ⇨ ::/rank/newFans?style=1&page={{page}}\n 推 荐 榜 ↓::/rank/recom?style=1&page={{page}}\n↓ 收 藏 榜 ::/rank/collect?style=1&page={{page}}\n ⇦ 更 新 榜 ⇨ ::/rank/vipup?style=1&page={{page}}\n 打 赏 榜 ↓::/rank/vipreward?style=1&page={{page}}\n↓ 三江强推 ::/\n ⇦ 往期三江 ⇨ ::/book/sanjiang?page={{page}}\n 往期强推 ↓::/book/strongrec?page={{page}}\n↓ 签约新书 ::/rank/signnewbook?style=1&page={{page}}\n ⇦ 新人新书 ⇨ ::/rank/newsign?style=1&page={{page}}\n 限时免费 ↓::/free\n↓ 按总收藏 ::/all?style=1&page={{page}}&orderId=11\n ⇦ 男生全部 ⇨ ::/all?style=1&page={{page}}\n 按月推荐 ↓::/all?style=1&page={{page}}&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&action=1&orderId=11\n ⇦ 男生完本 ⇨ ::/all?style=1&page={{page}}&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&vip=0&orderId=11\n ⇦ 男生免费 ⇨ ::/all?style=1&page={{page}}&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=21&orderId=11\n ⇦ 玄幻全部 ⇨ ::/all?style=1&page={{page}}&chanId=21\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=21&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=21&action=1&orderId=11\n ⇦ 玄幻完本 ⇨ ::/all?style=1&page={{page}}&chanId=21&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=21&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=21&vip=0&orderId=11\n ⇦ 玄幻免费 ⇨ ::/all?style=1&page={{page}}&chanId=21&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=21&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=1&orderId=11\n ⇦ 奇幻全部 ⇨ ::/all?style=1&page={{page}}&chanId=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=1&action=1&orderId=11\n ⇦ 奇幻完本 ⇨ ::/all?style=1&page={{page}}&chanId=1&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=1&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=1&vip=0&orderId=11\n ⇦ 奇幻免费 ⇨ ::/all?style=1&page={{page}}&chanId=1&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=1&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=2&orderId=11\n ⇦ 武侠全部 ⇨ ::/all?style=1&page={{page}}&chanId=2\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=2&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=2&action=1&orderId=11\n ⇦ 武侠完本 ⇨ ::/all?style=1&page={{page}}&chanId=2&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=2&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=2&vip=0&orderId=11\n ⇦ 武侠免费 ⇨ ::/all?style=1&page={{page}}&chanId=2&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=2&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=22&orderId=11\n ⇦ 仙侠全部 ⇨ ::/all?style=1&page={{page}}&chanId=22\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=22&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=22&action=1&orderId=11\n ⇦ 仙侠完本 ⇨ ::/all?style=1&page={{page}}&chanId=22&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=22&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=22&vip=0&orderId=11\n ⇦ 仙侠免费 ⇨ ::/all?style=1&page={{page}}&chanId=22&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=22&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=4&orderId=11\n ⇦ 都市全部 ⇨ ::/all?style=1&page={{page}}&chanId=4\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=4&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=4&action=1&orderId=11\n ⇦ 都市完本 ⇨ ::/all?style=1&page={{page}}&chanId=4&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=4&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=4&vip=0&orderId=11\n ⇦ 都市免费 ⇨ ::/all?style=1&page={{page}}&chanId=4&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=4&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=15&orderId=11\n ⇦ 现实全部 ⇨ ::/all?style=1&page={{page}}&chanId=15\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=15&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=15&action=1&orderId=11\n ⇦ 现实完本 ⇨ ::/all?style=1&page={{page}}&chanId=15&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=15&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=15&vip=0&orderId=11\n ⇦ 现实免费 ⇨ ::/all?style=1&page={{page}}&chanId=15&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=15&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=6&orderId=11\n ⇦ 军事全部 ⇨ ::/all?style=1&page={{page}}&chanId=6\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=6&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=6&action=1&orderId=11\n ⇦ 军事完本 ⇨ ::/all?style=1&page={{page}}&chanId=6&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=6&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=6&vip=0&orderId=11\n ⇦ 军事免费 ⇨ ::/all?style=1&page={{page}}&chanId=6&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=6&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=5&orderId=11\n ⇦ 历史全部 ⇨ ::/all?style=1&page={{page}}&chanId=5\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=5&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=5&action=1&orderId=11\n ⇦ 历史完本 ⇨ ::/all?style=1&page={{page}}&chanId=5&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=5&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=5&vip=0&orderId=11\n ⇦ 历史免费 ⇨ ::/all?style=1&page={{page}}&chanId=5&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=5&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=7&orderId=11\n ⇦ 游戏全部 ⇨ ::/all?style=1&page={{page}}&chanId=7\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=7&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=7&action=1&orderId=11\n ⇦ 游戏完本 ⇨ ::/all?style=1&page={{page}}&chanId=7&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=7&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=7&vip=0&orderId=11\n ⇦ 游戏免费 ⇨ ::/all?style=1&page={{page}}&chanId=7&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=7&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=8&orderId=11\n ⇦ 体育全部 ⇨ ::/all?style=1&page={{page}}&chanId=8\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=8&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=8&action=1&orderId=11\n ⇦ 体育完本 ⇨ ::/all?style=1&page={{page}}&chanId=8&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=8&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=8&vip=0&orderId=11\n ⇦ 体育免费 ⇨ ::/all?style=1&page={{page}}&chanId=8&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=8&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=9&orderId=11\n ⇦ 科幻全部 ⇨ ::/all?style=1&page={{page}}&chanId=9\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=9&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=9&action=1&orderId=11\n ⇦ 科幻完本 ⇨ ::/all?style=1&page={{page}}&chanId=9&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=9&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=9&vip=0&orderId=11\n ⇦ 科幻免费 ⇨ ::/all?style=1&page={{page}}&chanId=9&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=9&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=10&orderId=11\n ⇦ 悬疑全部 ⇨ ::/all?style=1&page={{page}}&chanId=10\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=10&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=10&action=1&orderId=11\n ⇦ 悬疑完本 ⇨ ::/all?style=1&page={{page}}&chanId=10&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=10&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=10&vip=0&orderId=11\n ⇦ 悬疑免费 ⇨ ::/all?style=1&page={{page}}&chanId=10&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=10&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=12&orderId=11\n ⇦ 轻小说全 ⇨ ::/all?style=1&page={{page}}&chanId=12\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=12&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=12&action=1&orderId=11\n ⇦ 轻小说完 ⇨ ::/all?style=1&page={{page}}&chanId=12&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=12&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=12&vip=0&orderId=11\n ⇦ 轻小说免 ⇨ ::/all?style=1&page={{page}}&chanId=12&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=12&vip=0&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=20076&orderId=11\n ⇦ 短篇全部 ⇨ ::/all?style=1&page={{page}}&chanId=20076\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=20076&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=20076&action=1&orderId=11\n ⇦ 短篇完本 ⇨ ::/all?style=1&page={{page}}&chanId=20076&action=1\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=20076&action=1&orderId=10\n↓ 按总收藏 ::/all?style=1&page={{page}}&chanId=20076&vip=0&orderId=11\n ⇦ 短篇免费 ⇨ ::/all?style=1&page={{page}}&chanId=20076&vip=0\n 按月推荐 ↓::/all?style=1&page={{page}}&chanId=20076&vip=0&orderId=10\n↓ 月 票 榜 ::/mm/rank/yuepiao?style=1&page={{page}}\n ⇦ 新 书 榜 ⇨ ::/mm/rank/newsales?style=1&page={{page}}\n 阅 读 榜 ↓::/mm/rank/readIndex?style=1&page={{page}}\n↓ 热 销 榜 ::/mm/rank/hotsales?style=1&page={{page}}\n ⇦ 粉 丝 榜 ⇨ ::/mm/rank/newFans?style=1&page={{page}}\n 单 订 榜 ↓::/mm/rank/subscr?style=1&page={{page}}\n↓ 推 荐 榜 ::/mm/rank/recom?style=1&page={{page}}\n ⇦ 收 藏 榜 ⇨ ::/mm/rank/collect?style=1&page={{page}}\n 更 新 榜 ↓::/mm/rank/vipup?style=1&page={{page}}\n↓ 字 数 榜 ::/mm/rank/wordcount?style=1&page={{page}}\n ⇦ 新人新书 ⇨ ::/mm/rank/newsign?style=1&page={{page}}\n 限时免费 ↓::/mm/free\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&orderId=11\n ⇦ 女生全部 ⇨ ::/mm/all?style=1&page={{page}}\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&action=1&orderId=11\n ⇦ 女生完本 ⇨ ::/mm/all?style=1&page={{page}}&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&vip=0&orderId=11\n ⇦ 女生免费 ⇨ ::/mm/all?style=1&page={{page}}&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=80&orderId=11\n ⇦ 古代全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=80\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=80&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=80&action=1&orderId=11\n ⇦ 古代完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=80&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=80&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=80&vip=0&orderId=11\n ⇦ 古代免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=80&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=80&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=81&orderId=11\n ⇦ 仙侠全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=81\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=81&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=81&action=1&orderId=11\n ⇦ 仙侠完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=81&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=81&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=81&vip=0&orderId=11\n ⇦ 仙侠免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=81&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=81&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=82&orderId=11\n ⇦ 现代全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=82\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=82&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=82&action=1&orderId=11\n ⇦ 现代完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=82&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=82&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=82&vip=0&orderId=11\n ⇦ 现代免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=82&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=82&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=83&orderId=11\n ⇦ 青春全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=83\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=83&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=83&action=1&orderId=11\n ⇦ 青春完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=83&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=83&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=83&vip=0&orderId=11\n ⇦ 青春免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=83&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=83&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=84&orderId=11\n ⇦ 玄幻全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=84\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=84&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=84&action=1&orderId=11\n ⇦ 玄幻完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=84&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=84&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=84&vip=0&orderId=11\n ⇦ 玄幻免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=84&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=84&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=85&orderId=11\n ⇦ 悬疑全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=85\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=85&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=85&action=1&orderId=11\n ⇦ 悬疑完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=85&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=85&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=85&vip=0&orderId=11\n ⇦ 悬疑免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=85&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=85&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=30083&orderId=11\n ⇦ 短篇全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=30083\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=30083&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=30083&action=1&orderId=11\n ⇦ 短篇完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=30083&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=30083&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=30083&vip=0&orderId=11\n ⇦ 短篇免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=30083&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=30083&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=86&orderId=11\n ⇦ 科幻全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=86\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=86&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=86&action=1&orderId=11\n ⇦ 科幻完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=86&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=86&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=86&vip=0&orderId=11\n ⇦ 科幻免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=86&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=86&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=88&orderId=11\n ⇦ 游戏全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=88\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=88&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=88&action=1&orderId=11\n ⇦ 游戏完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=88&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=88&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=88&vip=0&orderId=11\n ⇦ 游戏免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=88&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=88&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=87&orderId=11\n ⇦ 轻小说全 ⇨ ::/mm/all?style=1&page={{page}}&chanId=87\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=87&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=87&action=1&orderId=11\n ⇦ 轻小说完 ⇨ ::/mm/all?style=1&page={{page}}&chanId=87&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=87&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=87&vip=0&orderId=11\n ⇦ 轻小说免 ⇨ ::/mm/all?style=1&page={{page}}&chanId=87&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=87&vip=0&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=30120&orderId=11\n ⇦ 生活全部 ⇨ ::/mm/all?style=1&page={{page}}&chanId=30120\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=30120&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=30120&action=1&orderId=11\n ⇦ 生活完本 ⇨ ::/mm/all?style=1&page={{page}}&chanId=30120&action=1\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=30120&action=1&orderId=10\n↓ 按总收藏 ::/mm/all?style=1&page={{page}}&chanId=30120&vip=0&orderId=11\n ⇦ 生活免费 ⇨ ::/mm/all?style=1&page={{page}}&chanId=30120&vip=0\n 按月推荐 ↓::/mm/all?style=1&page={{page}}&chanId=30120&vip=0&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&orderId=11\n ⇦ 出版全部 ⇨ ::/all_pub?style=1&page={{page}}\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&action=1&orderId=11\n ⇦ 出版完本 ⇨ ::/all_pub?style=1&page={{page}}&action=1\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&action=1&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&vip=0&orderId=11\n ⇦ 出版免费 ⇨ ::/all_pub?style=1&page={{page}}&vip=0\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&vip=0&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&chanId=13100&orderId=11\n ⇦ 小说出版 ⇨ ::/all_pub?style=1&page={{page}}&chanId=13100\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&chanId=13100&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&chanId=14300&orderId=11\n ⇦ 青春文学 ⇨ ::/all_pub?style=1&page={{page}}&chanId=14300\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&chanId=14300&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&chanId=13700&orderId=11\n ⇦ 两性关系 ⇨ ::/all_pub?style=1&page={{page}}&chanId=13700\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&chanId=13700&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&chanId=14100&orderId=11\n ⇦ 文学出版 ⇨ ::/all_pub?style=1&page={{page}}&chanId=14100\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&chanId=14100&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&chanId=14400&orderId=11\n ⇦ 历史出版 ⇨ ::/all_pub?style=1&page={{page}}&chanId=14400\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&chanId=14400&orderId=10\n↓ 按总收藏 ::/all_pub?style=1&page={{page}}&chanId=14500&orderId=11\n ⇦ 传记出版 ⇨ ::/all_pub?style=1&page={{page}}&chanId=14500\n 按月推荐 ↓::/all_pub?style=1&page={{page}}&chanId=14500&orderId=10",
"enabled": true,
"enabledExplore": true,
"weight": 0,
"lastUpdateTime": 1617419865271,
"ruleSearch": {
"bookList": "class.book-img-text@tag.li||class.book-list-wrap@class.book-list@tag.li",
"name": "tag.h4@a@text||tag.a.1@text",
"author": "class.author@class.name.0@text||tag.a.2@text||tag.span@text",
"kind": "class.author@tag.a!0@text||tag.a.0@text",
"wordCount": "//*[text()=\"总字数\"]//text()##总字数##字",
"lastChapter": "class.update@a@text##最新更新\\s",
"intro": "class.intro@textNodes",
"coverUrl": "##data-bid=\"([^\"]+)\"##https://bookcover.yuewen.com/qdbimg/349573/$1/180###",
"bookUrl": "##data-bid=\"([^\"]+)\"##https://m.qidian.com/book/$1###"
},
"ruleExplore": {},
"ruleBookInfo": {
"name": "##\"book-title\">([^<]+)</h2##$1###",
"author": "##作者:</aria>([^<]+)<aria##$1###",
"kind": "##\"book-meta\"[^>]+>([^<]+)</p##$1###",
"wordCount": "##\"book-meta\"[^>]+>([^<]+)<span##$1###",
"lastChapter": "##span>连载至([^<]+)##$1###",
"intro": "<js>' ★最近更新:'+result.match(/class=\"gray ell\" [^>]+>([^<]+)<span/)[1]+'★\\n'+result.match(/textarea hidden>([\\W\\w]+?)<\\/texta/)[1]\n</js>",
"tocUrl": "<js>\nvar id = baseUrl.match(/book\\/(\\d+)/)[1];\njava.put('id', id);\n'https://druid.if.qidian.com/argus/api/v1/chapterlist/chapterlist?bookId='+id;\n</js>"
},
"ruleToc": {
"chapterList": ":\\{\"C\":(\\d+),.+?,\"N\":\"(.*?)\"[^T]*T\":(\\d{13})[^V]*V\":(\\d)[^\\}]*",
"chapterName": "$4!$2@js:result.replace(/0!/, '').replace(/1!/, '🔒')",
"chapterUrl": "https://vipreader.qidian.com/chapter/@get:{id}/$1",
"updateTime": "<js>java.timeFormat($3)</js>"
},
"ruleContent": {
"content": "class.read-content@html"
}
},
{
"bookSourceName": "九桃",
"bookSourceUrl": "https://www.9txs.org",
"bookSourceGroup": "推荐",
"customOrder": 1,
"bookSourceType": 0,
"bookSourceComment": "",
"bookUrlPattern": "",
"enabled": true,
"enabledExplore": true,
"exploreUrl": "总点击榜::https://www.9txs.org/top/allvisit/{{page}}.html\n月点击榜::https://www.9txs.org/top/monthvisit/{{page}}.html\n周点击榜::https://www.9txs.org/top/weekvisit/{{page}}.html\n总推荐榜::https://www.9txs.org/top/allvote/{{page}}.html\n月推荐榜::https://www.9txs.org/top/monthvote/{{page}}.html\n周推荐榜::https://www.9txs.org/top/weekvote/{{page}}.html\n总收藏榜::https://www.9txs.org/top/goodnum/{{page}}.html\n总字数榜::https://www.9txs.org/top/size/{{page}}.html\n强推榜::https://www.9txs.org/top/toptime/{{page}}.html\n新书榜::https://www.9txs.org/top/goodnew/{{page}}.html\n最新入库::https://www.9txs.org/top/postdate/{{page}}.html\n最近更新::https://www.9txs.org/top/lastupdate/{{page}}.html\n玄幻奇幻 • 全部::https://www.9txs.org/library/0_1_0_{{page}}.html\n玄幻奇幻 • 连载::https://www.9txs.org/library/0_1_1_{{page}}.html\n玄幻奇幻 • 完结::https://www.9txs.org/library/0_1_2_{{page}}.html\n武侠修真 • 全部::https://www.9txs.org/library/0_2_0_{{page}}.html\n武侠修真 • 连载::https://www.9txs.org/library/0_2_1_{{page}}.html\n武侠修真 • 完结::https://www.9txs.org/library/0_2_2_{{page}}.html\n都市生活 • 全部::https://www.9txs.org/library/0_3_0_{{page}}.html\n都市生活 • 连载::https://www.9txs.org/library/0_3_1_{{page}}.html\n都市生活 • 完结::https://www.9txs.org/library/0_3_2_{{page}}.html\n历史军事 • 全部::https://www.9txs.org/library/0_4_0_{{page}}.html\n历史军事 • 连载::https://www.9txs.org/library/0_4_1_{{page}}.html\n历史军事 • 完结::https://www.9txs.org/library/0_4_2_{{page}}.html\n游戏竞技 • 全部::https://www.9txs.org/library/0_5_0_{{page}}.html\n游戏竞技 • 连载::https://www.9txs.org/library/0_5_1_{{page}}.html\n游戏竞技 • 完结::https://www.9txs.org/library/0_5_2_{{page}}.html\n科幻未来 • 全部::https://www.9txs.org/library/0_6_0_{{page}}.html\n科幻未来 • 连载::https://www.9txs.org/library/0_6_1_{{page}}.html\n科幻未来 • 完结::https://www.9txs.org/library/0_6_2_{{page}}.html\n悬疑灵异 • 全部::https://www.9txs.org/library/0_7_0_{{page}}.html\n悬疑灵异 • 连载::https://www.9txs.org/library/0_7_1_{{page}}.html\n悬疑灵异 • 完结::https://www.9txs.org/library/0_7_2_{{page}}.html\n二 次 元 • 全部::https://www.9txs.org/library/0_8_0_{{page}}.html\n二 次 元 • 连载::https://www.9txs.org/library/0_8_1_{{page}}.html\n二 次 元 • 完结::https://www.9txs.org/library/0_8_2_{{page}}.html\n经典短篇 • 全部::https://www.9txs.org/library/0_9_0_{{page}}.html\n经典短篇 • 连载::https://www.9txs.org/library/0_9_1_{{page}}.html\n经典短篇 • 完结::https://www.9txs.org/library/0_9_2_{{page}}.html\n古代言情 • 全部::https://www.9txs.org/library/0_10_0_{{page}}.html\n古代言情 • 连载::https://www.9txs.org/library/0_10_1_{{page}}.html\n古代言情 • 完结::https://www.9txs.org/library/0_10_2_{{page}}.html\n现代言情 • 全部::https://www.9txs.org/library/0_11_0_{{page}}.html\n现代言情 • 连载::https://www.9txs.org/library/0_11_1_{{page}}.html\n现代言情 • 完结::https://www.9txs.org/library/0_11_2_{{page}}.html\n幻想奇缘 • 全部::https://www.9txs.org/library/0_12_0_{{page}}.html\n幻想奇缘 • 连载::https://www.9txs.org/library/0_12_1_{{page}}.html\n幻想奇缘 • 完结::https://www.9txs.org/library/0_12_2_{{page}}.html\n浪漫青春 • 全部::https://www.9txs.org/library/0_13_0_{{page}}.html\n浪漫青春 • 连载::https://www.9txs.org/library/0_13_1_{{page}}.html\n浪漫青春 • 完结::https://www.9txs.org/library/0_13_2_{{page}}.html\n网络情缘 • 全部::https://www.9txs.org/library/0_14_0_{{page}}.html\n网络情缘 • 连载::https://www.9txs.org/library/0_14_1_{{page}}.html\n网络情缘 • 完结::https://www.9txs.org/library/0_14_2_{{page}}.html\n科幻空间 • 全部::https://www.9txs.org/library/0_15_0_{{page}}.html\n科幻空间 • 连载::https://www.9txs.org/library/0_15_1_{{page}}.html\n科幻空间 • 完结::https://www.9txs.org/library/0_15_2_{{page}}.html\n恐怖灵异 • 全部::https://www.9txs.org/library/0_16_0_{{page}}.html\n恐怖灵异 • 连载::https://www.9txs.org/library/0_16_1_{{page}}.html\n恐怖灵异 • 完结::https://www.9txs.org/library/0_16_2_{{page}}.html\nN 次 元 • 全部::https://www.9txs.org/library/0_17_0_{{page}}.html\nN 次 元 • 连载::https://www.9txs.org/library/0_17_1_{{page}}.html\nN 次 元 • 完结::https://www.9txs.org/library/0_17_2_{{page}}.html\n言情美文 • 全部::https://www.9txs.org/library/0_18_0_{{page}}.html\n言情美文 • 连载::https://www.9txs.org/library/0_18_1_{{page}}.html\n言情美文 • 完结::https://www.9txs.org/library/0_18_2_{{page}}.html\n其他类型 • 全部::https://www.9txs.org/library/0_19_0_{{page}}.html\n其他类型 • 连载::https://www.9txs.org/library/0_19_1_{{page}}.html\n其他类型 • 完结::https://www.9txs.org/library/0_19_2_{{page}}.html",
"lastUpdateTime": 1614589910917,
"loginUrl": "https://www.9txs.org/login.html",
"ruleBookInfo": {
"author": "",
"coverUrl": "",
"intro": "",
"kind": "class.detail@tag.p.0@tag.a.1@text%%class.detail@tag.p@text##.*字数.",
"lastChapter": "",
"name": "",
"tocUrl": "##more\"[^\"]*\"([^\"]+)\">查看##$1##"
},
"ruleContent": {
"content": "@css:#content@html##您可以在百度里搜索.*查找最新章节!",
"imageStyle": "Full",
"nextContentUrl": ""
},
"ruleExplore": {
"author": "class.author@text||tag.p.1@tag.a.0@text##全文免费阅读|全文阅读免费|阅读免费全文",
"bookList": "class.list@ul@li||class.library@ul@li",
"bookUrl": "class.bookname.0@href||tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "class.intro@text",
"kind": "",
"lastChapter": "class.chapter@tag.a@text##最新章节:",
"name": "class.bookname@text||tag.a.1@text##\\[.*\\]"
},
"ruleSearch": {
"author": "class.author@text",
"bookList": "@css:.library>li:lt(10)",
"bookUrl": "class.bookname@href",
"coverUrl": "tag.img@src",
"intro": "class.intro@text",
"kind": "@css:p:not([class]),span@text<js>\nString(result).replace(/作者.*?\\|/g,'').replace('|',',')</js>",
"lastChapter": "class.chapter@text##.*?章\\s(\\d+\\..*)##$1<js>\nString(result).replace(/最新章节:/,'')</js>",
"name": "class.bookname@text##免费阅读.*|最新章节"
},
"ruleToc": {
"chapterList": "+@css:.read>dl:nth-of-type(n+2) a",
"chapterName": "text##章\\s\\d+\\.##章",
"chapterUrl": "href",
"nextTocUrl": "",
"updateTime": ""
},
"searchUrl": "https://so.9txs.org/www/,{\n\"charset\": \"UTF-8\",\n\"method\": \"POST\",\n\"body\": \"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceName": "有兔",
"bookSourceUrl": "https://app.youzibank.com",
"bookSourceGroup": "推荐",
"customOrder": 2,
"bookSourceType": 0,
"bookSourceComment": "",
"bookUrlPattern": "",
"enabled": true,
"enabledExplore": true,
"exploreUrl": "玄幻*热门::/book/list?gender=-1&clsIdFirst=1&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n玄幻*日更::/book/list?gender=-1&clsIdFirst=1&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n奇幻*热门::/book/list?gender=-1&clsIdFirst=2&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n奇幻*日更::/book/list?gender=-1&clsIdFirst=2&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n武侠*热门::/book/list?gender=-1&clsIdFirst=3&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n武侠*日更::/book/list?gender=-1&clsIdFirst=3&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n仙侠*热门::/book/list?gender=-1&clsIdFirst=4&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n仙侠*日更::/book/list?gender=-1&clsIdFirst=4&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n都市*热门::/book/list?gender=-1&clsIdFirst=5&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n都市*日更::/book/list?gender=-1&clsIdFirst=5&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n校园*热门::/book/list?gender=-1&clsIdFirst=6&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n校园*日更::/book/list?gender=-1&clsIdFirst=6&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n历史*热门::/book/list?gender=-1&clsIdFirst=7&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n历史*日更::/book/list?gender=-1&clsIdFirst=7&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n军事*热门::/book/list?gender=-1&clsIdFirst=8&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n军事*日更::/book/list?gender=-1&clsIdFirst=8&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n游戏*热门::/book/list?gender=-1&clsIdFirst=9&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n游戏*日更::/book/list?gender=-1&clsIdFirst=9&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n竞技*热门::/book/list?gender=-1&clsIdFirst=10&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n竞技*日更::/book/list?gender=-1&clsIdFirst=10&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n科幻*热门::/book/list?gender=-1&clsIdFirst=11&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n科幻*日更::/book/list?gender=-1&clsIdFirst=11&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n耽美*热门::/book/list?gender=-1&clsIdFirst=128&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n耽美*日更::/book/list?gender=-1&clsIdFirst=128&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n其他*热门::/book/list?gender=-1&clsIdFirst=116&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n其他*日更::/book/list?gender=-1&clsIdFirst=116&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n推理悬疑*热门::/book/list?gender=-1&clsIdFirst=17&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n推理悬疑*日更::/book/list?gender=-1&clsIdFirst=17&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n恐怖惊悚*热门::/book/list?gender=-1&clsIdFirst=84&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n恐怖惊悚*日更::/book/list?gender=-1&clsIdFirst=84&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n有兔怪谈*热门::/book/list?gender=-1&clsIdFirst=112&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n有兔怪谈*日更::/book/list?gender=-1&clsIdFirst=112&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n现代言情*热门::/book/list?gender=-1&clsIdFirst=12&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n现代言情*日更::/book/list?gender=-1&clsIdFirst=12&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n古代言情*热门::/book/list?gender=-1&clsIdFirst=13&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n古代言情*日更::/book/list?gender=-1&clsIdFirst=13&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n幻想言情*热门::/book/list?gender=-1&clsIdFirst=14&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n幻想言情*日更::/book/list?gender=-1&clsIdFirst=14&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n青春校园*热门::/book/list?gender=-1&clsIdFirst=15&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n青春校园*日更::/book/list?gender=-1&clsIdFirst=15&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n同人作品*热门::/book/list?gender=-1&clsIdFirst=16&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n同人作品*日更::/book/list?gender=-1&clsIdFirst=16&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n次元专区*热门::/book/list?gender=-1&clsIdFirst=18&pageNo={{page}}&orderBy=read_cnt&fullFlag=0&clsIdSecond=\n次元专区*日更::/book/list?gender=-1&clsIdFirst=18&pageNo={{page}}&orderBy=last_serialize_date&fullFlag=0&clsIdSecond=\n人气榜单::/popular/detail?pageNo={{page}}&type=1\n收藏榜单::/popular/detail?pageNo={{page}}&type=5\n男频榜单::/popular/detail?pageNo={{page}}&type=3\n女频榜单::/popular/detail?pageNo={{page}}&type=2\n完本榜单::/popular/detail?pageNo={{page}}&type=4\n特别推荐::/book/list?pageNo={{page}}&selectionModuleId=1\n火爆好书::/book/list?pageNo={{page}}&selectionModuleId=4\n日更作品::/book/list?orderBy=last_serialize_date&fullFlag=1&pageNo={{page}}\n边谈恋爱边破案*超赞::/book/list?pageNo={{page}}&selectionModuleId=36\n人气佳作*中毒不可自拔::/book/list?pageNo={{page}}&selectionModuleId=19",
"header": "{\"Seq\":\"11111111111111111111111111111111\"}",
"lastUpdateTime": 0,
"loginUrl": "",
"ruleBookInfo": {
"author": "",
"coverUrl": "",
"init": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "",
"tocUrl": "",
"wordCount": ""
},
"ruleContent": {
"content": "@js:result.replace(/\\W紧急通告.*?com\\W.*永不丢失./,\"\")",
"imageStyle": "0",
"nextContentUrl": "",
"sourceRegex": "",
"webJs": ""
},
"ruleExplore": {
"author": "",
"bookList": "",
"bookUrl": "",
"coverUrl": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "",
"wordCount": ""
},
"ruleSearch": {
"author": "@json:$.author",
"bookList": "@json:$.data",
"bookUrl": "@json:https://app.youzibank.com/book/chapter/listAll?bookId={$.id}",
"coverUrl": "@json:https://book.chengxinqinye.com/book{$.photoPath}",
"intro": "@json:$.intro",
"kind": "@json:$.clsName",
"lastChapter": "@json:https://app.youzibank.com/book/chapter/list?bookId={$.id}&pageNo={$.chapterCnt}&pageSize=1<js>JSON.parse(java.ajax(result))</js>@json:$.data[0].name",
"name": "@json:$.name<js>result.replace(/(.*/,\"\")</js>",
"wordCount": "@json:$.wordCnt"
},
"ruleToc": {
"chapterList": "@json:$.data",
"chapterName": "@json:$.name",
"chapterUrl": "@json:https://book.chengxinqinye.com/book{$.filePath}",
"isVip": "",
"nextTocUrl": "",
"updateTime": ""
},
"searchUrl": "/es/search/book?q={{key}}&pageNo={{page}}&pageSize=10",
"weight": 0
},
{
"bookSourceName": "E小说",
"bookSourceUrl": "https://www.zwda.com",
"bookSourceGroup": "推荐",
"customOrder": 3,
"bookSourceType": "0",
"bookSourceComment": "",
"loginUrl": "https://www.zwda.com/login.php?action=login",
"bookUrlPattern": "",
"header": "",
"searchUrl": "/search.php?q={{key}}",
"exploreUrl": "",
"enabled": true,
"enabledExplore": true,
"weight": 0,
"lastUpdateTime": 1619625317256,
"ruleSearch": {
"bookList": "//div[@class=\"result-item result-game-item\"]",
"name": "class.result-item-title.0@tag.a.0@text##免费阅读全文",
"author": "class.result-game-item-info-tag.0@tag.span.1@text",
"kind": "class.result-game-item-info-tag.1@tag.span.1@text&&tag.p.3@text",
"lastChapter": "class.result-game-item-info-tag.3@tag.a.0@text##章\\s+\\d+\\.##章",
"intro": "class.result-game-item-desc@tag.p@text",
"coverUrl": "tag.img.0@src",
"bookUrl": "class.result-item-title.0@tag.a.0@href"
},
"ruleExplore": {},
"ruleBookInfo": {},
"ruleToc": {
"chapterList": "id.list@tag.dd",
"chapterName": "tag.a.0@text",
"chapterUrl": "tag.a.0@href"
},
"ruleContent": {
"content": "id.content@textNodes##正在手打.*稍等片刻.*更新|\\(www\\..*?E小说.*?高速.*?在线阅读.|\\[.*?\\swww\\..*?\\..*?]|\\?+|w.+m|E.{0,10}小.{0,10}说|壹.{0,10}小.{0,10}说",
"imageStyle": "0"
}
},
{
"bookSourceName": "顶点小说 booktxt.net",
"bookSourceUrl": "https://www.booktxt.net",
"bookSourceGroup": "推荐",
"customOrder": 4,
"bookSourceType": 0,
"bookUrlPattern": "",
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\"\n }",
"lastUpdateTime": 0,
"loginUrl": "https://www.booktxt.net/user/login.php",
"ruleBookInfo": {
"author": "id.info@tag.p.0@text##作 者:",
"coverUrl": "id.fmimg@tag.img@src",
"init": "",
"intro": "id.intro@tag.p@text",
"kind": "",
"lastChapter": "id.list@tag.dl@tag.dd.0@text",
"name": "id.info@tag.h1@text",
"tocUrl": "<js>\nvar booktxt_index = baseUrl.lastIndexOf(\"\\/\");\nbooktxt_str = baseUrl.substring(booktxt_index + 1, baseUrl.length);\nbooktxt_str1 = booktxt_str.substring(0, booktxt_str.length-3);\nif (booktxt_str1==\"\") booktxt_str1=\"0\";\n'https://www.booktxt.net/'+booktxt_str1+'_'+booktxt_str+'/'\n</js>",
"wordCount": ""
},
"ruleContent": {
"content": "id.content@html##请记住本书首发域名:booktxt.net。顶点小说手机版阅读网址:m.booktxt.net",
"nextContentUrl": "",
"sourceRegex": "",
"webJs": ""
},
"ruleExplore": {
"author": "",
"bookList": "",
"bookUrl": "",
"coverUrl": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "",
"wordCount": ""
},
"ruleSearch": {
"author": "class.s4@text",
"bookList": "class.search-list@tag.ul@tag.li!0",
"bookUrl": "class.s2@tag.a@href",
"coverUrl": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "class.s2@tag.a@text",
"wordCount": ""
},
"ruleToc": {
"chapterList": "id.list@tag.dl@tag.dd!0:1:2:3:4:5",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href",
"isVip": "",
"nextTocUrl": "",
"updateTime": ""
},
"searchUrl": "https://so.biqusoso.com/s1.php?ie=utf-8&siteid=booktxt.net&q={{key}}",
"weight": 0
},
{
"bookSourceName": "武林中文网 .net",
"bookSourceUrl": "https://www.50zw.net",
"bookSourceGroup": "推荐",
"customOrder": 5,
"bookSourceType": 0,
"enabled": true,
"enabledExplore": false,
"lastUpdateTime": 0,
"ruleBookInfo": {
"init": "",
"name": "",
"author": "",
"kind": "",
"wordCount": "",
"lastChapter": "",
"intro": "class.intro@class.jieshao@textNodes",
"coverUrl": "class.liebiao_top@class.intro@tag.img.0@src",
"tocUrl": ""
},
"ruleContent": {
"content": "id.neirong@textNodes##一秒.*阅读!",
"nextContentUrl": "",
"webJs": "",
"sourceRegex": ""
},
"ruleExplore": {
"bookList": "",
"name": "",
"author": "",
"kind": "",
"wordCount": "",
"lastChapter": "",
"intro": "",
"coverUrl": "",
"bookUrl": ""
},
"ruleSearch": {
"bookList": "class.grid@tag.tr!0||class.liebiao_top",
"name": "class.odd.0@tag.a.0@text||class.intro@tag.li.0@tag.h2.0@text",
"author": "class.odd.1@text||class.intro@tag.li.1@tag.span.0@text",
"kind": "class.even.2@text||class.intro@tag.li.1@tag.span.1@text",
"wordCount": "",
"lastChapter": "class.even.0@tag.a.0@text||class.intro@tag.li.2@tag.a.0@text",
"intro": "",
"coverUrl": "class.intro@tag.img.0@src",
"bookUrl": "class.odd.0@tag.a.0@href"
},
"ruleToc": {
"chapterList": "class.liebiao_bottom@tag.dd@tag.a",
"chapterName": "text",
"chapterUrl": "href",
"isVip": "",
"updateTime": "",
"nextTocUrl": ""
},
"searchUrl": "https://www.50zw.net/modules/article/search.php?searchkey={{key}},{\n \"charset\": \"gbk\"\n}",
"weight": 0
},
{
"bookSourceName": "笔趣阁 mibaoge",
"bookSourceUrl": "https://www.mibaoge.com",
"bookSourceGroup": "推荐",
"customOrder": 6,
"bookSourceType": 0,
"loginUrl": "",
"bookUrlPattern": "",
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko, By Black Prism) Chrome/99.0 Safari/537.36\"\n}",
"searchUrl": "https://www.mibaoge.com/search.php?q={{key}}",
"exploreUrl": "",
"enabled": true,
"enabledExplore": false,
"weight": 0,
"lastUpdateTime": 0,
"ruleSearch": {
"bookList": "class.result-item",
"name": "class.result-item-title.0@tag.a.0@text",
"author": "class.result-game-item-info-tag.0@tag.span.1@text",
"kind": "class.result-game-item-info-tag.1@tag.span.1@text",
"wordCount": "",
"lastChapter": "class.result-game-item-info-tag.3@tag.a.0@text",
"intro": "",
"coverUrl": "tag.img.0@src",
"bookUrl": "class.result-item-title.0@tag.a.0@href"
},
"ruleExplore": {
"bookList": "",
"name": "",
"author": "",
"kind": "",
"wordCount": "",
"lastChapter": "",
"intro": "",
"coverUrl": "",
"bookUrl": ""
},
"ruleBookInfo": {
"init": "",
"name": "class.box_con.0@id.info@tag.h1.0@text",
"author": "class.box_con.0@id.info@tag.p.0@text",
"kind": "",
"wordCount": "",
"lastChapter": "",
"intro": "id.intro@tag.p.0@text",
"coverUrl": "id.fmimg@tag.img.0@src",
"tocUrl": ""
},
"ruleToc": {
"chapterList": "id.list@tag.dd",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href",
"isVip": "",
"updateTime": "",
"nextTocUrl": ""
},
"ruleContent": {
"content": "id.content@textNodes",
"nextContentUrl": "",
"webJs": "",
"sourceRegex": ""
}
},
{
"bookSourceName": "猪猪岛小说网",
"bookSourceUrl": "http://www.zzdxss.com",
"bookSourceGroup": "",
"customOrder": 7,
"bookSourceType": "0",
"bookSourceComment": "",
"loginUrl": "",
"bookUrlPattern": "",
"header": "",
"searchUrl": "/plus/search.php?kwtype=0&searchtype=&q={{key}}",
"exploreUrl": "",
"enabled": true,
"enabledExplore": false,
"weight": 0,
"lastUpdateTime": 1620787383879,
"ruleSearch": {
"bookList": "class.ul_b_list.0@children",
"name": "tag.h2.0@tag.a.0@text",
"author": "class.state.0@tag.a.0@text",
"kind": "tag.h2.0@tag.span.0@text",
"lastChapter": "class.arcurl.0@text",
"intro": "class.state.0@tag.p.2@text",
"coverUrl": "tag.img.0@src",
"bookUrl": "class.state.0@tag.a.0@href"
},
"ruleExplore": {},
"ruleBookInfo": {
"name": "class.title.0@tag.h1.0@text",
"author": "class.Left.0@class.info.0@tag.a.0@text",
"kind": "class.Left.0@class.info.0@class.lb.0@tag.a.0@text",
"wordCount": "id.cms_ready_1.0@text",
"lastChapter": "class.words.0@tag.a.0@href",
"intro": "class.words.0@tag.p.0@text",
"coverUrl": "class.Left.0@class.pic.0@tag.img.0@src"
},
"ruleToc": {
"chapterList": "class.list_box.0@tag.li",
"chapterName": "tag.a.0@text",
"chapterUrl": "tag.a.0@href"
},
"ruleContent": {
"content": "class.box_box@textNodes",
"imageStyle": "0"
}
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "排行",
"bookSourceType": 0,
"bookSourceUrl": "http://ku.mumuceo.com",
"bookUrlPattern": "",
"customOrder": 8,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "❀ 【 起点数据网 】 ❀::http://ku.mumuceo.com\n总榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1194\n玄幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1195\n奇幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1196\n武侠::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1197\n仙侠::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1198\n都市::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1199\n现实::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1200\n历史::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1201\n军事::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1202\n游戏::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1203\n体育::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1204\n科幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1205\n灵异::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1206\n二次元::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1207\n ❀ 【 起点男生榜 】 ❀::http://ku.mumuceo.com\n【 新人月票榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1224\n【 新人新书榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1192\n【 24小时热销榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1162\n❀ 【 起点女生榜 】 ❀::http://ku.mumuceo.com\n【 新人月票榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1227\n【 24小时热销榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1163\n【 24小时首订榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1193\n\n❀ 【 橙瓜评分榜 】 ❀::http://ku.mumuceo.com\n玄幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1171\n奇幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1172\n武侠::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1173\n仙侠::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1174\n都市::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1175\n职场::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1176\n军事::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1177\n历史::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1178\n游戏::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1179\n体育::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1180\n科幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1181\n灵异::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1182\n悬疑::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1183\n言情::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1184\n二次元::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1185\n见证·网络文学20年百强作品评选中::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1170\n❀ 【 橙瓜连载榜 】 ❀::http://ku.mumuceo.com\n总榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1208\n玄幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1209\n奇幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1210\n武侠::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1211\n仙侠::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1212\n都市::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1213\n职场::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1214\n军事::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1215\n历史::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1216\n游戏::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1217\n体育::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1218\n科幻::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1219\n灵异::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1220\n悬疑::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1221\n言情::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1222\n二次元::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1223\n第四届网络文学奖::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10026\n\n❀ 【 创世中文网 】 ❀::http://ku.mumuceo.com\n【 创世销售榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1228\n【 全平台销售榜】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1160\n\n❀ 【 云起书院 】 ❀::http://ku.mumuceo.com\n 【 云起销售榜 】 ::http://ku.mumuceo.com\n周榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10023\n月榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10024\n总榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10025\n 【 全平台销售榜 】 ::http://ku.mumuceo.com\n周榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10001\n月榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10002\n总榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10003\n\n❀ 【 纵横中文网 】 ❀::http://ku.mumuceo.com\n【 月票榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1263\n【 新书订阅榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1262\n【 24小时畅销榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1159\n\n❀ 【 17K小说网 】 ❀::http://ku.mumuceo.com\n 【 全站订阅榜 】 ::http://ku.mumuceo.com\n周榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10004\n月榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10005\n 【 男生订阅榜 】 ::http://ku.mumuceo.com\n周榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10006\n月榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10007\n 【 女生订阅榜 】 ::http://ku.mumuceo.com\n周榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10008\n月榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=10009\n\n❀ 【 晋江文学城 】 ❀::http://ku.mumuceo.com\n【 言情小说-VIP金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1154\n 【 纯爱/无cp-VIP金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1155\n 【 衍生/轻小说-VIP金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1156\n 【 原创小说-VIP金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1157\n 【 言情小说-完结金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1264\n 【 言情小说-千字金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1265\n 【 纯爱/无cp-完结金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1266\n 【 纯爱/无cp-千字金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1267\n 【 原创小说-完结金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1270\n 【 原创小说-千字金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1271\n 【 衍生/轻小说-完结金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1268\n 【 衍生/轻小说-千字金榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1269\n\n❀ 【掌阅iReader】 ❀::http://ku.mumuceo.com\n【 男生热销榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1300\n 【 女生热销榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1301\n 【 男生包月榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1302\n 【 女生包月榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1303\n\n❀ 【 逐浪小说网 】 ❀::http://ku.mumuceo.com\n【 鲜花榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1310\n【 PC热销榜 】::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1189\n\n ❀ 【 红袖添香 】 ❀::http://ku.mumuceo.com\n日榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1230\n周榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1231\n月榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1232\n月票榜::http://106.75.166.106:9997/data/rank/new?page={{page}}&page_size=100&ver=v1&menu_id=1233",
"header": "",
"lastUpdateTime": 1614589937739,
"loginUrl": "",
"ruleBookInfo": {
"author": "",
"coverUrl": "",
"init": "",
"intro": "class.b_details@text",
"kind": "class.b_detail@tag.p.1@tag.span@text",
"lastChapter": "",
"name": "",
"tocUrl": "",
"wordCount": ""
},
"ruleContent": {
"content": "@js:'此书源仅提供榜单数据,您可以点击[换源]按钮切换书源即可阅读。'",
"imageStyle": "0",
"nextContentUrl": "",
"sourceRegex": "",
"webJs": ""
},
"ruleExplore": {
"author": "$.author_name",
"bookList": "$.result.rank",
"bookUrl": "http://www.chenggua.com/rendering/taoshu/book/detail.html?buid={{$.book_unique}}",
"coverUrl": "$.book_avatar",
"intro": "@js:'本接口仅提供榜单数据,您可以点击书籍详细页面 [换源] 即可进行阅读 ! ! ! '",
"kind": "$.category",
"lastChapter": "",
"name": "$.book_name",
"wordCount": ""
},
"ruleSearch": {
"author": "",
"bookList": "",
"bookUrl": "",
"coverUrl": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "",
"wordCount": ""
},
"ruleToc": {
"chapterList": "class.bookName",
"chapterName": "text",
"chapterUrl": " ",
"isVip": "",
"nextTocUrl": "",
"updateTime": ""
},
"searchUrl": "",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "斋书苑",
"bookSourceType": 0,
"bookSourceUrl": "https://m.zhaishuyuan.com",
"bookUrlPattern": "https://m.zhaishuyuan.com/book/.*",
"customOrder": 9,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "男生书库::/shuku/0_1_0_0_0_{{page}}_0_1\n男频连载::/shuku/0_2_0_0_0_{{page}}_0_1\n男频完结::/shuku/0_3_0_0_0_{{page}}_0_1\n添加时间::/shuku/11_1_0_0_8_{{page}}_0_1\n总点击榜::/shuku/0_1_0_0_2_{{page}}_0_1\n月点击榜::/shuku/0_1_0_0_5_{{page}}_0_1\n周点击榜::/shuku/0_1_0_0_4_{{page}}_0_1\n总推荐榜::/shuku/0_1_0_0_1_{{page}}_0_1\n月推荐榜::/shuku/0_1_0_0_7_{{page}}_0_1\n周推荐榜::/shuku/0_1_0_0_6_{{page}}_0_1\n总收藏榜::/shuku/0_1_0_0_3_{{page}}_0_1\n总字数榜::/shuku/0_1_0_0_9_{{page}}_0_1\n玄幻奇幻::/shuku/1_1_0_0_0_{{page}}_0_1\n玄幻总点::/shuku/1_1_0_0_2_{{page}}_0_1\n玄幻月点::/shuku/1_1_0_0_5_{{page}}_0_1\n玄幻周点::/shuku/1_1_0_0_4_{{page}}_0_1\n玄幻总推::/shuku/1_1_0_0_1_{{page}}_0_1\n玄幻月推::/shuku/1_1_0_0_7_{{page}}_0_1\n玄幻周推::/shuku/1_1_0_0_6_{{page}}_0_1\n玄幻总收::/shuku/1_1_0_0_3_{{page}}_0_1\n玄幻总字::/shuku/1_1_0_0_9_{{page}}_0_1\n东方玄幻::/shuku/1_1_0_1_0_{{page}}_0_1\n异世大陆::/shuku/1_1_0_2_0_{{page}}_0_1\n史诗奇幻::/shuku/1_1_0_3_0_{{page}}_0_1\n高武世界::/shuku/1_1_0_4_0_{{page}}_0_1\n剑与魔法::/shuku/1_1_0_5_0_{{page}}_0_1\n武侠仙侠::/shuku/2_1_0_0_0_{{page}}_0_1\n武侠总点::/shuku/2_1_0_0_2_{{page}}_0_1\n武侠月点::/shuku/2_1_0_0_5_{{page}}_0_1\n武侠周点::/shuku/2_1_0_0_4_{{page}}_0_1\n武侠总推::/shuku/2_1_0_0_1_{{page}}_0_1\n武侠月推::/shuku/2_1_0_0_7_{{page}}_0_1\n武侠周推::/shuku/2_1_0_0_6_{{page}}_0_1\n武侠总收::/shuku/2_1_0_0_3_{{page}}_0_1\n武侠总字::/shuku/2_1_0_0_9_{{page}}_0_1\n古典仙侠::/shuku/2_1_0_1_0_{{page}}_0_1\n修真文明::/shuku/2_1_0_2_0_{{page}}_0_1\n现代修真::/shuku/2_1_0_3_0_{{page}}_0_1\n神话修真::/shuku/2_1_0_4_0_{{page}}_0_1\n武侠幻想::/shuku/2_1_0_5_0_{{page}}_0_1\n幻想修仙::/shuku/2_1_0_6_0_{{page}}_0_1\n都市青春::/shuku/3_1_0_0_0_{{page}}_0_1\n都市总点::/shuku/3_1_0_0_2_{{page}}_0_1\n都市月点::/shuku/3_1_0_0_5_{{page}}_0_1\n都市周点::/shuku/3_1_0_0_4_{{page}}_0_1\n都市总推::/shuku/3_1_0_0_1_{{page}}_0_1\n都市月推::/shuku/3_1_0_0_7_{{page}}_0_1\n都市周推::/shuku/3_1_0_0_6_{{page}}_0_1\n都市总收::/shuku/3_1_0_0_3_{{page}}_0_1\n都市总字::/shuku/3_1_0_0_9_{{page}}_0_1\n都市生活::/shuku/3_1_0_1_0_{{page}}_0_1\n官场沉浮::/shuku/3_1_0_2_0_{{page}}_0_1\n娱乐明星::/shuku/3_1_0_3_0_{{page}}_0_1\n异术超能::/shuku/3_1_0_4_0_{{page}}_0_1\n历史军事::/shuku/4_1_0_0_0_{{page}}_0_1\n历史总点::/shuku/4_1_0_0_2_{{page}}_0_1\n历史月点::/shuku/4_1_0_0_5_{{page}}_0_1\n历史周点::/shuku/4_1_0_0_4_{{page}}_0_1\n历史总推::/shuku/4_1_0_0_1_{{page}}_0_1\n历史月推::/shuku/4_1_0_0_7_{{page}}_0_1\n历史周推::/shuku/4_1_0_0_6_{{page}}_0_1\n历史总收::/shuku/4_1_0_0_3_{{page}}_0_1\n历史总字::/shuku/4_1_0_0_9_{{page}}_0_1\n架空历史::/shuku/4_1_0_1_0_{{page}}_0_1\n秦汉三国::/shuku/4_1_0_2_0_{{page}}_0_1\n两晋隋唐::/shuku/4_1_0_3_0_{{page}}_0_1\n两宋元明::/shuku/4_1_0_4_0_{{page}}_0_1\n清史民国::/shuku/4_1_0_5_0_{{page}}_0_1\n外国历史::/shuku/4_1_0_6_0_{{page}}_0_1\n军事战争::/shuku/4_1_0_7_0_{{page}}_0_1\n抗战烽火::/shuku/4_1_0_8_0_{{page}}_0_1\n科幻灵异::/shuku/5_1_0_0_0_{{page}}_0_1\n科幻总点::/shuku/5_1_0_0_2_{{page}}_0_1\n科幻月点::/shuku/5_1_0_0_5_{{page}}_0_1\n科幻周点::/shuku/5_1_0_0_4_{{page}}_0_1\n科幻总推::/shuku/5_1_0_0_1_{{page}}_0_1\n科幻月推::/shuku/5_1_0_0_7_{{page}}_0_1\n科幻周推::/shuku/5_1_0_0_6_{{page}}_0_1\n科幻总收::/shuku/5_1_0_0_3_{{page}}_0_1\n科幻总字::/shuku/5_1_0_0_9_{{page}}_0_1\n未来世界::/shuku/5_1_0_1_0_{{page}}_0_1\n超级科技::/shuku/5_1_0_2_0_{{page}}_0_1\n时空穿梭::/shuku/5_1_0_3_0_{{page}}_0_1\n进化变异::/shuku/5_1_0_4_0_{{page}}_0_1\n末世危机::/shuku/5_1_0_5_0_{{page}}_0_1\n灵异鬼怪::/shuku/5_1_0_6_0_{{page}}_0_1\n侦探推理::/shuku/5_1_0_7_0_{{page}}_0_1\n寻墓探险::/shuku/5_1_0_8_0_{{page}}_0_1\n游戏竞技::/shuku/6_1_0_0_0_{{page}}_0_1\n游戏总点::/shuku/6_1_0_0_2_{{page}}_0_1\n游戏月点::/shuku/6_1_0_0_5_{{page}}_0_1\n游戏周点::/shuku/6_1_0_0_4_{{page}}_0_1\n游戏总推::/shuku/6_1_0_0_1_{{page}}_0_1\n游戏月推::/shuku/6_1_0_0_7_{{page}}_0_1\n游戏周推::/shuku/6_1_0_0_6_{{page}}_0_1\n游戏总收::/shuku/6_1_0_0_3_{{page}}_0_1\n游戏总字::/shuku/6_1_0_0_9_{{page}}_0_1\n虚拟网游::/shuku/6_1_0_1_0_{{page}}_0_1\n游戏异界::/shuku/6_1_0_2_0_{{page}}_0_1\n体育竞技::/shuku/6_1_0_3_0_{{page}}_0_1\n游戏生涯::/shuku/6_1_0_4_0_{{page}}_0_1\n电子竞技::/shuku/6_1_0_5_0_{{page}}_0_1\n女生言情::/shuku/9_1_0_0_0_{{page}}_0_1\n女生总点::/shuku/9_1_0_0_2_{{page}}_0_1\n女生月点::/shuku/9_1_0_0_5_{{page}}_0_1\n女生周点::/shuku/9_1_0_0_4_{{page}}_0_1\n女生总推::/shuku/9_1_0_0_1_{{page}}_0_1\n女生月推::/shuku/9_1_0_0_7_{{page}}_0_1\n女生周推::/shuku/9_1_0_0_6_{{page}}_0_1\n女生总收::/shuku/9_1_0_0_3_{{page}}_0_1\n女生总字::/shuku/9_1_0_0_9_{{page}}_0_1\n豪门总裁::/shuku/9_1_0_1_0_{{page}}_0_1\n现代言情::/shuku/9_1_0_2_0_{{page}}_0_1\n星际科幻::/shuku/9_1_0_3_0_{{page}}_0_1\n灵异推理::/shuku/9_1_0_4_0_{{page}}_0_1\n婚恋情缘::/shuku/9_1_0_5_0_{{page}}_0_1\n古代言情::/shuku/9_1_0_6_0_{{page}}_0_1\n玄幻仙侠::/shuku/9_1_0_7_0_{{page}}_0_1\n宫闱宅斗::/shuku/9_1_0_8_0_{{page}}_0_1\n次元同人::/shuku/20_1_0_0_0_{{page}}_0_1\n次元总点::/shuku/20_1_0_0_2_{{page}}_0_1\n次元月点::/shuku/20_1_0_0_5_{{page}}_0_1\n次元周点::/shuku/20_1_0_0_4_{{page}}_0_1\n次元总推::/shuku/20_1_0_0_1_{{page}}_0_1\n次元月推::/shuku/20_1_0_0_7_{{page}}_0_1\n次元周推::/shuku/20_1_0_0_6_{{page}}_0_1\n次元总收::/shuku/20_1_0_0_3_{{page}}_0_1\n次元总字::/shuku/20_1_0_0_9_{{page}}_0_1\n动漫同人::/shuku/20_1_0_1_0_{{page}}_0_1\n小说同人::/shuku/20_1_0_2_0_{{page}}_0_1\n影视同人::/shuku/20_1_0_3_0_{{page}}_0_1\n原生幻想::/shuku/20_1_0_4_0_{{page}}_0_1",
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Linux; Android 9; Pixel 3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36\"\n}",
"lastUpdateTime": 1613560315803,
"loginUrl": "",
"ruleBookInfo": {
"author": "class.info@tag.span.0@text",
"coverUrl": "class.bookimg@tag.img@src",
"intro": "class.book-intro@text",
"kind": "class.info@tag.span.1@text",
"lastChapter": "class.newlist@tag.a.0@text## - \\d+-\\d+$",
"name": " id.book@text",
"tocUrl": "<js>\nbaseUrl.replace('book', 'read')\n</js>\n##(\\d+)$##$1/1/1"
},
"ruleContent": {
"content": "<js>\n//取正文\na=org.jsoup.Jsoup.parse(String(result).match(/id=\"[A-Z].*?\">([\\s\\S]*?)\\s<\\/div>/)[1]).html();\n//取屏蔽段落\nvar content=String(result.match(/function\\s*getDecode\\(\\)\\{(.*)\\}/)[1]);\n//还原屏蔽段落\ncontent=content.replace(/\\\\/g,\"/\")\n.replace(/[A-Z]=~.*?\\('/g,\"\")\n.replace(/#.*?\\('/g,\"\")\n.replace(/'\\).*/g,\"\")\n.replace(/\\+|\"/g,\"\")\n.replace(/[A-Z]\\.\\$__\\$/g,\"9\")\n.replace(/[A-Z]\\.\\$___/g,\"8\")\n.replace(/[A-Z]\\.\\$\\$\\$/g,\"7\")\n.replace(/[A-Z]\\.\\$\\$_/g,\"6\")\n.replace(/[A-Z]\\.\\$_\\$/g,\"5\")\n.replace(/[A-Z]\\.\\$__/g,\"4\")\n.replace(/[A-Z]\\._\\$\\$/g,\"3\")\n.replace(/[A-Z]\\._\\$_/g,\"2\")\n.replace(/[A-Z]\\.__\\$/g,\"1\")\n.replace(/[A-Z]\\.___/g,\"0\")\n.replace(/\\/\\/74\\/{2,3}160\\/\\/76/g,\"\\n\")\n//大写字母\n.replace(/\\/\\/132/g,\"Z\")\n.replace(/\\/\\/131/g,\"Y\")\n.replace(/\\/\\/130/g,\"X\")\n.replace(/\\/\\/127/g,\"W\")\n.replace(/\\/\\/126/g,\"V\")\n.replace(/\\/\\/125/g,\"U\")\n.replace(/\\/\\/124/g,\"T\")\n.replace(/\\/\\/123/g,\"S\")\n.replace(/\\/\\/122/g,\"R\")\n.replace(/\\/\\/121/g,\"Q\")\n.replace(/\\/\\/120/g,\"P\")\n.replace(/\\/\\/117/g,\"O\")\n.replace(/\\/\\/116/g,\"N\")\n.replace(/\\/\\/115/g,\"M\")\n.replace(/\\/\\/114/g,\"L\")\n.replace(/\\/\\/113/g,\"K\")\n.replace(/\\/\\/112/g,\"J\")\n.replace(/\\/\\/111/g,\"I\")\n.replace(/\\/\\/110/g,\"H\")\n.replace(/\\/\\/107/g,\"G\")\n.replace(/\\/\\/106/g,\"F\")\n.replace(/\\/\\/105/g,\"E\")\n.replace(/\\/\\/104/g,\"D\")\n.replace(/\\/\\/103/g,\"C\")\n.replace(/\\/\\/102/g,\"B\")\n.replace(/\\/\\/101/g,\"A\")\n.replace(/\\/\\/100/g,\"@\")\n//小写字母\n.replace(/5\\_/g,\"a\")\n.replace(/5\\$/g,\"b\")\n.replace(/6\\_/g,\"c\")\n.replace(/6\\$/g,\"d\")\n.replace(/7\\_/g,\"e\")\n.replace(/7\\$/g,\"f\")\n.replace(/\\/\\/147/g,\"g\")\n.replace(/\\/\\/150/g,\"h\")\n.replace(/\\/\\/151/g,\"i\")\n.replace(/\\/\\/152/g,\"j\")\n.replace(/\\/\\/153/g,\"k\")\n.replace(/\\(\\!\\[\\]\\)\\[2\\]/g,\"l\")\n.replace(/\\/\\/155/g,\"m\")\n.replace(/\\/\\/156/g,\"n\")\n.replace(/[A-Z]\\._\\$/g,\"o\")\n.replace(/\\/\\/160/g,\"p\")\n.replace(/\\/\\/161/g,\"q\")\n.replace(/\\/\\/162/g,\"r\")\n.replace(/\\/\\/163/g,\"s\")\n.replace(/[A-Z].__/g,\"t\")\n.replace(/[A-Z]._/g,\"u\")\n.replace(/\\/\\/166/g,\"v\")\n.replace(/\\/\\/167/g,\"w\")\n.replace(/\\/\\/170/g,\"x\")\n.replace(/\\/\\/171/g,\"y\")\n.replace(/\\/\\/172/g,\"z\")\n//英文符号\n.replace(/\\/\\/72/g,\":\")\n.replace(/\\/\\/73/g,\" \")\n.replace(/\\/\\/77/g,\"?\")\n.replace(/\\/\\/\\/\\/u(.{4})/g,\"%u$1\");\n密文=unescape(content)\n//放回原位\nresult=String(a);\nresult=result.replace(/自动加载/,密文)\n.replace(/防采集(,|)/g,\"\")\n.replace(/.*书友大本营.*/g,\"\")\n.replace(/失败.*?(阅读模式!|浏览器!)/g,\"\")\n.replace(/禁止转码.*?请退出阅读模式!/g,\"\").replace(/chapter_c\\(\\)\\;/g,\"\")\n</js>",
"sourceRegex": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.author@text",
"bookList": "div.bookbox",
"bookUrl": "a@href",
"coverUrl": "img@data-src",
"intro": "class.intro_line@text",
"lastChapter": "class.update@text##最新.",
"name": "h4@text"
},
"ruleToc": {
"chapterList": "-@css:div.newlist li",
"chapterName": "a@text## - \\d+-\\d+$",
"chapterUrl": "a@href##$##,{\"webView\":true}",
"nextTocUrl": "option@value"
},
"searchUrl": "/search/,{\n \"charset\": \"gbk\",\n \"method\": \"POST\",\n \"body\": \"key={{key}}&y={{page}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "全小说",
"bookSourceType": 0,
"bookSourceUrl": "https://qxs.la",
"customOrder": 10,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 0,
"loginUrl": "https://qxs.la/login.htm",
"ruleBookInfo": {
"intro": "##简介:\\s*([^<]*)##$1###"
},
"ruleContent": {
"content": "id.content@textNodes##全新的短域名\\s+qxs.la\\s+.*?亲爱的读者.*?全小说无弹窗.|手机端https://|www.*?com|\\s.*正文卷第\\d+章",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.cc4@a@text",
"bookList": "class.list_content",
"bookUrl": "class.cc2@a@href",
"kind": "class.cc5@text",
"lastChapter": "class.cc3@a@text",
"name": "class.cc2@a@text"
},
"ruleToc": {
"chapterList": ":\"chapter\"[^\"]+\"([^\"]*)\"[^>]+>([^<]*)",
"chapterName": "$2",
"chapterUrl": "$1"
},
"searchUrl": "/s_{{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceName": "如书屋",
"bookSourceType": 0,
"bookSourceUrl": "http://www.rushuwu.net",
"customOrder": 11,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "日点击榜::https://m.rushuwu.org/top/dayvisit_{{page}}/ \n周点击榜::https://m.rushuwu.org/top/weekvisit_{{page}}/ \n月点击榜::https://m.rushuwu.org/top/monthvisit_{{page}}/ \n总点击榜::https://m.rushuwu.org/top/allvisit_{{page}}/ \n总收藏榜::https://m.rushuwu.org/top/goodnum_{{page}}/ \n字数排行::https://m.rushuwu.org/top/size_{{page}}/ \n总推荐榜::https://m.rushuwu.org/top/allvote_{{page}}/ \n最新入库::https://m.rushuwu.org/top/postdate_{{page}}/ \n最近更新::https://m.rushuwu.org/top/lastupdate_{{page}}/",
"lastUpdateTime": 1610631610180,
"ruleBookInfo": {
"intro": "id.intro@p@text",
"lastChapter": ""
},
"ruleContent": {
"content": "id.content@textNodes"
},
"ruleExplore": {
"author": "tag.a.2@text",
"bookList": "@css:.user_content>div",
"bookUrl": "class.blue@tag.a@href@js:\"https://www.rushuwu.org\"+result",
"coverUrl": "class.blue@tag.a@href##\\/(\\d+)_(\\d+)##https://www.rushuwu.org/files/article/image/$1/$2/$2s.jpg##",
"name": "class.blue@text"
},
"ruleSearch": {
"author": "tag.td.2@text",
"bookList": "tag.tr!0",
"bookUrl": "tag.td@a@href",
"coverUrl": "tag.td@a@href##\\/(\\d+)_(\\d+)##https://www.rushuwu.org/files/article/image/$1/$2/$2s.jpg##",
"lastChapter": "tag.td.1@text",
"name": "tag.td.0@text",
"wordCount": ""
},
"ruleToc": {
"chapterList": "dd",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "https://www.rushuwu.org/modules/article/search.php?searchtype=articlename&searchkey={{key}}&page={{page}},{\n \"charset\": \"gbk\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "衍墨轩",
"bookSourceType": 0,
"bookSourceUrl": "http://www.ymoxuan.org",
"bookUrlPattern": "",
"customOrder": 12,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "",
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Windows)\"\n}",
"lastUpdateTime": 1610092429167,
"loginUrl": "",
"ruleBookInfo": {
"author": "tag.i.0@tag.a.0@text",
"coverUrl": "class.cover@tag.img@src",
"init": "",
"intro": "class.desc@tag.p.0@text",
"kind": "tag.i.1@tag.a.0@text",
"lastChapter": "",
"name": "class.line@tag.hl.0@text",
"tocUrl": "class.operate@tag.a.2@href",
"wordCount": ""
},
"ruleContent": {
"content": "id.content@textNodes",
"nextContentUrl": "",
"sourceRegex": "",
"webJs": ""
},
"ruleExplore": {
"author": "",
"bookList": "",
"bookUrl": "",
"coverUrl": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": "",
"wordCount": ""
},
"ruleSearch": {
"author": "class.a2@tag.a.0@text",
"bookList": "class.lastest@tag.li!0",
"bookUrl": "class.n2@tag.a.0@href",
"coverUrl": "",
"intro": "",
"kind": "class.nt@text",
"lastChapter": "class.c2@tag.a.0@text",
"name": "class.n2@tag.a.0@text",
"wordCount": ""
},
"ruleToc": {
"chapterList": "class.info@tag.li",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href",
"isVip": "",
"nextTocUrl": "",
"updateTime": ""
},
"searchUrl": "http://www.ymoxuan.org/search.htm?keyword={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "搜书网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.soshuw.com",
"customOrder": 13,
"enabled": true,
"enabledExplore": true,
"lastUpdateTime": 1613136659010,
"ruleBookInfo": {},
"ruleContent": {
"content": "@js:r=java.getElement(\"class.content\");\nr.select(\"p\").remove();r.html()",
"replaceRegex": "##^\\s*[^\\n]+\\n"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.a.2@text",
"bookList": ".list li",
"bookUrl": "https://www.soshuwu.com{{@@tag.a.1@href}}",
"coverUrl": "img@src",
"intro": "class.intro@html",
"kind": "span@text",
"lastChapter": "tag.a.-1@text",
"name": "class.bookname@text"
},
"ruleToc": {
"chapterList": "dd a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://m.soshuw.com/search.html,{\n\"method\": \"POST\",\n\"body\": \"searchkey={{key}}\"}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "下书网",
"bookSourceType": 0,
"bookSourceUrl": "https://m.xiashucom.com",
"customOrder": 14,
"enabled": true,
"enabledExplore": true,
"lastUpdateTime": 0,
"ruleBookInfo": {
"author": "id.author@a@text",
"coverUrl": "id.bookimg@src",
"intro": "id.bookintro@text",
"lastChapter": "class.new_t@a@text",
"name": "class.bookright@h1@text",
"tocUrl": "text.打开完整目录列表@href"
},
"ruleContent": {
"content": "id.pt-pop@html",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.td.2@text",
"bookList": "class.booklists@tbody@tr",
"bookUrl": "tag.a.1@href",
"kind": "tag.a.0@text",
"lastChapter": "tag.a.2@text##^正文\\s",
"name": "tag.a.1@text"
},
"ruleToc": {
"chapterList": "class.mulu@dl@dd@a",
"chapterName": "text",
"chapterUrl": "href##^##https://m.xiashucom.com"
},
"searchUrl": "https://www.xiashucom.com/search/result.html?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "妙笔阁",
"bookSourceType": 0,
"bookSourceUrl": "https://www.imiaobige.com",
"bookUrlPattern": "",
"customOrder": 15,
"enabled": true,
"enabledExplore": true,
"header": "",
"lastUpdateTime": 1605401624763,
"loginUrl": "",
"ruleBookInfo": {
"author": "id.smallcons@tag.span.1@text",
"kind": "id.smallcons@tag.span.0@text",
"name": "id.smallcons@tag.h1@text##免费阅读全文"
},
"ruleContent": {
"content": "id.content@html##您可以在.*?最新章节.",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.book_other.0@tag.a.1@text",
"bookList": "id.sitembox@tag.dl",
"bookUrl": "tag.h3.0@tag.a.0@href@js:var bid=result.match(/novel\\/(\\d+)/)[1];\n\n\"https://www.imiaobige.com/read/\"+bid",
"coverUrl": "tag.img@src",
"intro": "class.book_des@text",
"kind": "class.book_other.0@tag.a.0@text",
"lastChapter": "class.book_other.1@tag.a.0@text##.*?章\\s(\\d+\\..*)##$1",
"name": "tag.h3.0@tag.a.0@text##免费阅读全文"
},
"ruleToc": {
"chapterList": "id.readerlists@tag.li!0:1:2:3:4:5:6:7:8:9:10:11",
"chapterName": "tag.a@text##章\\s\\d+\\.##章",
"chapterUrl": "tag.a@href"
},
"searchUrl": "/search.html,{\n \"body\": \"searchkey={{key}}\",\n \"method\": \"POST\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "采墨阁",
"bookSourceType": 0,
"bookSourceUrl": "https://www.caimoge.com",
"customOrder": 16,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "",
"lastUpdateTime": 0,
"ruleBookInfo": {
"tocUrl": "class.motion2@tag.a.0@href"
},
"ruleContent": {
"content": "id.content@tag.p@textNodes##本站域名更换为.*?有声小说在线收听",
"imageStyle": "0"
},
"ruleExplore": {
"author": "",
"bookList": "",
"bookUrl": "",
"coverUrl": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": ""
},
"ruleSearch": {
"author": "class.four@tag.a.0@text||tag.dd.1@tag.span.0@text",
"bookList": "id.sitembox@tag.dl||class.shuku_list@tag.ul",
"bookUrl": "tag.dd.0@tag.h3.0@tag.a.0@href||class.three@tag.a.0@href",
"coverUrl": "tag.dt.0@tag.a.0@tag.img@src",
"intro": "class.book_des@text",
"kind": "tag.dd.1@tag.span.2@text||class.two@text",
"lastChapter": "tag.dd.3@tag.a.0@text||class.three@tag.a.1@text",
"name": "tag.dd.0@tag.h3.0@tag.a.0@text||class.three@tag.a.0@text##笔趣"
},
"ruleToc": {
"chapterList": "//div[@id=\"readerlist\"]//li",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "/search,{\n \"charset\": \"utf-8\",\n \"body\": \"searchkey={{key}}\",\n \"method\": \"POST\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "笔趣阁",
"bookSourceType": 0,
"bookSourceUrl": "http://www.b5200.net",
"customOrder": 17,
"enabled": true,
"enabledExplore": true,
"header": "",
"lastUpdateTime": 0,
"ruleBookInfo": {
"coverUrl": "id.fmimg.0@tag.img.0@src",
"intro": "id.intro.0@tag.p.0@text"
},
"ruleContent": {
"content": "id.content@tag.p@html##记住手机版网址.|第\\d+章.*|小说网.*",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.odd.1@text",
"bookList": "class.grid@tr!0",
"bookUrl": "class.odd.0@tag.a.0@href",
"lastChapter": "class.even.0@tag.a.0@text",
"name": "class.odd.0@tag.a.0@text"
},
"ruleToc": {
"chapterList": "class.box_con@tag.dd!0:1:2:3:4:5:6:7:8",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "/modules/article/search.php?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "神书宝",
"bookSourceType": 0,
"bookSourceUrl": "https://quapp.shenbabao.com",
"bookUrlPattern": "https://quapp.shenbabao.com/book/.*",
"customOrder": 18,
"enabled": true,
"enabledExplore": true,
"lastUpdateTime": 1601979694319,
"ruleBookInfo": {},
"ruleContent": {
"content": "$..content"
},
"ruleExplore": {},
"ruleSearch": {
"author": "$.Author",
"bookList": "$..data[*]",
"bookUrl": "https://quapp.shenbabao.com/book/{$.Id}/",
"coverUrl": "$.Img",
"intro": "$.Desc",
"kind": "$.CName&&$.BookStatus",
"lastChapter": "$.LastChapter",
"name": "$.Name@put:{a:$.Id}"
},
"ruleToc": {
"chapterList": "$..list[*].list[*]",
"chapterName": "$.name",
"chapterUrl": "https://quapp.shenbabao.com/book/@get:{a}/{{$.id}}.html"
},
"searchUrl": "https://sou.jiaston.com/search.aspx?key={{key}}&page=Page&siteid=app2",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "萌文库",
"bookSourceType": 0,
"bookSourceUrl": "http://xs.kdays.net",
"bookUrlPattern": "",
"customOrder": 19,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "全部::http://xs.kdays.net/list/all?page={{page}}\n热血::http://xs.kdays.net/list/all?type=1&page={{page}}\n冒险::http://xs.kdays.net/list/all?type=2&page={{page}}\n运动::http://xs.kdays.net/list/all?type=3&page={{page}}\n魔幻::http://xs.kdays.net/list/all?type=4&page={{page}}\n武侠::http://xs.kdays.net/list/all?type=5&page={{page}}\n校园::http://xs.kdays.net/list/all?type=6&page={{page}}\n治愈::http://xs.kdays.net/list/all?type=8&page={{page}}\n推理::http://xs.kdays.net/list/all?type=9&page={{page}}\n惊悚::http://xs.kdays.net/list/all?type=10&page={{page}}\n科幻::http://xs.kdays.net/list/all?type=11&page={{page}}\n社会::http://xs.kdays.net/list/all?type=12&page={{page}}\n动画化::http://xs.kdays.net/list/all?type=14&page={{page}}\n点击榜::http://xs.kdays.net/list/top\n收藏榜::http://xs.kdays.net/list/top?type=fav\n喜欢榜::http://xs.kdays.net/list/top?type=like\nGAL::http://xs.kdays.net/list/all?type=13&page={{page}}",
"lastUpdateTime": 0,
"loginUrl": "http://xs.kdays.net/auth/login",
"ruleBookInfo": {
"intro": "tag.blockquote@textNodes##^##<br/>",
"tocUrl": "text.点击阅读@href"
},
"ruleContent": {
"content": "tag.article@html",
"imageStyle": "0"
},
"ruleExplore": {
"author": "class.author@text##^作者:",
"bookList": "class.book-list@class.book",
"bookUrl": "class.detail@tag.h3@tag.a.0@href",
"coverUrl": "class.cover-side@tag.img.0@src",
"intro": "tag.blockquote@textNodes",
"kind": "class.text-muted@text##\\s*/\\s*##,",
"lastChapter": "class.new-vol@text##^最新[::]\\s*",
"name": "class.detail@tag.h3@tag.a.0@text"
},
"ruleSearch": {
"author": "tag.p.1@text##^作者[::]\\s*|\\s*/.*$",
"bookList": "class.book-list@class.book",
"bookUrl": "class.detail@tag.h3@tag.a.0@href",
"coverUrl": "class.cover-side@tag.img.0@src",
"kind": "class.text-muted@text##\\s*/\\s*##,",
"lastChapter": "class.new-vol@text##^最新[::]\\s*",
"name": "class.detail@tag.h3@tag.a.0@text"
},
"ruleToc": {
"chapterList": "tag.ul!0:1:-1:-2:-3@tag.li!-3@tag.a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "/search/all?page={{page}}&w={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "铅笔小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.x23qb.com",
"bookUrlPattern": "",
"customOrder": 20,
"enabled": true,
"enabledExplore": false,
"header": "{ \"User-Agent\": \"Mozilla/5.0 (Linux; U; Android 9; zh-cn; MI 9 SE Build/PKQ1.181121.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/9.4 Mobile Safari/537.36\"}",
"lastUpdateTime": 1613563063685,
"loginUrl": "",
"ruleBookInfo": {
"author": "##:author\"[^\"]+\"([^\"]*)##$1###",
"coverUrl": "##og:image\"[^\"]+\"([^\"]*)##$1###",
"intro": "<js>\nvar doc=org.jsoup.Jsoup.parse(result);\n'最近'+doc.selectFirst('#uptime').text()+'\\n'+doc.selectFirst('#bookintro>p').html()\n</js>",
"kind": "##:category\"[^\"]+\"([^\"]*)##$1###",
"lastChapter": "##_chapter_name\"[^\"]+\"([^\"]*)##$1###",
"name": "##:book_name\"[^\"]+\"([^\"]*)##$1###",
"tocUrl": "##novel:read_url\"[^\"]+\"([^\"]*)##$1###",
"wordCount": "@css:li:contains(字数:)@text##字数:"
},
"ruleContent": {
"content": "@css:#TextContent p@textNodes",
"imageStyle": "0",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##.*本章未完.*|铅笔小说|.*x23qb.*|(继续下一页)"
},
"ruleExplore": {},
"ruleSearch": {