-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyuedu.json
2384 lines (2384 loc) · 183 KB
/
yuedu.json
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": "",
"bookSourceGroup": "Namo",
"bookSourceName": "摘 书 网",
"bookSourceType": 0,
"bookSourceUrl": "http://www.maydayfans.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": -1,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648601955215,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text",
"coverUrl": "[email protected]@src",
"intro": "id.intro@text",
"kind": "[email protected]@text",
"lastChapter": "[email protected]@text&&[email protected]@text##最后更新.|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.chaptercontent@html##天才本站地址.*无广告!"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.a.2@text##作者.",
"bookList": "[email protected]",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "tag.p.-2@text",
"kind": "tag.a.3@text##类型.",
"lastChapter": "tag.p.-1@text##最新章节:|..\\:.*",
"name": ".novelname@text"
},
"ruleToc": {
"chapterList": "[email protected]!0:1:2:3:4:5:6:7:8",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "http://www.maydayfans.com/search.html?searchkey={{key}}&searchtype=all",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "爱小说啦",
"bookSourceType": 0,
"bookSourceUrl": "https://www.ixs.la",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 0,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648601960984,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作 者:",
"coverUrl": "[email protected]@src",
"intro": "id.intro@text",
"lastChapter": "[email protected]@text&&[email protected]@text##最后更新:|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.content@html",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.span@text##作者:",
"bookList": "class.item",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"name": "tag.a.1@text"
},
"ruleToc": {
"chapterList": "[email protected]!0:1:2:3:4:5:6:7:8:9:10:11",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "https://www.ixs.la/search.php,{\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "望 书 阁",
"bookSourceType": 0,
"bookSourceUrl": "https://www.wangshuge.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 0,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648601966538,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作者:|更新时间.*",
"kind": "[email protected]@text",
"lastChapter": "class.bdsub@[email protected]@text&&[email protected]@text##.*更新时间.|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.contents@html",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.C.0@text",
"bookList": "[email protected]!0",
"bookUrl": "tag.a.0@href",
"kind": "class.C.2@text",
"lastChapter": "tag.a.1@text",
"name": "tag.a.0@text",
"wordCount": "class.R@text"
},
"ruleToc": {
"chapterList": "class.bdsub@[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "https://www.wangshuge.com/search/,{\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "平凡文学",
"bookSourceType": 0,
"bookSourceUrl": "http://www.pksge.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 0,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648601973777,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作 者:",
"coverUrl": "[email protected]@src",
"intro": "[email protected]@text##——.*",
"lastChapter": "[email protected]@text&&[email protected]@text##更新时间:|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.booktext@html##如果觉得.*",
"imageStyle": "0"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.h3.0@text##作者:",
"bookList": "class.tutui",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"lastChapter": "tag.a.-1@text",
"name": "tag.a.1@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "http://www.pksge.com/modules/article/search.php,{\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}&searchtype=articlename\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "斋 书 苑",
"bookSourceType": 0,
"bookSourceUrl": "https://www.zhaishuyuan.org#",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 1,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "玄幻::/category/xuanhuan_{{page}}.html\n修真::/category/xiuzhen_{{page}}.html\n都市::/category/dushi_{{page}}.html\n穿越::/category/chuanyue_{{page}}.html\n网游::/category/wangyou_{{page}}.html\n科幻::/category/kehuan_{{page}}.html\n其他::/category/qita_{{page}}.html",
"header": "",
"lastUpdateTime": 1646594275974,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property=\"og:novel:author\"]@content",
"coverUrl": "[property=\"og:image\"]@content",
"init": "",
"intro": "id.bookintro@html",
"kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##小说|\\s.*",
"lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
"name": "[property=\"og:novel:book_name\"]@content",
"wordCount": "[email protected]@text"
},
"ruleContent": {
"content": "id.content@html",
"imageStyle": "0",
"nextContentUrl": "id.next_url@href",
"replaceRegex": "##感谢.*打赏.*|\\【看书福利.*|\\(未完待续\\)|无弹窗.*|\\【加入书签.*|\\(本章未完,请翻页\\)|\\(本章完\\)|推荐下.*可以试试吧。"
},
"ruleExplore": {
"author": "tag.a.2@text",
"bookList": ".shulist ul",
"bookUrl": "tag.a.0@href",
"coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##https://img.zhaishuyuan.org/$2/$1/$1s.jpg###",
"kind": "tag.li.1@text&&tag.li.5@text##\\[|小说.*",
"lastChapter": "tag.a.1@text",
"name": "tag.a.0@text",
"wordCount": "tag.li.4@text"
},
"ruleSearch": {
"author": "tag.a.2@text",
"bookList": "#sitembox dl",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "tag.dd.2@text##\\s",
"kind": "tag.span.2@text&&tag.span.3@text&&tag.span.5@text##小说|\\s.*",
"lastChapter": "class.book_other.1@text##最新章节.| 更新时间.",
"name": "tag.a.1@text",
"wordCount": "tag.span.4@text"
},
"ruleToc": {
"chapterList": "#readerlist li",
"chapterName": "tag.a@text##-",
"chapterUrl": "tag.a@href"
},
"searchUrl": "https://www.zhaishuyuan.org/search/?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "分享者:一程",
"bookSourceGroup": "Namo",
"bookSourceName": "九桃小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.9taoxs.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 3,
"enabled": true,
"enabledExplore": true,
"exploreUrl": " 【榜单】 ::\n总点击榜::/library/allvisit_0_0_{{page}}.html\n月点击榜::/library/monthvisit_0_0_{{page}}.html\n周点击榜::/library/weekvisit_0_0_{{page}}.html\n日点击榜::/library/dayvisit_0_0_{{page}}.html\n总推荐榜::/library/allvote_0_0_{{page}}.html\n月推荐榜::/library/monthvote_0_0_{{page}}.html\n周推荐榜::/library/weekvote_0_0_{{page}}.html\n日推荐榜::/library/dayvote_0_0_{{page}}.html\n总收藏榜::/library/goodnum_0_0_{{page}}.html\n总字数榜::/library/size_0_0_{{page}}.html\n最新入库::/library/postdate_0_0_{{page}}.html\n最近更新::/library/lastupdate_0_0_{{page}}.html\n强推榜单::/library/librarytime_0_0_{{page}}.html\n新书榜单::/library/goodnew_0_0_{{page}}.html\n 【连载】 ::\n玄幻奇幻::/library/0_1_1_{{page}}.html\n武侠修真::/library/0_2_1_{{page}}.html\n都市生活::/library/0_3_1_{{page}}.html\n历史军事::/library/0_4_1_{{page}}.html\n游戏竞技::/library/0_5_1_{{page}}.html\n科幻未来::/library/0_6_1_{{page}}.html\n悬疑灵异::/library/0_7_1_{{page}}.html\n二の次元::/library/0_8_1_{{page}}.html\n经典短篇::/library/0_9_1_{{page}}.html\n古代言情::/library/0_10_1_{{page}}.html\n现代言情::/library/0_11_1_{{page}}.html\n幻想奇缘::/library/0_12_1_{{page}}.html\n浪漫青春::/library/0_13_1_{{page}}.html\n网络情缘::/library/0_14_1_{{page}}.html\n科幻空间::/library/0_15_1_{{page}}.html\n恐怖灵异::/library/0_16_1_{{page}}.html\nNの次元::/library/0_17_1_{{page}}.html\n言情美文::/library/0_18_1_{{page}}.html\n其他类型::/library/0_19_1_{{page}}.html\n 【完本】 ::\n玄幻奇幻::/library/0_1_2_{{page}}.html\n武侠修真::/library/0_2_2_{{page}}.html\n都市生活::/library/0_3_2_{{page}}.html\n历史军事::/library/0_4_2_{{page}}.html\n游戏竞技::/library/0_5_2_{{page}}.html\n科幻未来::/library/0_6_2_{{page}}.html\n悬疑灵异::/library/0_7_2_{{page}}.html\n二の次元::/library/0_8_2_{{page}}.html\n经典短篇::/library/0_9_2_{{page}}.html\n古代言情::/library/0_10_2_{{page}}.html\n现代言情::/library/0_11_2_{{page}}.html\n幻想奇缘::/library/0_12_2_{{page}}.html\n浪漫青春::/library/0_13_2_{{page}}.html\n网络情缘::/library/0_14_2_{{page}}.html\n科幻空间::/library/0_15_2_{{page}}.html\n恐怖灵异::/library/0_16_2_{{page}}.html\nNの次元::/library/0_17_2_{{page}}.html\n言情美文::/library/0_18_2_{{page}}.html\n其他类型::/library/0_19_2_{{page}}.html",
"header": "",
"lastUpdateTime": 1646055304900,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property=\"og:novel:author\"]@content",
"coverUrl": "[property=\"og:image\"]@content",
"intro": "[property=\"og:description\"]@content##(^|[。!?]+[”」)】]?)##$1<br>",
"kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##\\s.*",
"lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
"name": "[property=\"og:novel:book_name\"]@content",
"tocUrl": "[property=\"og:novel:read_url\"]@content"
},
"ruleContent": {
"content": "#content@html",
"replaceRegex": "##您可以在百度.*|九桃小说.*新域名\\(9taoxs.com\\)"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.a.2@text",
"bookList": ".library li",
"bookUrl": "tag.a.1@href",
"coverUrl": "img@src",
"intro": "tag.p.1@text",
"kind": "tag.a.3@text&&span@text",
"lastChapter": "tag.a.4@text##.*:",
"name": "tag.a.1@text",
"wordCount": "tag.p.0@text##.*\\|"
},
"ruleToc": {
"chapterList": ".read dd a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://so.9txs.org/www/,{\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "溜达小说",
"bookSourceType": 0,
"bookSourceUrl": "http://www.txtshuku.org",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 4,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602059716,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property=\"og:novel:author\"]@content",
"coverUrl": "[property=\"og:image\"]@content",
"intro": "id.bookintro@html",
"kind": "[property=\"og:novel:category\"]@content&&[property=\"og:novel:status\"]@content&&[property=\"og:novel:update_time\"]@content##小说|\\s.*",
"lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
"name": "[property=\"og:novel:book_name\"]@content",
"wordCount": "[email protected]@text"
},
"ruleContent": {
"content": "id.content@html",
"imageStyle": "0",
"replaceRegex": "##感谢.*打赏.*|\\【看书福利.*|\\(未完待续\\)|无弹窗.*|\\【加入书签.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "[email protected]@text",
"bookList": "[email protected]",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"lastChapter": "class.book_other.1@text##最新章节.| 更新时间.|..\\:.*",
"name": "tag.a.1@text",
"wordCount": "[email protected]@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "http://www.txtshuku.org/search.php?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "闪文书库",
"bookSourceType": 0,
"bookSourceUrl": "http://www.shanwen.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 5,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602069357,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作 者:",
"coverUrl": "[email protected]@src",
"intro": "[email protected]@text",
"kind": "[email protected]@text##分类:",
"lastChapter": "[email protected]@text&&[email protected]@text##最后更新:|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.content@html",
"imageStyle": "0",
"replaceRegex": "##感谢.*打赏.*|\\【看书福利.*|\\(未完待续\\)|无弹窗.*|\\【加入书签.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.author@text##作者:",
"bookList": "class.bookbox",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "tag.p@text",
"kind": "class.cat@text##分类:",
"lastChapter": "[email protected]@text",
"name": "tag.h4@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "http://www.shanwen.com/s.php?ie=gbk&q={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "夜天连看",
"bookSourceType": 0,
"bookSourceUrl": "http://www.yetianlian.com/",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 5,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602076663,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作者:",
"coverUrl": "[email protected]@src",
"intro": "class.intro@text##简介:|作者.*",
"kind": "[email protected]@text##分类:",
"lastChapter": "[email protected]@tag.a@text&&[email protected]@text##更新时间:|..\\:.*",
"name": "[email protected]@text",
"wordCount": "[email protected]@text##字数:"
},
"ruleContent": {
"content": "id.content@html",
"imageStyle": "0",
"replaceRegex": "##http://www.yetianlian.com.*.html|请记住本书首发.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.author@text##作者:",
"bookList": "class.bookbox",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "tag.p@text",
"kind": "class.cat@text##分类:",
"lastChapter": "[email protected]@text",
"name": "tag.h4@text"
},
"ruleToc": {
"chapterList": "[email protected]!0:1:2:3:4:5:6:7:8:9:10:11",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "http://www.yetianlian.com/s.php?ie=gbk&q={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "鸟书小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.99mk.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 6,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602081408,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作者:",
"coverUrl": "[email protected]@src",
"intro": "class.intro@text##简介:|各位书友.*",
"kind": "[email protected]@text##分类:",
"lastChapter": "[email protected]@text&&[email protected]@text##更新时间:|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.content@html",
"imageStyle": "0",
"replaceRegex": "##请记住本书首发.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.author@text##作者:",
"bookList": "class.bookbox",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "tag.p@text",
"kind": "class.cat@text##分类:",
"lastChapter": "[email protected]@text",
"name": "tag.h4@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "https://www.99mk.com/read/search/,{\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "金庸书库",
"bookSourceType": 0,
"bookSourceUrl": "https://www.jinyongbook.com/",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 8,
"enabled": false,
"enabledExplore": true,
"exploreUrl": "修订版::https://www.jinyongbook.com/xiudingban/index.htm\n新修版::https://www.jinyongbook.com/xinxiuban/index.htm\n旧版::https://www.jinyongbook.com/jiuban/index.htm",
"header": "",
"lastUpdateTime": 1647000771236,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"name": "[email protected]@text"
},
"ruleContent": {
"content": "class.wp-block-table@html",
"imageStyle": "0"
},
"ruleExplore": {
"author": "金庸",
"bookList": "[email protected]",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"name": "tag.a.1@text"
},
"ruleSearch": {},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "",
"weight": 0
},
{
"bookSourceComment": "分享者:山那边是海",
"bookSourceGroup": "Namo",
"bookSourceName": "悠久小说",
"bookSourceType": 0,
"bookSourceUrl": "http://www.ujxsw.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 8,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "玄幻奇幻::/xuanhuan/{{page}}/\n仙侠修真::/wuxia/{{page}}/\n都市青春::/dushi/{{page}}/\n历史军事::/lishi/{{page}}/\n游戏动漫::/youxi/{{page}}/\n科幻灵异::/kehuan/{{page}}/\n女生言情::/yanqing/{{page}}/",
"header": "",
"lastUpdateTime": 1648602211720,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text",
"coverUrl": "[email protected]@src",
"intro": "[email protected]@text##【展开】|【收起】",
"kind": "[email protected]@text",
"lastChapter": "[email protected]@&&[email protected]@text##更新时间.",
"name": "[email protected]@text##作者.*|\\s",
"tocUrl": "[email protected]@href",
"wordCount": "[email protected]@text"
},
"ruleContent": {
"content": "class.read-content@html##.*免费阅读!|佰度搜索.*|.*悠久小说.*|最新网址:www.ujxsw.com",
"imageStyle": "0"
},
"ruleExplore": {
"author": "tag.a.2@text",
"bookList": "[email protected]",
"bookUrl": "tag.a.1@href",
"coverUrl": "tag.img@src",
"intro": "tag.dd.2@text",
"kind": "tag.span.1@text&&tag.span.-1@text",
"lastChapter": "tag.a.3@text",
"name": "tag.a.1@text"
},
"ruleSearch": {
"author": "tag.a.2@text",
"bookList": "[email protected]",
"bookUrl": "tag.a.0@href",
"coverUrl": "tag.a.0@href##.+\\D((\\d+)\\d{3})\\D##http://www.ujxs.com/files/article/image/$2/$1/$1s.jpg###",
"kind": "tag.li.1@text",
"lastChapter": "tag.a.1@text&&class.five@text",
"name": "tag.a.0@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "/searchbooks.php?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "分享者:渊呀",
"bookSourceGroup": "Namo",
"bookSourceName": "忽忽小说",
"bookSourceType": 0,
"bookSourceUrl": "https://api.255zw.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 9,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602222114,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "book_author",
"coverUrl": "https://fengmiantu.cdn.bcebos.com{{$.book_img}}",
"init": "<js>java.aesBase64DecodeToString(JSON.parse(result).data,\"NOVELS2019031200\",\"AES/ECB/PKCS5Padding\",\"\")</js>$",
"intro": "book_desc",
"kind": "book_type",
"lastChapter": "{{$.new_chapter}} {{java.timeFormat(result.update_time*1000)}}",
"name": "book_title",
"tocUrl": "https://api.baicongjun.com/s/book_chapter_list2/{{String(result.book_id).slice(-3)}}/@get:{id}/@get:{id}.txt"
},
"ruleContent": {
"content": "<js>java.aesBase64DecodeToString(JSON.parse(result).data,\"NOVELS2019031200\",\"AES/ECB/PKCS5Padding\",\"\")</js>$"
},
"ruleExplore": {},
"ruleSearch": {
"author": "book_author",
"bookList": "<js>java.aesBase64DecodeToString(JSON.parse(result).data,\"NOVELS2019031200\",\"AES/ECB/PKCS5Padding\",\"\")</js>$\n",
"bookUrl": "/s/book_info2/{{String(result.book_id).slice(-3)}}/@get:{id}/@get:{id}.txt",
"coverUrl": "https://fengmiantu.cdn.bcebos.com{{$.book_img}}",
"intro": "book_desc",
"kind": "book_type",
"name": "book_title@put:{id:book_id}"
},
"ruleToc": {
"chapterList": "<js>java.aesBase64DecodeToString(JSON.parse(result).data,\"NOVELS2019031200\",\"AES/ECB/PKCS5Padding\",\"\")</js>$",
"chapterName": "chapter_name",
"chapterUrl": "https://api.baicongjun.com/s/book_chapter_info2/{{java.get('id').slice(-3)}}/@get:{id}/{{$.chapter_id}}.txt"
},
"searchUrl": "/api2/search_book/search?key={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "值得阅读",
"bookSourceType": 0,
"bookSourceUrl": "https://s.xcfcch.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 10,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "[{\"title\":\"书库\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"玄幻\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"小编力荐\",\"url\":\"https://book.xcfcch.com/classify/style/1/0/4.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"本周强推\",\"url\":\"https://book.xcfcch.com/classify/style/1/0/3.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"人气新书\",\"url\":\"https://book.xcfcch.com/classify/style/1/0/0.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"精品连载\",\"url\":\"https://book.xcfcch.com/classify/style/1/0/1.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"完本精选\",\"url\":\"https://book.xcfcch.com/classify/style/1/0/2.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"热度畅销\",\"url\":\"https://book.xcfcch.com/classify/style/1/0/5.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"玄幻全部\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/-1/-1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"连载\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/-1/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"完结\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/-1/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"东方玄幻\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/0/-1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"连载\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/0/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"完结\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/0/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"异世大陆\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/1/-1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"连载\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/1/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"完结\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/1/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"王朝争霸\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/2/-1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"连载\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/2/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"完结\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/2/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"高武世界\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/3/-1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.3}},\n{\"title\":\"连载\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/3/2/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}},\n{\"title\":\"完结\",\"url\":\"https://book.xcfcch.com/classify/all/1/0/3/1/{{page}}.html\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.2}}\n]",
"header": "<js>\n(()=>{\n var ua = \"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D167 Safari/9537.53\";\n var time=Math.round(new Date()/1000);\n var sign=java.md5Encode(\"com.ruffianhankin.meritreader1\"+time+\"vhjJVz1St6tK7!8n#B0MqRIuE2Dh7!C#\");\n var pt = \"1\";\n var Content=\"text/html; charset=UTF-8\";\n var Connection=\"close\";\n var Accept=\"*/*\";\n var Origin=\"*\";\n var Headers=\"X-Requested-With\";\n var Vary=\"Accept-Encoding\";\n var package=\"com.ruffianhankin.meritreader\";\n var version=\"3.8.2\";\n var channel=\"baidu_tg104\";\n var Cache=\"no-cache, no-store\";\n var headers = {\"Content-Type\":Content,\"Connection\":Connection,\"Accept\":Accept,\"Access-Control-Allow-Origin\":Origin,\"Access-Control-Allow-Headers\":Headers,\"Vary\":Vary,\"User-Agent\":ua,\"package\":package,\"pt\":pt,\"version\":version,\"channel\":channel,\"time\":String(time),\"sign\":String(sign),\"Cache-Control\":Cache};\n return JSON.stringify(headers);\n})()\n</js>",
"lastUpdateTime": 1648602228519,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "$.data.author",
"kind": "$.data.words_number&&$.data.ltype&&$.data.stype",
"lastChapter": "$.data.last_chapter_name&&$.data.updated_at",
"name": "$.data.name",
"tocUrl": "@js:\nua = \"Mozilla/5.0 (iPhone CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D167 Safari/9537.53\"\n time=Math.round(new Date()/1000)\n sign=java.md5Encode(\"com.ruffianhankin.meritreader1\"+time+\"vhjJVz1St6tK7!8n#B0MqRIuE2Dh7!C#\")\n pt = \"1\"\n Content=\"text/html charset=UTF-8\"\n Connection=\"close\"\n Accept=\"*/*\"\n Origin=\"*\"\n Headers=\"X-Requested-With\"\n vary=\"Accept-Encoding\"\n package=\"com.ruffianhankin.meritreader\"\n version=\"3.8.2\"\n channel=\"baidu_tg104\"\n Cache=\"no-cache, no-store\"\n headers = {\"Content-Type\":Content,\"Connection\":Connection,\"Accept\":Accept,\"Access-Control-Allow-Origin\":Origin,\"Access-Control-Allow-Headers\":Headers,\"vary\":vary,\"User-Agent\":ua,\"package\":package,\"pt\":pt,\"version\":version,\"channel\":channel,\"time\":String(time),\"sign\":String(sign),\"Cache-Control\":Cache}\noption={\"headers\":headers}\npt=JSON.parse(java.ajax(\"https://book.xcfcch.com/source/\"+parseInt(java.getString('$.data.book_id')/1000)+\"/\"+java.getString('$.data.book_id')+\".html,\"+JSON.stringify(option))).data[0].site_path\n\"https://catalog.xcfcch.com/\"+pt",
"wordCount": "连载{{$.data.status}}完本##连载1|2完本"
},
"ruleContent": {
"content": "$..content@js:java.aesBase64DecodeToString(result,\"Pxga!h*e4@T8xfOm\",\"AES/CBC/PKCS5Padding\",\"E&z!EHGLd$fli*8R\")"
},
"ruleExplore": {},
"ruleSearch": {
"author": "author",
"bookList": "$.data[*]&&$..lists[*]",
"bookUrl": "https://book.xcfcch.com/details/{{parseInt(java.getString('$.book_id')/1000)}}/{{$.book_id}}.html",
"coverUrl": "https://c-res.xcfcch.com/{{$.image}}",
"intro": "remark",
"kind": "ltype&&stype",
"name": "name",
"wordCount": "连载{{$.status}}完本##连载1|2完本"
},
"ruleToc": {
"chapterList": "data",
"chapterName": "name@js:java.aesBase64DecodeToString(result,\"Pxga!h*e4@T8xfOm\",\"AES/CBC/PKCS5Padding\",\"E&z!EHGLd$fli*8R\")",
"chapterUrl": "https://chapter.xcfcch.com/{{$.path}}",
"updateTime": "更新时间:{{java.timeFormat(java.getString('$.updated_at')*1000)}}"
},
"searchUrl": "https://s.xcfcch.com/v1/lists.api?keyword={{key}}",
"weight": 0
},
{
"bookSourceComment": "分享者:渊呀",
"bookSourceGroup": "Namo",
"bookSourceName": "七猫小说",
"bookSourceType": 0,
"bookSourceUrl": "https://api-bc.wtzw.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 11,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "[{\"title\":\"女生\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=1&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"总裁豪门\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=8&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=2&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"种田经商\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=16&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"宫闱宅斗\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=209&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"幻想言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=4&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"短篇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=541&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女强\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=620&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"年下\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=631&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"空间\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=345&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"隐婚\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=481&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"系统\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=782&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"快穿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=335&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虐渣\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=739&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"日久生情\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=700&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇后\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=106&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"王爷\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=125&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"学霸\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=781&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"毒妃\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=109&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"校草\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=701&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女配\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=191&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"甜宠\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=21&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"搞笑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=788&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"虐恋\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=16&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"治愈\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=17&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"男生\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"都市人生\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=203&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"异术超能\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=219&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"玄幻奇幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=202&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠仙侠\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=205&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"奇闻异事\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=204&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=56&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"游戏\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=75&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=64&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"二次元\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=207&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"体育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=206&need_filters=1&page={{page}}&need_category=1\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"穿越\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=373&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"鉴宝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=47&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"重生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=779&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"血脉\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=426&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"签到\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=565&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"复仇\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=790&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"丹药\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=428&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"无限流\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=557&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"强者回归\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=402&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"医生\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=156&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"战神\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=527&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女婿\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=36&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"皇帝\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=62&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"弃少\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=525&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"女总裁\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=89&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"热血\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=1&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"爽文\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=570&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=12&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=27&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"图书\",\"url\":\"\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":1}},\n{\"title\":\"现代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=260&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"古代言情\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=259&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"青春文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=265&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"影视原著\",\"url\":\"https://www.baidu.com/tag/need_filters=1&tag_id=539&gender=2&page={{page}}\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"悬疑推理\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=262&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"武侠小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=289&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"科幻未来\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=261&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"历史小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=264&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠奇缘\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=276&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"仙侠玄幻\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=288&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现实小说\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=266&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"现代军旅\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=290&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"文学艺术\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=240&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人物传记\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=247&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"人文科社\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=241&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"少儿教育\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=258&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经管励志\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=242&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}},\n{\"title\":\"经典文学\",\"url\":\"https://www.baidu.com/category/gender=2&category_id=243&need_filters=1&page={{page}}&need_category=0\",\"style\":{\"layout_flexGrow\":1,\"layout_flexBasisPercent\":0.25}}]",
"header": "",
"lastUpdateTime": 1648602237213,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "author",
"coverUrl": "image_link",
"init": "data.book",
"intro": "intro",
"kind": "book_tag_list[*].title",
"lastChapter": "{{$.latest_chapter_title}}·{{java.timeFormat(java.getString('$.update_time')*1000)}}",
"name": "title@put:{bid:id}",
"tocUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}}}\n\nvar urlEncode = function (param, key, encode) { \n if(param==null) return ''; \n var paramStr = ''; \n var t = typeof (param); \n if (t == 'string' || t == 'number' || t == 'boolean') { \n paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param); \n } else { \n for (var i in param) { \n var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i); \n paramStr += urlEncode(param[i], k, encode); \n } \n } \n return paramStr; \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-ks.wtzw.com/api/v1/chapter/chapter-list?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
"wordCount": "words_num"
},
"ruleContent": {
"content": "@js:\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.lang,\n Packages.javax.crypto.spec,\n Packages.javax.crypto,\n Packages.java.util\n);\nwith(javaImport) {\n function decode(content) {\n var ivEncData = Base64.getDecoder().decode(String(content));\n var key = SecretKeySpec(String(\"242ccb8230d709e1\").getBytes(), \"AES\");\n var iv = IvParameterSpec(Arrays.copyOfRange(ivEncData, 0, 16));\n var chipher = Cipher.getInstance(\"AES/CBC/PKCS5Padding\");\n chipher.init(2, key, iv);\n return String(chipher.doFinal(Arrays.copyOfRange(ivEncData, 16, ivEncData.length)));\n }\n}\n\n\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':String(java.get('bid')),'chapterId':String(baseUrl.split(\"/\").pop())}\n\nvar urlEncode = function (param, key, encode) { \n if(param==null) return ''; \n var paramStr = ''; \n var t = typeof (param); \n if (t == 'string' || t == 'number' || t == 'boolean') { \n paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param); \n } else { \n for (var i in param) { \n var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i); \n paramStr += urlEncode(param[i], k, encode); \n }\n }\n return paramStr;\n};\n\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\nurl=\"https://api-ks.wtzw.com/api/v1/chapter/content?\"+urlEncode(params)\ndecode(JSON.parse(java.ajax(url+','+java.get(\"headers\"))).data.content)\n\n"
},
"ruleExplore": {
"author": "$.author",
"bookList": "<js>\ngender=baseUrl.match(/gender=(\\d+)/)?baseUrl.match(/gender=(\\d+)/)[1]:\"\"\ncategory_id=baseUrl.match(/category_id=(\\d+)/)?baseUrl.match(/category_id=(\\d+)/)[1]:\"\"\nneed_filters=baseUrl.match(/need_filters=(\\d+)/)?baseUrl.match(/need_filters=(\\d+)/)[1]:\"\"\npage=baseUrl.match(/page=(\\d+)/)?baseUrl.match(/page=(\\d+)/)[1]:\"\"\nneed_category=baseUrl.match(/need_category=(\\d+)/)?baseUrl.match(/need_category=(\\d+)/)[1]:\"\"\ntag_id=baseUrl.match(/tag_id=(\\d+)/)?baseUrl.match(/tag_id=(\\d+)/)[1]:\"\"\nsign_key='d3dGiJc651gSQ8w1'\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\nheaders['sign']=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\n\n\nvar urlEncode = function (param, key, encode) {\n if(param==null) return '';\n var paramStr = '';\n var t = typeof (param);\n if (t == 'string' || t == 'number' || t == 'boolean') {\n paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param);\n } else {\n for (var i in param) {\n var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i);\n paramStr += urlEncode(param[i], k, encode);\n }\n }\n return paramStr;\n};\n\nvar category = function () {\n params={'gender':gender,'category_id':category_id,'need_filters':need_filters,'page':page,'need_category':need_category}\n params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n url=\"https://api-bc.wtzw.com/api/v4/category/get-list?\"+urlEncode(params)\n return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\nvar tag = function () {\n params={'gender':gender,'need_filters':need_filters,'page':page,'tag_id':tag_id}\n params['sign']=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\n url=\"https://api-bc.wtzw.com/api/v4/tag/index?\"+urlEncode(params)\n return java.ajax(url+','+java.put(\"headers\",JSON.stringify({\"headers\":headers})))\n};\n\n\nif(baseUrl.match(/category/)){\n category()\n}else {\n tag()\n}\n</js>\n$.data.books",
"bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) { \n if(param==null) return ''; \n var paramStr = ''; \n var t = typeof (param); \n if (t == 'string' || t == 'number' || t == 'boolean') { \n paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param); \n } else { \n for (var i in param) { \n var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i); \n paramStr += urlEncode(param[i], k, encode); \n } \n } \n return paramStr; \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"https://api-bc.wtzw.com/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
"coverUrl": "$.image_link",
"intro": "$.intro",
"kind": "$.ptags",
"name": "$.title",
"wordCount": "$.words_num"
},
"ruleSearch": {
"author": "original_author",
"bookList": "data.books",
"bookUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nparams={'id':{{$.id}},'imei_ip':'2937357107','teeny_mode':0}\n\nvar urlEncode = function (param, key, encode) { \n if(param==null) return ''; \n var paramStr = ''; \n var t = typeof (param); \n if (t == 'string' || t == 'number' || t == 'boolean') { \n paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param); \n } else { \n for (var i in param) { \n var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i); \n paramStr += urlEncode(param[i], k, encode); \n } \n } \n return paramStr; \n};\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nparams['sign']=paramSign\n\"/api/v4/book/detail?\"+urlEncode(params)+\",\"+java.get(\"headers\")",
"coverUrl": "image_link",
"intro": "intro",
"kind": "ptags",
"name": "original_title",
"wordCount": "words_num"
},
"ruleToc": {
"chapterList": "data.chapter_lists",
"chapterName": "title",
"chapterUrl": "id",
"updateTime": "{{$.words}} 字"
},
"searchUrl": "@js:\nsign_key='d3dGiJc651gSQ8w1'\n\nheaders={'app-version':'51110','platform':'android','reg':'0','AUTHORIZATION':'','application-id':'com.****.reader','net-env':'1','channel':'unknown','qm-params':''}\n\nparams={'gender':'3','imei_ip':'2937357107','page':page,'wd':key}\n\nvar urlEncode = function (param, key, encode) { \n if(param==null) return ''; \n var paramStr = ''; \n var t = typeof (param); \n if (t == 'string' || t == 'number' || t == 'boolean') { \n paramStr += '&' + key + '=' + ((encode==null||encode) ? encodeURIComponent(param) : param); \n } else { \n for (var i in param) { \n var k = key == null ? i : key + (param instanceof Array ? '[' + i + ']' : '.' + i); \n paramStr += urlEncode(param[i], k, encode); \n } \n } \n return paramStr; \n};\n\nheaderSign=String(java.md5Encode(Object.keys(headers).sort().reduce((pre,n)=>pre+n+'='+headers[n],'')+sign_key))\nparamSign=String(java.md5Encode(Object.keys(params).sort().reduce((pre,n)=>pre+n+'='+params[n],'')+sign_key))\nheaders['sign']=headerSign\nparams['sign']=paramSign\nbody=urlEncode(params)\n\n\"/api/v5/search/words?\" +body+\",\"+java.put(\"headers\",JSON.stringify({\"headers\":headers}))",
"weight": 0
},
{
"bookSourceComment": "分享者:渊呀",
"bookSourceGroup": "Namo",
"bookSourceName": "蜂毒小说",
"bookSourceType": 0,
"bookSourceUrl": "http://api.sz456.com.cn",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 12,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "热血都市::http://st.sz456.com.cn/api/book/block/1358_{{page}}.json\n东方玄幻::http://st.sz456.com.cn/api/book/block/1359_{{page}}.json\n悬疑灵异::http://st.sz456.com.cn/api/book/block/1361_{{page}}.json\n历史军事::http://st.sz456.com.cn/api/book/block/1355_{{page}}.json\n仙侠武侠::http://st.sz456.com.cn/api/book/block/1357_{{page}}.json\n科幻虚拟::http://st.sz456.com.cn/api/book/block/1360_{{page}}.json\n现代言情::http://st.sz456.com.cn/api/book/block/1356_{{page}}.json\n古代言情::http://st.sz456.com.cn/api/book/block/1362_{{page}}.json\n幻想言情::http://st.sz456.com.cn/api/book/block/1363_{{page}}.json\n主编力荐::http://st.sz456.com.cn/api/book/block/1323_{{page}}.json\n热门找书::http://st.sz456.com.cn/api/book/block/1824_{{page}}.json\n热门榜单::http://st.sz456.com.cn/api/book/block/1336_{{page}}.json\n全网热更::http://st.sz456.com.cn/api/book/block/1335_{{page}}.json\n女生爆款::http://st.sz456.com.cn/api/book/block/1326_{{page}}.json\n猜你喜欢::http://st.sz456.com.cn/api/book/block/1329_{{page}}.json\n男神专区::http://st.sz456.com.cn/api/book/block/1351_{{page}}.json\n女神专区::http://st.sz456.com.cn/api/book/block/1352_{{page}}.json",
"header": "{\"Version-Code\":\"30000\",\"Channel\":\"xiaomi\",\"appid\":\"fengduxs\"}",
"lastUpdateTime": 1648602242205,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "author_name",
"coverUrl": "book_cover",
"init": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.lang,\n Packages.javax.crypto.spec,\n Packages.javax.crypto,\n Packages.android.util\n);\n\nwith(javaImport){\n function decrypt(str){\n var key=SecretKeySpec(String(\"ZKYm5vSUhvcG9IbXNZTG1pb2\").getBytes(),\"DESede\");\n var iv=IvParameterSpec(String(\"01234567\").getBytes());\n var bytes=Base64.decode(String(str).getBytes(),2);\n var chipher=Cipher.getInstance(\"DESede/CBC/PKCS5Padding\");\n chipher.init(2,key,iv);\n return String(chipher.doFinal(bytes));\n }\n}\ndecrypt(JSON.parse(result).data.replace(/(\\r\\n)|(\\n)|(\\r)/g,''))\n</js>result",
"intro": "book_brief",
"kind": "category_name&&book_tags",
"lastChapter": "{{$.chapter_new_name}}·{{String(java.timeFormat(java.getString('$.chapter_time')*1000)).replace(/\\s.+/,'')}}",
"name": "book_name",
"tocUrl": "@js:\nlet bid=parseInt(java.getString('$.book_id'))\nlet subPath=parseInt(bid/1000)\n\"http://st.sz456.com.cn/api/book/chapter/\"+subPath+\"/\"+bid+\"/list.json\"",
"wordCount": "book_word_num"
},
"ruleContent": {
"content": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.lang,\n Packages.javax.crypto.spec,\n Packages.javax.crypto,\n Packages.android.util\n);\n\nwith(javaImport){\n function decrypt(str){\n var key=SecretKeySpec(String(\"ZKYm5vSUhvcG9IbXNZTG1pb2\").getBytes(),\"DESede\");\n var iv=IvParameterSpec(String(\"01234567\").getBytes());\n var bytes=Base64.decode(String(str).getBytes(),2);\n var chipher=Cipher.getInstance(\"DESede/CBC/PKCS5Padding\");\n chipher.init(2,key,iv);\n return String(chipher.doFinal(bytes));\n }\n}\ndecrypt(JSON.parse(result).data.replace(/(\\r\\n)|(\\n)|(\\r)/g,''))\n</js>content"
},
"ruleExplore": {
"author": "author_name",
"bookList": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.lang,\n Packages.javax.crypto.spec,\n Packages.javax.crypto,\n Packages.android.util\n);\n\nwith(javaImport){\n function decrypt(str){\n var key=SecretKeySpec(String(\"ZKYm5vSUhvcG9IbXNZTG1pb2\").getBytes(),\"DESede\");\n var iv=IvParameterSpec(String(\"01234567\").getBytes());\n var bytes=Base64.decode(String(str).getBytes(),2);\n var chipher=Cipher.getInstance(\"DESede/CBC/PKCS5Padding\");\n chipher.init(2,key,iv);\n return String(chipher.doFinal(bytes));\n }\n}\ndecrypt(JSON.parse(result).data.replace(/(\\r\\n)|(\\n)|(\\r)/g,''))\n</js>result.book_list",
"bookUrl": "@js:\nlet bid=parseInt(java.getString('$.book_id'))\nlet subPath=parseInt(bid/1000)\n\"http://st.sz456.com.cn/api/book/detail/\"+subPath+\"/\"+bid+\".json\"",
"coverUrl": "book_cover",
"intro": "book_brief",
"kind": "{{$.category_name}},{{$.book_tags}},评分{{$.book_level}}",
"lastChapter": "{{$.chapter_new_name}}·{{String(java.timeFormat(java.getString('$.chapter_time')*1000)).replace(/\\s.+/,'')}}",
"name": "book_name@put:{bid:$.book_id}",
"wordCount": "book_word_num"
},
"ruleSearch": {
"author": "author_name",
"bookList": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.lang,\n Packages.javax.crypto,\n Packages.javax.crypto.spec,\n Packages.android.util\n);\n\nwith(javaImport){\n function decrypt(str){\n var key=SecretKeySpec(String(\"ZKYm5vSUhvcG9IbXNZTG1pb2\").getBytes(),\"DESede\");\n var iv=IvParameterSpec(String(\"01234567\").getBytes());\n var bytes=Base64.decode(String(str).getBytes(),2);\n var chipher=Cipher.getInstance(\"DESede/CBC/PKCS5Padding\");\n chipher.init(2,key,iv);\n return String(chipher.doFinal(bytes));\n }\n}\ndecrypt(JSON.parse(result).data.replace(/(\\r\\n)|(\\n)|(\\r)/g,''))\n</js>result",
"bookUrl": "@js:\nlet bid=parseInt(java.getString('$.book_id'))\nlet subPath=parseInt(bid/1000)\n\"http://st.sz456.com.cn/api/book/detail/\"+subPath+\"/\"+bid+\".json\"",
"coverUrl": "book_cover",
"intro": "book_brief",
"kind": "{{$.category_name}},{{$.book_tags}},评分{{$.book_level}}",
"lastChapter": "{{$.chapter_new_name}}·{{String(java.timeFormat(java.getString('$.chapter_time')*1000)).replace(/\\s.+/,'')}}",
"name": "book_name@put:{bid:$.book_id}",
"wordCount": "book_word_num"
},
"ruleToc": {
"chapterList": "<js>\nvar javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.lang,\n Packages.javax.crypto.spec,\n Packages.javax.crypto,\n Packages.android.util\n);\n\nwith(javaImport){\n function decrypt(str){\n var key=SecretKeySpec(String(\"ZKYm5vSUhvcG9IbXNZTG1pb2\").getBytes(),\"DESede\");\n var iv=IvParameterSpec(String(\"01234567\").getBytes());\n var bytes=Base64.decode(String(str).getBytes(),2);\n var chipher=Cipher.getInstance(\"DESede/CBC/PKCS5Padding\");\n chipher.init(2,key,iv);\n return String(chipher.doFinal(bytes));\n }\n}\ndecrypt(JSON.parse(result).data.replace(/(\\r\\n)|(\\n)|(\\r)/g,''))\n</js>result",
"chapterName": "chapter_name",
"chapterUrl": "http://st.sz456.com.cn/api/book/chapter/{{parseInt(java.get('bid')/1000)}}/@get:{bid}/{{$._id}}.json",
"isVip": "is_free",
"updateTime": "{{$.words_count}} 字"
},
"searchUrl": "/search/book/result,{\"method\":\"POST\",\"body\":\"kw={{key}}&pn={{page}}&is_author=0\"}",
"weight": 0
},
{
"bookSourceComment": "分享者:渊呀",
"bookSourceGroup": "Namo",
"bookSourceName": "乐兔阅读",
"bookSourceType": 0,
"bookSourceUrl": "http://door.tl05.com",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 13,
"enabled": true,
"enabledExplore": true,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602251899,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "author",
"coverUrl": "cover",
"init": "data.book",
"intro": "description",
"kind": "tag.tab&&finished",
"lastChapter": "{{$.last_chapter}}·{{$.last_chapter_time}}",
"name": "name@put:{bid:$.book_id}",
"tocUrl": "@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\ntime=Math.round(new Date()/1000);\nlist=[\"book_id={{$.book_id}}\",\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"sysVer=7.1.2\",\"osType=2\",\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"book_id\":{{$.book_id}},\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\n\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\n\"/chapter/new-catalog,\" + JSON.stringify(option);",
"wordCount": "total_words"
},
"ruleContent": {
"content": "data.content"
},
"ruleExplore": {},
"ruleSearch": {
"author": "author",
"bookList": "data.list",
"bookUrl": "@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\ntime=Math.round(new Date()/1000);\nlist=[\"book_id={{$.book_id}}\",\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"sysVer=7.1.2\",\"osType=2\",\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"book_id\":{{$.book_id}},\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\n\"/book/info,\" + JSON.stringify(option);",
"coverUrl": "cover",
"intro": "description",
"kind": "tag.tab&&finished",
"lastChapter": "@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\ntime=Math.round(new Date()/1000);\nlist=[\"book_id={{$.book_id}}\",\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"sysVer=7.1.2\",\"osType=2\",\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"book_id\":{{$.book_id}},\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\nresp=JSON.parse(java.ajax(\"http://door.tl05.com/book/info,\"+JSON.stringify(option)));\nresp.data.book.last_chapter+\"·\"+resp.data.book.last_chapter_time",
"name": "name",
"wordCount": "@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\ntime=Math.round(new Date()/1000);\nlist=[\"book_id={{$.book_id}}\",\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"sysVer=7.1.2\",\"osType=2\",\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"book_id\":{{$.book_id}},\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\nJSON.parse(java.ajax(\"http://door.tl05.com/book/info,\"+JSON.stringify(option))).data.book.total_words"
},
"ruleToc": {
"chapterList": "data.chapter_list",
"chapterName": "chapter_title@put:{a:$.next_chapter}",
"chapterUrl": "@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\n//java.log(result)\ntime=Math.round(new Date()/1000);\nlist=[\"book_id={{$.book_id}}\",\"chapter_id={{$.chapter_id}}\",\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"sysVer=7.1.2\",\"osType=2\",\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"book_id\":{{$.book_id}},\"chapter_id\":{{$.chapter_id}},\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\n\"/chapter/text,\" + JSON.stringify(option);",
"nextTocUrl": "<js>result</js>$.data.chapter_list[-1].last_chapter\n@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\ntime=Math.round(new Date()/1000);\nlist=[\"book_id=\"+java.get('bid'),\"chapter_id=\"+result[0],\"scroll_type=1\",\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"sysVer=7.1.2\",\"osType=2\",\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"book_id\":String(java.get('bid')),\"chapter_id\":String(result[0]),\"scroll_type\":\"1\",\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\n\"/chapter/new-catalog,\" + JSON.stringify(option);\n\n",
"updateTime": "\n"
},
"searchUrl": "@js:\nfunction sign(list){\n var sb='p33d3d7giyv8hlsd';\n list=list.sort();\n for(var i=0;i<list.length;i++){if(i==0){sb+=list[i];}else{sb+=\"&\";sb+=list[i];}}\n sb+=\"ac9de0edzhozh5fwcqi3bn0w5cqvht0u\";\n return String(java.md5Encode(sb)).toUpperCase();\n}\ntime=Math.round(new Date()/1000);\nlist=[\"packageName=com.letuapp.reader\",\"time=\"+time,\"token=\",\"marketChannel=xiaomi\",\"appId=\",\"page_num=\"+page,\"sysVer=7.1.2\",\"osType=2\",\"keyword=\"+key,\"udid=1f705dac-2eec-3045-96be-713264df32c2\",\"ver=1.4.1\",\"product=1\"];\nbody={\"sign\":sign(list),\"packageName\":\"com.letuapp.reader\",\"time\":time,\"token\":\"\",\"marketChannel\":\"xiaomi\",\"appId\":\"\",\"page_num\":page,\"sysVer\":\"7.1.2\",\"osType\":\"2\",\"keyword\":key,\"udid\":\"1f705dac-2eec-3045-96be-713264df32c2\",\"ver\":\"1.4.1\",\"product\":\"1\"};\noption={\"method\":\"POST\",\"body\":JSON.stringify(body)};\n\"/book/search,\" + JSON.stringify(option);",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "饭团看书",
"bookSourceType": 0,
"bookSourceUrl": "http://www.fantuankanshu.com/",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 14,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602259816,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作者.",
"coverUrl": "[email protected]@src",
"intro": "class.intro@text",
"kind": "[email protected]@text##类别.",
"lastChapter": "[email protected]@text&&[email protected]@text##时间.|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.contents@html##cxzww.com"
},
"ruleExplore": {},
"ruleSearch": {
"author": "tag.td.3@text",
"bookList": "[email protected]!0",
"bookUrl": "tag.a.0@href",
"kind": "tag.td.0@text",
"lastChapter": "tag.a.1@text&&tag.td.-2@text",
"name": "tag.a.0@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "http://www.fantuankanshu.com/search.php?keyword={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "爱阅书香",
"bookSourceType": 0,
"bookSourceUrl": "http://www.aiyueshuxiang.com/",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 14,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602265912,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作.*者.",
"coverUrl": "[email protected]@src",
"intro": "id.intro@text",
"lastChapter": "[email protected]@text&&[email protected]@text##最后更新.|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "[email protected]@text##ranwen.la"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.s4@text",
"bookList": "[email protected]!0",
"bookUrl": "tag.a.0@href",
"kind": "class.s1@text",
"lastChapter": "tag.a.1@text&&class.s6@text",
"name": "tag.a.0@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "http://www.aiyueshuxiang.com/search.php?keyword={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "Namo",
"bookSourceName": "百盟书网",
"bookSourceType": 0,
"bookSourceUrl": "http://www.baimengshu.com/",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": 14,
"enabled": true,
"enabledExplore": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1648602271162,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@text##作者.",
"coverUrl": "[email protected]@src",
"intro": "class.intro@text",
"kind": "[email protected]@text##类别.",
"lastChapter": "[email protected]@text&&[email protected]@text##时间.|..\\:.*",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "id.contents@html##fantuankanshu.com"
},
"ruleExplore": {},
"ruleSearch": {