-
Notifications
You must be signed in to change notification settings - Fork 1
/
8488_494332d83f4d4f10a62d7d3daaeffbc3.json
1045 lines (1045 loc) · 38.2 KB
/
8488_494332d83f4d4f10a62d7d3daaeffbc3.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
[
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "玄幻阁PC",
"bookSourceType": 0,
"bookSourceUrl": "http://www.xuanyge.org/",
"customOrder": 5,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731480518740,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"tocUrl": "[property$=read_url]@content"
},
"ruleContent": {
"content": "#content@html",
"replaceRegex": "##随机推荐:.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "[email protected]@text",
"bookList": "#sitebox dl",
"bookUrl": "h3@a@href",
"coverUrl": "dt@img@src",
"lastChapter": "dd.2@a@text",
"name": "h3@a@text",
"wordCount": "[email protected]@text"
},
"ruleToc": {
"chapterList": "#readerlist ul li a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "http://www.xuanyge.org/modules/article/search.php?s=7673184438602983814&s={{key}}&searchtype=articlename",
"weight": 0
},
{
"bookSourceComment": "// api写法搜索地址在header里查看:https://www.bg94.cc/user/search.html?q={{key}}\n// 常规写法get的动态加载:/s?q={{key}},{\n \"webView\": true\n}\n// 11.23修,电脑网页搜索有问题,换手机网站,详情页加目录url,目录页以后重写",
"bookSourceGroup": "S_Lin",
"bookSourceName": "笔趣阁94API ",
"bookSourceType": 0,
"bookSourceUrl": "https://m.bg94.cc/",
"customOrder": 6,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "",
"lastUpdateTime": 1732353048510,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"tocUrl": ".book_more a@href"
},
"ruleContent": {
"content": "#chaptercontent@html",
"nextContentUrl": "text.下一章@href",
"replaceRegex": "##.*bg94.*|.*点此报错.*|.*加入书签.*|.*温馨提示.*",
"sourceRegex": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": "$.author",
"bookList": "$.[*]",
"bookUrl": "$.url_list",
"coverUrl": "$.url_img",
"intro": "$.intro",
"lastChapter": "",
"name": "$.articlename"
},
"ruleToc": {
"chapterList": ".book_last dl dd!0",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "/user/search.html?q={{key}}",
"weight": 0
},
{
"bookSourceComment": "//请求头换windows过不了验证\n//验证代码 by GEd520\n//过完验证,返回在重新调试",
"bookSourceGroup": "S_Lin",
"bookSourceName": "69书吧read ",
"bookSourceType": 0,
"bookSourceUrl": "https://www.69read.net/",
"bookUrlPattern": "",
"customOrder": 7,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Mobile Safari/537.36\"}",
"lastUpdateTime": 1732353266627,
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"tocUrl": "text.完整目录@href",
"wordCount": ""
},
"ruleContent": {
"content": ".txtnav@html"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".labelbox label.0@text",
"bookList": "<js>\nif (result.match(/Just a moment/)) {\n\tcookie.removeCookie(baseUrl);\n\tjava.startBrowserAwait(baseUrl,\"验证\");\n\tresult=java.ajax(baseUrl);\n}\nresult;\n</js>\n.newbox@li",
"bookUrl": ".newnav h3 a.1@href",
"checkKeyWord": "",
"coverUrl": ".imgbox img@src",
"intro": ".newnav ol@text",
"kind": ".labelbox label.1@text",
"lastChapter": ".zxzj@p@a@text",
"name": ".newnav h3 a.1@text"
},
"ruleToc": {
"chapterList": ".catalog li a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://www.69read.net/search.php,{\n\"charset\": \"UTF-8\", \n\"method\": \"POST\", \n\"body\": \"keyword={{key}}&searchtype=all\"\n}",
"variableComment": "",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "玄幻阁手机",
"bookSourceType": 0,
"bookSourceUrl": "http://wap.xuanyge.org/",
"customOrder": 8,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731403584724,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@a@text",
"coverUrl": ".block_img2@img@src",
"kind": "[email protected]@a@text",
"lastChapter": "[email protected]@a@text",
"name": ".block_txt2@h2@a@text",
"tocUrl": "text.查看目录@href"
},
"ruleContent": {
"content": "#nr1@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##.*本章未完.*|.*下一页.*|.*{{String(java.get('title'))}}|.*(\\d+\\/\\d+)+.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "a.2@text",
"bookList": ".line",
"bookUrl": "a.1@href",
"kind": "a.0@text",
"name": "a.1@text"
},
"ruleToc": {
"chapterList": ".chapter@li@a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "text.下一页@href"
},
"searchUrl": "/modules/article/waps.php,{\n \"body\": \"searchtype=articlename&searchkey={{key}}&submit=\",\n \"charset\": \"UTF-8\",\n \"method\": \"POST\"\n}",
"weight": 0
},
{
"bookSourceComment": "解决搜索30秒的办法\n基本页的登录检查JS填:cookie.removeCookie(source.getKey())result\n搜索地址前面填:{{cookie.removeCookie(source.getKey())}}",
"bookSourceGroup": "S_Lin ",
"bookSourceName": "笔趣阁文学",
"bookSourceType": 0,
"bookSourceUrl": "https://www.biqugewxw.com/",
"bookUrlPattern": "",
"customOrder": 9,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "",
"lastUpdateTime": 1730991670033,
"loginCheckJs": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": ".info-main img@data-original",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=lastest_chapter_name]@content",
"name": "[property$=book_name]@content",
"wordCount": ""
},
"ruleContent": {
"content": "id.article@html",
"nextContentUrl": "text.下一页@href"
},
"ruleExplore": {},
"ruleSearch": {
"author": "span@text",
"bookList": ".category-div",
"bookUrl": ".commend-title@a@href",
"coverUrl": "img@data-original",
"intro": ".intro@text",
"name": "h3@text"
},
"ruleToc": {
"chapterList": ".info-chapters[-1]@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "{{cookie.removeCookie(source.getKey())}}\nhttps://www.biqugewxw.com/search/,{\n \"charset\": \"UTF-8\",\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "//目录判断与正文解密代码 by.夜泽川\n//正文翻页规则 by.Yolo\n//注:此网站不适合新手练习,会js的可试试此源",
"bookSourceGroup": "S_Lin,不会js不推荐新手写",
"bookSourceName": "随梦小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.suimeng.la/",
"customOrder": 18,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "{'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36'}",
"lastUpdateTime": 1732418935871,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".details .p i@a@text",
"coverUrl": "",
"intro": ".details p.1@text",
"lastChapter": ".info_dv2 .title@text",
"name": ".info_dv1 .details h2@text",
"tocUrl": ""
},
"ruleContent": {
"content": "<js>\nvar bes = result.match(/PHA\\+[A-Za-z0-9+\\/]+={0,2}/g);\n//java.log(String(bes))\nif (!bes) {\n var ml = java.webView(null,baseUrl,null);\n var txt = java.getString(\"#txt@html\");\n java.longToast(\"正文解密失败,转为webView动态加载。\");\n} else {\nvar result = [];\nfor (var i = 0; i < bes.length; i++) {\n // 遍历数组,使用阅读内置Base64解码方法\n var bsej = java.base64Decode(bes[i]);\n var txtt = String(bsej);\n result.push(txtt);\n }\n\tvar txt = result.join('\\n');\n}\ntxt;\n</js>",
"nextContentUrl": "text.下一@href\n@js:\nvar next=/_\\d+\\.html/.test(result) ? result : '';\nnext;\n//text.下一章@href \n//也可以"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".s3@a@text",
"bookList": "#novel-search li",
"bookUrl": ".s2@a@href",
"checkKeyWord": "",
"kind": ".s1@text",
"name": ".s2@a@text"
},
"ruleToc": {
"chapterList": "@js: var result = []\nif (!baseUrl.includes('index')) {\n //java.log(\"当前目录在详情页\")\n var chnList = java.getStringList(\"ul[class=yanqing_list].1@a@text\");\n var chfList = java.getStringList(\"ul[class=yanqing_list].1@a@href\");\n} else {\n //java.log(\"当前目录跳转新页面\")\n var chnList = java.getStringList(\".yanqing_list a@text\");\n var chfList = java.getStringList(\".yanqing_list a@onclick\");\n}\n\nfor (var i = 0; i < chfList.length; i++) {\n\tchfList[i] = String(chfList[i]).replace(/read_tz\\((\\d+)\\)\\;/g,book.bookUrl + \"$1.html\");\n\tvar chn = Array.from(chnList);\n var chf = Array.from(chfList);\n result.push({\n title: chn[i],\n url: chf[i]\n });\n}\n\nif (result.length === 0) {\n // 如果目录数据为空,则弹窗提示\n java.longToast(\"当前书籍无数据\");\n} else {\n result = result;\n}\nresult;",
"chapterName": "title",
"chapterUrl": "url",
"nextTocUrl": "@js: var ml = \"https://m.suimeng.la\" + java.getString(\"text.章节目录@href\");\nvar cf = java.ajax(ml);\nvar next = java.getStringList(\"option@value\",cf);\nnext;",
"preUpdateJs": ""
},
"searchUrl": "https://www.suimeng.la/search.html,{\n \"charset\": \"UTF-8\",\n \"method\": \"POST\",\n \"body\": \"s={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "// 替换规则有的书没有,没写\n// 11.23失效,加请求头,搜索加人机验证,换手机m浏览器重写",
"bookSourceGroup": "S_Lin",
"bookSourceName": "霹雳书屋 ",
"bookSourceType": 0,
"bookSourceUrl": "https://www.pilishuwu.com/",
"customOrder": 19,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "{\"User-Agent\":\"Mozilla/5.0 (Linux; Android 12; Mi 10 Build/SKQ1.211006.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/130.0.6723.107 Mobile Safari/537.36\"}",
"lastUpdateTime": 1732357495328,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".x-detail__info--author@text",
"intro": ".x-detail__intro--content@text",
"kind": ".x-detail__info--words.0@text##分类:",
"lastChapter": ".x-catalog__new@text",
"name": ".x-detail__info--title@text",
"tocUrl": "text.更多目录@href"
},
"ruleContent": {
"content": "#chapterContent@html",
"replaceRegex": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": ".book-status@text",
"bookList": "<js>\nif (result.match(/Just a moment/)) {\n\tcookie.removeCookie(baseUrl);\n\tjava.startBrowserAwait(baseUrl,\"验证\");\n\tresult=java.ajax(baseUrl);\n}\nresult;\n</js>\n.x-book",
"bookUrl": ".x-book__text--multi@a@href",
"coverUrl": "img@src",
"intro": ".x-book__intro@text",
"kind": ".book-fenlei@text",
"lastChapter": "",
"name": ".x-book__info--name@text",
"wordCount": ".book-wordcount@text"
},
"ruleToc": {
"chapterList": ".chapter@a",
"chapterName": "text",
"chapterUrl": "href##$##,{\"webView\":true}"
},
"searchUrl": "/search/0/{{key}}/{{page}}.html",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "笔趣阁22",
"bookSourceType": 0,
"bookSourceUrl": "https://www.22biqu.com/",
"customOrder": 20,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731306948595,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": ".detail-box .imgbox img@src",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=lastest_chapter_name]@content",
"name": "[property$=book_name]@content"
},
"ruleContent": {
"content": ".reader-main .content@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##ps:.*|.*本章完.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".s4@text",
"bookList": ".txt-list li!0",
"bookUrl": ".s2@a@href",
"kind": ".s1@text",
"lastChapter": ".s3@a@text",
"name": ".s2@a@text"
},
"ruleToc": {
"chapterList": ".section-list.1@li@a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "text.下一页@href"
},
"searchUrl": "{{cookie.removeCookie(source.getKey())}}\nhttps://www.22biqu.com/ss/,{\n\"charset\": \"UTF-8\", \n\"method\": \"POST\", \n\"body\": \"searchkey={{key}}&submit=搜索\"\n}",
"weight": 0
},
{
"bookSourceComment": "// 书名后跟一些文字,如:全文阅读完整版之类的,替换规则没写",
"bookSourceGroup": "S_Lin",
"bookSourceName": "笔趣鸽",
"bookSourceType": 0,
"bookSourceUrl": "https://www.ahfgb.com/",
"customOrder": 22,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731254138693,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"wordCount": ""
},
"ruleContent": {
"content": "#content@html",
"replaceRegex": "##.*下载好阅小说.*|.*笔趣鸽.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "[email protected]@span.1@text",
"bookList": ".gameblock-result-list .result-game-item",
"bookUrl": ".result-game-item-title@a@href",
"coverUrl": ".result-game-item-pic@a@img@src",
"intro": ".result-game-item-desc@text",
"kind": "[email protected]@span.1@text",
"lastChapter": ".result-game-item-info-tag-item@text",
"name": ".result-game-item-title-link@text"
},
"ruleToc": {
"chapterList": "#list dd@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://www.ahfgb.com/search.php?keyword={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "博爱书屋",
"bookSourceType": 0,
"bookSourceUrl": "http://www.bequgew.info/",
"customOrder": 23,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731166458398,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".info h3@a@text",
"coverUrl": ".img@img@src",
"intro": "#intro@p@text",
"kind": ".info p.0@text##所属类型:",
"lastChapter": ".info span@a@text",
"name": ".info h1@text"
},
"ruleContent": {
"content": ".book_content_text@html",
"replaceRegex": "##\\<\\!\\-\\-.*|作者:.*|书名:.*|类别:.*|.*\\-\\-\\>|上一页.*|.*下一页"
},
"ruleExplore": {},
"ruleSearch": {
"author": "td.2@text",
"bookList": "tbody tr!0",
"bookUrl": "td.0@a@href",
"lastChapter": "td.1@a@text",
"name": "td.0@a@text",
"wordCount": "td.3@text"
},
"ruleToc": {
"chapterList": "#chapterlist li",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "http://www.bequgew.info/modules/article/search.php?searchkey={{key}}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "奇书网",
"bookSourceType": 0,
"bookSourceUrl": "http://www.xqishuta.net/",
"customOrder": 24,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1732283267358,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".detail .detail_right ul li.5@text##书籍作者:",
"coverUrl": ".detail .detail_pic img@src",
"intro": ".showInfo@p@text",
"lastChapter": ".detail .detail_right ul li.7@a@text",
"name": ".detail .detail_right h1@text##\\《|\\》|全集",
"tocUrl": "[email protected]@a@href"
},
"ruleContent": {
"content": "#content1@html",
"replaceRegex": "##最新网址:.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "td.2@text",
"bookList": "tbody@tr!0",
"bookUrl": "td.1@a@href",
"lastChapter": "td.3@a@text",
"name": "td.1@a@text"
},
"ruleToc": {
"chapterList": ".pc_list.1@li",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "http://www.xqishuta.net/search.html?searchkey={{key}}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "笔趣阁34",
"bookSourceType": 0,
"bookSourceUrl": "https://www.bqg34.org/",
"customOrder": 25,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731226147679,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": ".img-thumbnail@src",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=latest_chapter_name]@content",
"name": "[property$=book_name]@content",
"wordCount": ""
},
"ruleContent": {
"content": "#htmlContent@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##笔趣阁.*|.*免费阅读.*|\\>.*|\\.*>|.*本章.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "td.3@text",
"bookList": ".table@tr!0",
"bookUrl": "td.1@a@href",
"kind": "td.0@text",
"lastChapter": "td.2@a@text",
"name": "td.1@a@text"
},
"ruleToc": {
"chapterList": ".panel-chapterlist a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "text.下一页@href"
},
"searchUrl": "https://www.bqg34.org/modules/article/search.php?searchkey={{key}}&page={{page}},{\n \"charset\": \"gbk\"\n}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "全本小说网",
"bookSourceType": 0,
"bookSourceUrl": "https://www.quanben.so/",
"customOrder": 26,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731226782717,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": "[property$=latest_chapter_name]@content##正文 ",
"name": "[property$=book_name]@content",
"wordCount": "#info p.2@text##.* \\[共|\\]"
},
"ruleContent": {
"content": "#content@html",
"replaceRegex": "##全本小说网 .*"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".s4@text",
"bookList": ".novelslistss li ",
"bookUrl": ".s2@a@href",
"kind": ".s1@text",
"lastChapter": ".s3@a@text",
"name": ".s2@a@text"
},
"ruleToc": {
"chapterList": "#list dd[12:]",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "https://www.quanben.so/modules/article/search.php?searchkey={{key}}&page={{page}},{\n \"charset\": \"gbk\"\n}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "52小说",
"bookSourceType": 0,
"bookSourceUrl": "http://www.xs52.info/",
"customOrder": 27,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1731228483527,
"respondTime": 180000,
"ruleBookInfo": {
"name": ".chapter_list_novel_title h1@text"
},
"ruleContent": {
"content": "#text_c@html",
"replaceRegex": "##.*记住本站网址.*|.*XS52.*|.*百度输入.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "td.2@text",
"bookList": ".grid@tr!0",
"bookUrl": "[email protected]@href",
"kind": "[email protected]@text",
"lastChapter": "[email protected]@text",
"name": "[email protected]@text",
"wordCount": "td.3@text"
},
"ruleToc": {
"chapterList": ".chapter_list_chapterx a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "http://www.xs52.info/modules/article/search.php,{\n\"charset\": \"UTF-8\", \n\"method\": \"POST\", \n\"body\": \"searchkey={{key}}&submit=搜索\"\n}",
"weight": 0
},
{
"bookSourceComment": "目录列表规则 by 夜泽川",
"bookSourceGroup": "S_Lin",
"bookSourceName": "得间小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.idejian.com/",
"customOrder": 28,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1732417909297,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".detail_bkauthor@text",
"coverUrl": ".book_img img@src",
"intro": ".brief_con@text",
"kind": ".detail_bkgrade span.1@text",
"lastChapter": ".book_page .link_name a@text",
"name": ".detail_bkname a@text",
"tocUrl": "",
"wordCount": ".bk_fontinfo span.0@text"
},
"ruleContent": {
"content": ".h5_mainbody.1@html",
"replaceRegex": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": ".author@text",
"bookList": ".rank_ullist li",
"bookUrl": ".rank_bkname a@href",
"coverUrl": ".book_img img@src",
"intro": ".rank_bkbrief@text",
"lastChapter": ".rank_newpage a@text",
"name": ".rank_bkname a@text",
"wordCount": ".search_ohter span.1@text"
},
"ruleToc": {
"chapterList": "@js:\nvar bookid = baseUrl.match(/(\\d+)/)[1] \n// 从基础 URL(baseUrl)中使用正则表达式匹配数字,并获取第一个匹配到的数字,将其赋值给变量 bookid\nvar datasize = java.getString(\"#catelog@data-size\"); \n// 通过某种与 Java 交互的方式获取一个名为 \"#catelog@data-size\" 的字符串,并将其赋值给 datasize\nvar pages = Number(String(datasize)); \n// 将 datasize 转换为数字类型,并赋值给 pages\njava.log(\"目录总数\" + pages) \n// 使用与 Java 交互的方式打印出日志,显示目录总数\nvar v = \"\"; \n// 初始化一个空字符串 v ,用于后续存储整合的内容\nfor (page = 1; page <= pages; page++) { \n// 开始一个循环,从 1 到 pages 进行迭代\n var ul = \"https://www.idejian.com/catelog/\" +bookid + \"/1?page=\" + page; \n// 构建每个页面的 URL\n var rt = java.ajax(ul); \n// 通过某种与 Java 交互的方式发送 Ajax 请求获取 URL 的响应\n var list = JSON.parse(String(rt)).html; \n// 将响应的字符串解析为 JSON 对象,并获取其中的 html 部分\n //java.log(list) \n v += list + \"\\n\"; \n// 将每个页面获取到的 html 内容添加到 v 中,并添加换行符\n}\njava.setContent(v); \n// 使用与 Java 交互的方式设置内容为 v\nvar lists = java.getElement(\"li@a\"); \n// 通过与 Java 交互获取特定元素\nlists; \n// 可能是对获取到的元素进行后续处理,或者只是简单地返回",
"chapterName": "text",
"chapterUrl": "href",
"preUpdateJs": ""
},
"searchUrl": "https://www.idejian.com/search?keyword={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "17小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.1qxs.com/",
"customOrder": 29,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1730891913438,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".name span@text",
"coverUrl": ".book .image img@data-original",
"downloadUrls": "",
"init": "",
"intro": ".description@text",
"kind": "[email protected]@text##分类:",
"lastChapter": ".detail .label.2@text##最新章节 ",
"name": ".name h1@text",
"tocUrl": "[email protected]@href",
"wordCount": "[email protected]@text##字数:"
},
"ruleContent": {
"content": ".content@html",
"nextContentUrl": ".page a@href",
"replaceRegex": "##.*小说免费阅读.*|本章未完.*|本章.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".author@text",
"bookList": ".result_list ul li",
"bookUrl": ".image a@href",
"coverUrl": ".image img@src",
"intro": ".book .desc@text",
"kind": ".msg .type@text",
"lastChapter": "",
"name": "[email protected]@text",
"wordCount": ".msg .count@text"
},
"ruleToc": {
"chapterList": ".list ul li a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://www.1qxs.com/search.html?kw={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "S_Lin ",
"bookSourceName": "香书小说com 可搜索",
"bookSourceType": 0,
"bookSourceUrl": "https://www.xbiqugu.com/",
"customOrder": 30,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "",
"lastUpdateTime": 1730891920847,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".detail-box .info p.0@text",
"intro": ".detail-box .m-desc@text##简介:",
"kind": ".detail-box .info p.1@text##类 别:",
"lastChapter": ".detail-box .info p.4@text##最新章节:|.*.",
"name": ".detail-box h1@text",
"tocUrl": ""
},
"ruleContent": {
"content": "#content@html",
"nextContentUrl": "text.下一页@href##$##,{\"webView\":true}",
"replaceRegex": "##.*本章完.*|.*收藏月票.*|.*新书来啦.*|.*月票.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "class.s4@text",
"bookList": "class.txt-list@li!0",
"bookUrl": "class.s2@a@href",
"checkKeyWord": "",
"kind": "class.s1@text##\\[|\\]",
"lastChapter": "class.s3@text##.*.",
"name": "class.s2@a@text"
},
"ruleToc": {
"chapterList": ".section-box!0@li@a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "option@value||text.下一页@href##$##,{\"webView\":true}"
},
"searchUrl": "https://www.xbiqugu.com/so/,{\n \"charset\": \"UTF-8\",\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}&placeholder=&Submit=搜索\"\n}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin ",
"bookSourceName": "香书小说net",
"bookSourceType": 0,
"bookSourceUrl": "http://www.xbiqugu.net/",
"customOrder": 31,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": true,
"lastUpdateTime": 0,
"respondTime": 180000,
"ruleBookInfo": {
"author": "#info p.0@text",
"coverUrl": "#fmimg img@src",
"intro": "#intro p.1@text",
"kind": "#info p.1@text##:.*",
"lastChapter": "#info p.3@a@text",
"name": "#info h1@text"
},
"ruleContent": {
"content": "#content@html",
"replaceRegex": "##.*最新网址.*|.*点击进去.*|.*给个好评.*|.*香书小说.*|.*升级地址.*|.*书签.*|.*无广告.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": "td.2@text",
"bookList": ".grid@tr!0",
"bookUrl": "td.0@a@href",
"lastChapter": "td.1@a@text",
"name": "td.0@a@text"
},
"ruleToc": {
"chapterList": "#list dl dd",
"chapterName": "a@text",
"chapterUrl": "a@href"
},
"searchUrl": "http://www.xbiqugu.net/modules/article/waps.php,{\n \"charset\": \"UTF-8\",\n \"method\": \"POST\",\n \"body\":\"searchkey={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "// 11月6修:\n// 搜索地址经常改变,采用正则表达式\n// 通过ajax请求加载了url页面的内容,然后使用正则表达式 search.*action=\"(.+?)\" 去匹配页面\n// 中的搜索框form标签的action地址\n// search.*:匹配包含search关键字的内容,.*表示任意字符。\n// action=\"(.+?)\":查找action属性并捕获它的URL。(.+?)表示匹配非空的最短内容。\n// match(...)[1]:这个方法返回匹配的第一个分组,也就是action属性的URL\n// 正文替换净化规则",
"bookSourceGroup": "S_Lin ",
"bookSourceName": "铅笔小说",
"bookSourceType": 0,
"bookSourceUrl": "http://www.jundu8.com/",
"customOrder": 32,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1730891878318,
"respondTime": 180000,
"ruleBookInfo": {
"author": "[email protected]@a@text",
"coverUrl": "id.fmimg@img@data-original",
"intro": "id.intro@text",
"lastChapter": "[email protected]@text",
"name": "id.info@h1@text",
"tocUrl": "text.章节目录@href",
"wordCount": "[email protected]@text##字数:"
},
"ruleContent": {
"content": "id.content@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##本章未完,点击下一页继续阅读。|.*\\(免登录\\)"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".btm@a@text",
"bookList": "[email protected]",
"bookUrl": "class.item@a@href",
"coverUrl": ".item .image@img@data-original",
"intro": "dl dd@text",
"lastChapter": "",
"name": "dl@dt@a@text",
"wordCount": "[email protected]@text"
},
"ruleToc": {
"chapterList": "id.content_1@a",
"chapterName": "@text",
"chapterUrl": "@href##$##,{'webView': true}"
},
"searchUrl": "{{url=source.getKey();\ncookie.removeCookie(url)\njava.ajax(url).match(/search.*action=\"(.+?)\"/)[1]}}?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "11.6修复搜索失效问题 by梓橙\n偶尔校验失败,再次校验又成功了\n添加部分净化替换规则",
"bookSourceGroup": "S_Lin",
"bookSourceName": "图书世界",
"bookSourceType": 0,
"bookSourceUrl": "http://losqo2.9ap7f7xm9.xy930m.sbs/",
"customOrder": 33,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "",
"lastUpdateTime": 1730827909172,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".catalog .tab .p1@text",
"coverUrl": ".catalog .tu@img@src",
"intro": ".catalog .jj .p2@text",
"kind": ".catalog .tab1 .p4@text",
"lastChapter": ".info_chapters li.0@text",
"name": ".catalog h1@text",
"tocUrl": "text.全部章节@href",
"wordCount": ".catalog .tab1 .p6@text"
},
"ruleContent": {
"content": ".nr_function .novelcontent@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##\\s\\《第.*章.*》\\n*章节内容未完,点击下一页继续阅读。",
"webJs": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": "a.2@text",
"bookList": ".search_list",
"bookUrl": "a.0@href",
"checkKeyWord": "",
"kind": "a.1@text",
"name": "a.0@text"
},
"ruleToc": {
"chapterList": ".info_chapters .p2.1@li",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href",
"nextTocUrl": "text.下一页@href"
},
"searchUrl": "http://losqo2.9ap7f7xm9.xy930m.sbs/s.php,{\n \"charset\": \"gbk\",\n \"method\": \"POST\",\n \"body\":\"s={{java.put(\"key\",key)}}&type=articlename\"\n}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "必去楼",
"bookSourceType": 0,
"bookSourceUrl": "http://www.bequ6.org/",
"customOrder": 34,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "",
"lastUpdateTime": 1730891894783,
"respondTime": 180000,
"ruleBookInfo": {
"author": "#info p.0@text",
"coverUrl": "#fmimg img@src",
"init": "",
"intro": "#intro p@text",
"name": "#info h1@text"
},
"ruleContent": {
"content": ".box_con #content@html",
"replaceRegex": "##最新网址:www.bequ6.org"
},
"ruleExplore": {},
"ruleSearch": {
"author": "td.2@text",
"bookList": ".grid@tr!0",
"bookUrl": "td.1@a@href",
"checkKeyWord": "",
"intro": "",
"kind": "td.0@text",
"lastChapter": "td.3@a@text",
"name": "td.1@a@text"
},
"ruleToc": {
"chapterList": "#list dt:nth-of-type(3)~dd \n<js>\n// 使用css选择器获取第三个dt标签后的所有dd标签\n// 这是注释\nresult\n</js>",
"chapterName": "a@text",
"chapterUrl": "a@href",
"preUpdateJs": ""
},
"searchUrl": "http://www.bequ6.org/search,{\n \"charset\": \"UTF-8\",\n \"method\": \"POST\",\n \"body\": \"searchkey={{key}}&searchtype=articlename\"\n}",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "69书吧co 不挂梯 ",
"bookSourceType": 0,
"bookSourceUrl": "https://69shux.co/",
"customOrder": 35,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"header": "",
"lastUpdateTime": 1731630151145,
"respondTime": 180000,
"ruleBookInfo": {
"author": ".booknav2 p.0@a@text",
"coverUrl": ".bookimg2 img@src",
"init": "<js>java.t2s(result)</js>\n@js:\n//修复书籍重定向目录加载失败\nbook.bookUrl = baseUrl;\nresult; //设置当前url,并返回结果",
"intro": ".navtxt p@text",
"kind": ".booknav2 p.1@a@text",
"name": ".booknav2 h1@a@text",
"tocUrl": "{{baseUrl.replace(/book/, \"ajax_novels/chapterlist\")}}",
"wordCount": ".booknav2 p.2@text##\\| 连载"
},
"ruleContent": {
"content": "<js>java.t2s(result)</js>id.txtcontent@textNodes",
"replaceRegex": "",
"title": ""
},
"ruleExplore": {},
"ruleSearch": {
"author": ".labelbox label.0@text",
"bookList": "<js>java.t2s(result)</js>id.article_list_content@li",
"bookUrl": "h3@a@href",
"coverUrl": ".imgbox img@src",
"intro": "ol@text",
"kind": ".labelbox label.1@text",
"lastChapter": ".zxzj@text",
"name": "[email protected]@text"
},
"ruleToc": {
"chapterList": "<js>java.t2s(result)</js>ul li",
"chapterName": "a@text",
"chapterUrl": "a@href##$##,{'webView': true}"
},
"searchUrl": "https://69shux.co/search/{{key}}/{{page}}.html",
"weight": 0
},
{
"bookSourceGroup": "S_Lin",
"bookSourceName": "刺猬猫",
"bookSourceType": 0,
"bookSourceUrl": "https://www.ciweimao.com/",
"customOrder": 36,
"enabled": false,
"enabledCookieJar": true,
"enabledExplore": false,
"lastUpdateTime": 1730891906397,
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": "[property$=author]@content",
"coverUrl": "[property$=image]@content",
"intro": "[property$=description]@content",
"kind": "[property$=category]@content",
"lastChapter": ".book-info .update-time@text",
"name": "[property$=book_name]@content",
"tocUrl": ".book-chapter .btn-more@href",
"wordCount": ".book-info .book-grade b.2@text"
},
"ruleContent": {
"content": "#J_BookRead .chapter@textNodes",
"replaceRegex": "##.*新人新书求支持.*"
},
"ruleExplore": {},
"ruleSearch": {
"author": ".cnt [email protected]@text",
"bookList": ".rank-book-list li",
"bookUrl": ".cnt [email protected]@href",
"coverUrl": ".cover img@src",
"intro": ".cnt .desc@text",
"lastChapter": ".cnt p.2@text",
"name": "[email protected]@tag.a@text"
},
"ruleToc": {
"chapterList": ".book-chapter-list li a",
"chapterName": "@text",
"chapterUrl": "@href##$##,{'webView': true}"
},
"searchUrl": "/get-search-book-list/0-0-0-0-0-0/全部/{{key}}/{{page}}",
"weight": 0