-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path漫画.json
4279 lines (4279 loc) · 602 KB
/
漫画.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": "// 正文链接动态添加Referer头\n// 自动更新正文图片密钥\nlet domain = \".\";\n/**\n *@params options {Options|null}\n */\nObject.prototype.addOptions=function(options){let j={\"Referer\":baseUrl.replace(/,[\\s\\S]+\\}/,\"\")};if(!this.toString().includes(domain)){j.Referer=\"\"};options=options||{};options.headers=Object.assign(options.headers||{},j);return options?`${this.toString()},${JSON.stringify(options)}`:this.toString()};\n/**\n *@params func {Function|null}\n *@params options {Options|null}\n */\nObject.prototype.toImg=function(func,options){\n\tlet j=(u)=>`<img src=\"${u.addOptions(options)}\">`,h=(u,i,t)=>typeof func==\"function\"?j(func(u,i,t)):j(u);return Array.isArray(this)?this.map(h).join(\"\\n\"):h(this.toString())};\nfunction load(t){for(let o of t){let j = java.ajax(o);if(!/exception/.test(j))return[j,o]}throw\"Error: 所有链接下载失败\"}\n//阅读后台WebView解析密钥\nfunction parseKey(jsUrl){\njsBaseUrls=[\n\"https://raw.githubusercontents.com/Xwite/decodeObfuscator/main/\", \n\"https://raw.githubusercontent.com/Xwite/decodeObfuscator/main/\", \n \"https://cdn.jsdelivr.net/gh/Xwite/decodeObfuscator@main/\"];\n \nurls=[\"plugins/common.js\",\n\"plugins/manwa.js\",\n\"plugins/evalPacker.js\",\n\"tools/babel_asttool.js\",\n\"tools/config.js\",\n\"tools/decode.js\",\n\"tools/decodeOb.js\",\n\"tools/usefulPlugins.js\",\n];\njsBaseUrl = cache.get(\"decodeObfuscator\")\nif (!jsBaseUrl) {\njsBaseUrl = load(jsBaseUrls)[1];\njava.toast(jsBaseUrl);\ncache.put(\"decodeObfuscator\", jsBaseUrl)\n}\nString.prototype.toAbsUrl=function(){\n\treturn /^\\.\\/|^http|^content|^\\/sdcard|^\\/storage/.test(this) ? this : jsBaseUrl.concat(this)\n};\njava.log(jsBaseUrl);\nString.prototype.toAbsUrl=function(){\n\treturn /^\\.\\/|^http|^content|^\\/sdcard|^\\/storage/.test(this) ? this : jsBaseUrl.concat(this)\n}\n//解决跨域js加载问题\nfunction loadJS(urls){\n\t\n\treturn jsBaseUrl && urls.map(url=>script(java.importScript(url.toAbsUrl())))\n\t.join(\"\\n\") || \"\"\n\t}\n\t\nfunction script(content){\n\treturn `<script>${content};</script>`\n\t}\n\tjava.log(\">>>>> 本地密钥解密开始\");\n//html片段\nhtml = `<html><head>${loadJS(urls)}</head><body></body><script>\nfunction HttpGetText(url){return fetch(url).then(res=>res.text()).catch(err=>alert(err));};\nHttpGetText(\"${jsUrl}\").then(js=>decode(js,[manwa])).catch(e=>keys=e);\n</script></html>`;\nkey = JSON.parse(java.webView(html, source.getVariable(),\"keys\"))[0];\njava.log(key);\nreturn key\n}",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫蛙",
"bookSourceType": 2,
"bookSourceUrl": "https://manwa.space",
"bookUrlPattern": "",
"customOrder": -2085984648,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "全部::/booklist/?page={{page}}\n校园::/booklist?page={{page}}&tag=校园\n搞笑::/booklist?page={{page}}&tag=搞笑\n后宫::/booklist?page={{page}}&tag=后宫\n生活::/booklist?page={{page}}&tag=生活\n恋爱::/booklist?page={{page}}&tag=恋爱\n霸总::/booklist?page={{page}}&tag=霸总\n玄幻::/booklist?page={{page}}&tag=玄幻\n热血::/booklist?page={{page}}&tag=热血\n科幻::/booklist?page={{page}}&tag=科幻\n竞技::/booklist?page={{page}}&tag=竞技\n灵异::/booklist?page={{page}}&tag=灵异\n冒险::/booklist?page={{page}}&tag=冒险\n古风::/booklist?page={{page}}&tag=古风\n同人::/booklist?page={{page}}&tag=同人\n真人::/booklist?page={{page}}&tag=真人\n悬疑::/booklist?page={{page}}&tag=悬疑\n架空::/booklist?page={{page}}&tag=架空\n穿越::/booklist?page={{page}}&tag=穿越\n动作::/booklist?page={{page}}&tag=动作\n耽美::/booklist?page={{page}}&tag=耽美\n战争::/booklist?page={{page}}&tag=战争\n恐怖::/booklist?page={{page}}&tag=恐怖\n励志::/booklist?page={{page}}&tag=励志\n修真::/booklist?page={{page}}&tag=修真\n百合::/booklist?page={{page}}&tag=百合\n官商::/booklist?page={{page}}&tag=官商\n重生::/booklist?page={{page}}&tag=重生\n女主::/booklist?page={{page}}&tag=女主",
"header": "<js>\nheaders={\n\t\"User-Agent\":\"Mozilla/5.0 (Linux; Android 11; V1981A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36\",\n\t\"Referer\":`${source.getVariable()}`,\n\"Cookie\":\"ckc=1;\",\n}\nJSON.stringify(headers)\n</js>",
"lastUpdateTime": 1680502811868,
"loginCheckJs": "",
"loginUrl": "",
"respondTime": 20556,
"ruleBookInfo": {
"author": "class.detail-main-info-author.1@a@text",
"coverUrl": "class.detail-main-bg@data-original",
"init": "<js>\n// origin \norigin = baseUrl.match(/(https.{3,4}[^\\/]+)\\//)[1]\nsource.setVariable(origin)\n\n\nsrc\n</js>",
"intro": "class.detail-desc@text",
"kind": "[email protected]@text",
"lastChapter": "[email protected]@text",
"name": "class.detail-main-info-title@text"
},
"ruleContent": {
"content": "<js>\n//本地解密标志位\nDEBUG = 0\n\n{{source.bookSourceComment}}\n\n// origin \norigin = source.getVariable()\n\n// aes keys auto update\nchjs = src.match(/['\"](.*?ch.js\\?v=(\\d+))/)\nif (DEBUG || (chjs && chjs[2] != 202208132)) {\n cache.put(\"manwa_aes_key\", parseKey(chjs[1]))\n}\n\n// img_array\nimgs = org.jsoup.Jsoup.parse(src)\n.select(\".content-img\").toArray()\n.map(v=>v.attr(\"data-r-src\"))\n\nif (DEBUG) imgs.splice(1)\n\nimgs.toImg(null,\n{headers:{origin:origin}}\n\t)\n\n</js>",
"imageDecode": "/** https://manwa2.site/static/js/ch.js?v=202208132\n*/\n\nfunction decode(bytes, key){\n\nreturn java.createSymmetricCrypto(\n\t\"aes/cbc/pkcs7padding\", \n\t key,\n\t key\n\t)\n.decrypt(bytes)\n}\n\nkey = cache.get(\"manwa_aes_key\") || \"my2ecret782ecret\"\n\ndecode(result, key)",
"imageStyle": "FULL",
"replaceRegex": "",
"webJs": ""
},
"ruleExplore": {
"bookList": "",
"coverUrl": ""
},
"ruleReview": {},
"ruleSearch": {
"author": "tag.span.0@text##作者:",
"bookUrl": "a@href",
"checkKeyWord": "",
"coverUrl": "tag.img@data-original||img@src",
"intro": ".book-list-info-desc@text",
"kind": "tag.span.1@text##",
"lastChapter": "class.manga-list-2-tip@text##已更新||tag.span.-1@text",
"name": ".manga-list-2-title@text||.book-list-info-title@text"
},
"ruleToc": {
"chapterList": ".detail-list-select li a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "/search?keyword={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫神M",
"bookSourceType": 2,
"bookSourceUrl": "https://m.mhkami.com",
"customOrder": -2085984647,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "周一::/update/1.html\n周二::/update/2.html\n周三::/update/3.html\n周四::/update/4.html\n周五::/update/5.html\n周六::/update/6.html\n周日::/update/7.html\n全部::/mangalists/9/全部/3/{{page}}.html\n长条::/mangalists/9/长条/3/{{page}}.html\n大女主::/mangalists/9/大女主/3/{{page}}.html\n百合::/mangalists/9/百合/3/{{page}}.html\n耽美::/mangalists/9/耽美/3/{{page}}.html\n纯爱::/mangalists/9/纯爱/3/{{page}}.html\n後宫::/mangalists/9/後宫/3/{{page}}.html\n韩漫::/mangalists/9/韩漫/3/{{page}}.html\n奇幻::/mangalists/9/奇幻/3/{{page}}.html\n轻小说::/mangalists/9/轻小说/3/{{page}}.html\n生活::/mangalists/9/生活/3/{{page}}.html\n悬疑::/mangalists/9/悬疑/3/{{page}}.html\n格斗::/mangalists/9/格斗/3/{{page}}.html\n搞笑::/mangalists/9/搞笑/3/{{page}}.html\n伪娘::/mangalists/9/伪娘/3/{{page}}.html\n竞技::/mangalists/9/竞技/3/{{page}}.html\n职场::/mangalists/9/职场/3/{{page}}.html\n萌系::/mangalists/9/萌系/3/{{page}}.html\n冒险::/mangalists/9/冒险/3/{{page}}.html\n治愈::/mangalists/9/治愈/3/{{page}}.html\n都市::/mangalists/9/都市/3/{{page}}.html\n霸总::/mangalists/9/霸总/3/{{page}}.html\n神鬼::/mangalists/9/神鬼/3/{{page}}.html\n侦探::/mangalists/9/侦探/3/{{page}}.html\n爱情::/mangalists/9/爱情/3/{{page}}.html\n古风::/mangalists/9/古风/3/{{page}}.html\n欢乐向::/mangalists/9/欢乐向/3/{{page}}.html\n科幻::/mangalists/9/科幻/3/{{page}}.html\n穿越::/mangalists/9/穿越/3/{{page}}.html\n性转换::/mangalists/9/性转换/3/{{page}}.html\n校园::/mangalists/9/校园/3/{{page}}.html\n美食::/mangalists/9/美食/3/{{page}}.html\n悬疑::/mangalists/9/悬疑/3/{{page}}.html\n剧情::/mangalists/9/剧情/3/{{page}}.html\n热血::/mangalists/9/热血/3/{{page}}.html\n节操::/mangalists/9/节操/3/{{page}}.html\n励志::/mangalists/9/励志/3/{{page}}.html\n异世界::/mangalists/9/异世界/3/{{page}}.html\n历史::/mangalists/9/历史/3/{{page}}.html\n战争::/mangalists/9/战争/3/{{page}}.html\n恐怖::/mangalists/9/恐怖/3/{{page}}.html\n霸总::/mangalists/9/霸总/3/{{page}}.html",
"header": "{\n\t\"User-Agent\":\"Mozilla/5.0 (Linux; Android 11; PCLM10 Build/RKQ1.200928.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/100.0.4896.127 Mobile Safari/537.36\"\n}",
"lastUpdateTime": 1656933582458,
"respondTime": 4233,
"ruleBookInfo": {
"author": "[property=\"og:novel:author\"]@content",
"init": "",
"intro": "[property=\"og:description\"]@content",
"kind": "[property=\"og:novel:category\"]@content",
"lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
"name": "[property=\"og:novel:book_name\"]@content"
},
"ruleContent": {
"content": ".epContent@img@html",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ".comic-sort@li||.comic-item",
"bookUrl": "a@href",
"coverUrl": "img@src",
"lastChapter": ".chapter@text",
"name": ".title@text"
},
"ruleSearch": {
"author": "author",
"bookList": "data",
"bookUrl": "info_url",
"coverUrl": "cover",
"intro": "content",
"kind": "tags",
"name": "name",
"wordCount": "lastupdate_a"
},
"ruleToc": {
"chapterList": ".chapter-list@li@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://m.mhkami.com/api/front/index/search,{\n\t\"method\":\"POST\",\n \"body\": \"key={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 SF漫画",
"bookSourceType": 2,
"bookSourceUrl": "https://mm.sfacg.com",
"bookUrlPattern": "",
"customOrder": -2085984646,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "更新::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=-1\n热血::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=1\n校园::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=2\n推理::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=3\n机战::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=4\n冒险::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=5\n运动::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=6\n耽美::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=7\n搞笑::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=8\n科幻::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=9\n魔幻::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=10\n恐怖::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=11\n社会::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=12\n爱情::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=13\n武侠::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=14\n温情::https://mm.sfacg.com/ajax/Common.ashx?op=getLatest&pageIndex={{page-1}}&tid=15\nnull",
"lastUpdateTime": 1680502753741,
"loginUrl": "https://mm.sfacg.com/Login/",
"respondTime": 1080,
"ruleBookInfo": {
"author": "[email protected]@text",
"coverUrl": "@css:#page>div>ul>li:nth-child(2)>img@src",
"init": "",
"intro": "class.book_bk_qs1.0@text",
"kind": "@css:.book_info2>span@text",
"name": "@css:.book_newtitle@text"
},
"ruleContent": {
"content": "@js:\ncomicId=result.match(/var comicId = (\\d+)/)[1];\nchapterId=result.match(/var chapterId=(\\d+)/)[1];\nnv=result.match(/var nv = \"(.*?)\"/)[1];\nurl='https://mm.sfacg.com/ajax/Common.ashx?op=getPics&cid='+comicId+'&chapId='+chapterId+'&serial=ZP&path='+nv\n//java.ajax(url)\nresult=JSON.parse(java.ajax(url)).data\nresult.map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
"imageStyle": "FULL",
"nextContentUrl": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"author": "$.AuthorName@put:{cid:ComicID}",
"bookList": "$.comics.*||$.data.*",
"bookUrl": "@json:/b/{$.FolderName}",
"coverUrl": "$.ComicCover",
"kind": "$.TypeName",
"lastChapter": "$.LastChapterTitle",
"name": "$.ComicName"
},
"ruleToc": {
"chapterList": "-@css:.comic_main_list>a",
"chapterName": "text##VIP",
"chapterUrl": "href",
"isVip": "b@text",
"isVolume": "",
"updateTime": ""
},
"searchUrl": "https://mm.sfacg.com/ajax/Common.ashx?op=search,{\n \"method\": \"POST\",\n \"body\": \"keyword={{key}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 最漫画",
"bookSourceType": 2,
"bookSourceUrl": "https://m.zuimh.com/",
"customOrder": -2085984645,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "全部::/list/?page={{page}}&&玄幻::/list/xuanhuan/?page={{page}}&&都市::/list/dushi/?page={{page}}&&恐怖::/list/kongbu/?page={{page}}&&古风::/list/gufeng/?page={{page}}&&唯美::/list/weimei/?page={{page}}&&治愈::/list/zhiyu/?page={{page}}&&穿越::/list/chuanyue/?page={{page}}&&恋爱::/list/lianai/?page={{page}}&&修真::/list/xiuzhen/?page={{page}}&&后宫::/list/hougong/?page={{page}}&&冒险::/list/maoxian/?page={{page}}&&搞笑::/list/gaoxiao/?page={{page}}&&彩虹::/list/caihong/?page={{page}}&&热血::/list/rexue/?page={{page}}&&暧昧::/list/aimei/?page={{page}}&&少年::/list/shaonian/?page={{page}}&&逆转::/list/nizhuan/?page={{page}}&&奇幻::/list/qihuan/?page={{page}}&&大女主::/list/danvzhu/?page={{page}}&&总裁::/list/zongcai/?page={{page}}&&少女::/list/shaonv/?page={{page}}&&美型::/list/meixing/?page={{page}}&&霸总::/list/bazong/?page={{page}}&&动作::/list/dongzuo/?page={{page}}&&其他::/list/qita/?page={{page}}&&少男::/list/shaonan/?page={{page}}&&生活::/list/shenghuo/?page={{page}}&&科幻::/list/kehuan/?page={{page}}&&漫客栈::/list/mankezhan/?page={{page}}&&悬疑::/list/xuanyi/?page={{page}}&&魔幻::/list/mohuan/?page={{page}}&&战争::/list/zhanzheng/?page={{page}}&&惊奇::/list/jingqi/?page={{page}}&&纯爱::/list/chunai/?page={{page}}&&独家::/list/dujia/?page={{page}}&&爆笑::/list/baoxiao/?page={{page}}&&惊险::/list/jingxian/?page={{page}}&&校园::/list/xiaoyuan/?page={{page}}&&蔷薇::/list/qiangwei/?page={{page}}&&魔法::/list/mofa/?page={{page}}&&青春::/list/qingchun/?page={{page}}&&战斗::/list/zhandou/?page={{page}}&&漫改::/list/mangai/?page={{page}}&&武侠::/list/wuxia/?page={{page}}&&僵尸::/list/jiangshi/?page={{page}}&&励志::/list/lizhi/?page={{page}}&&脑洞::/list/naodong/?page={{page}}&&重生::/list/zhongsheng/?page={{page}}&&剧情::/list/juqing/?page={{page}}&&复仇::/list/fuchou/?page={{page}}&&生化::/list/shenghua/?page={{page}}&&异族::/list/yizu/?page={{page}}&&推理::/list/tuili/?page={{page}}&&震撼::/list/zhenhan/?page={{page}}&&奇闻::/list/qiwen/?page={{page}}&&怪谈::/list/guaitan/?page={{page}}&&修仙::/list/xiuxian/?page={{page}}&&末世::/list/moshi/?page={{page}}&&耽美::/list/danmei/?page={{page}}&&日漫::/list/riman/?page={{page}}&&日常::/list/richang/?page={{page}}&&灵异::/list/lingyi/?page={{page}}&&竞技::/list/jingji/?page={{page}}&&历史::/list/lishi/?page={{page}}&&明星::/list/mingxing/?page={{page}}&&虐心::/list/nuexin/?page={{page}}&&美食::/list/meishi/?page={{page}}&&机甲::/list/jijia/?page={{page}}&&叛逆::/list/panni/?page={{page}}&&宠爱::/list/chongai/?page={{page}}&&幻想::/list/huanxiang/?page={{page}}&&装逼::/list/zhuangbi/?page={{page}}&&运动::/list/yundong/?page={{page}}&&古装::/list/guzhuang/?page={{page}}&&言情::/list/yanqing/?page={{page}}&&游戏::/list/youxi/?page={{page}}&&真人::/list/zhenren/?page={{page}}&&怀旧::/list/huaijiu/?page={{page}}&&情感::/list/qinggan/?page={{page}}&&仙侠::/list/xianxia/?page={{page}}&&神魔::/list/shenmo/?page={{page}}&&偶像::/list/ouxiang/?page={{page}}&&其它::/list/qita2/?page={{page}}&&女尊::/list/nvzun/?page={{page}}&&青年::/list/qingnian/?page={{page}}&&系统::/list/xitong/?page={{page}}&&娱乐圈::/list/yulequan/?page={{page}}&&格斗::/list/gedou/?page={{page}}&&萌系::/list/mengxi/?page={{page}}&&宫斗::/list/gongdou/?page={{page}}&&虐恋::/list/nuelian/?page={{page}}&&社会::/list/shehui/?page={{page}}&&神鬼::/list/shengui/?page={{page}}&&百合::/list/baihe/?page={{page}}&&智斗::/list/zhidou/?page={{page}}&&橘味::/list/juwei/?page={{page}}&&美少女::/list/meishaonv/?page={{page}}&&金手指::/list/jinshouzhi/?page={{page}}&&绅士::/list/shenshi/?page={{page}}&&女强::/list/nvqiang/?page={{page}}&&权谋::/list/quanmou/?page={{page}}&&宅斗::/list/zhaidou/?page={{page}}&&狐仙::/list/huxian/?page={{page}}&&鬼怪::/list/guiguai/?page={{page}}&&死后世界::/list/sihoushijie/?page={{page}}&&宫廷::/list/gongting/?page={{page}}&&体育::/list/tiyu/?page={{page}}&&知音漫客::/list/zhiyinmanke/?page={{page}}&&恶搞::/list/egao/?page={{page}}&&日本::/list/riben/?page={{page}}&&浪漫::/list/langman/?page={{page}}&&节操::/list/jiecao/?page={{page}}&&血腥::/list/xuexing/?page={{page}}&&探案::/list/tanan/?page={{page}}&&爽::/list/shuang/?page={{page}}&&同人::/list/tongren/?page={{page}}&&福利::/list/fuli/?page={{page}}&&御姐::/list/yujie/?page={{page}}&&萝莉::/list/luoli/?page={{page}}&&甜宠::/list/tianchong/?page={{page}}&&少儿::/list/shaoer/?page={{page}}&&豪门::/list/haomen/?page={{page}}&&特工::/list/tegong/?page={{page}}&&美女::/list/meinv/?page={{page}}&&间谍::/list/jiandie/?page={{page}}&&男神::/list/nanshen/?page={{page}}&&悬疑、惊悚::/list/xuanyijingsong/?page={{page}}&&兽耳::/list/shouer/?page={{page}}&&军阀::/list/junfa/?page={{page}}&&民国::/list/minguo/?page={{page}}&&漫画一番::/list/manhuayifan/?page={{page}}&&女王点坑::/list/nvwangdiankeng/?page={{page}}&&喜欢::/list/xihuan/?page={{page}}&&异能::/list/yineng/?page={{page}}&&栏目::/list/lanmu/?page={{page}}&&短篇::/list/duanpian/?page={{page}}&&丧尸::/list/sangshi/?page={{page}}&&改编::/list/gaibian/?page={{page}}&&机战::/list/jizhan/?page={{page}}&&惊悚::/list/jingsong/?page={{page}}&&欢乐向::/list/huanlexiang/?page={{page}}&&爱情::/list/aiqing/?page={{page}}&&四格::/list/sige/?page={{page}}&&轻小说::/list/qingxiaoshuo/?page={{page}}&&架空::/list/jiakong/?page={{page}}&&轻松::/list/qingsong/?page={{page}}&&科技::/list/keji/?page={{page}}&&正能量::/list/zhengnengliang/?page={{page}}&&宅系::/list/zhaixi/?page={{page}}&&职场::/list/zhichang/?page={{page}}&&舰娘::/list/jianniang/?page={{page}}&&性转换::/list/xingzhuanhuan/?page={{page}}&&乡村::/list/xiangcun/?page={{page}}&&正剧::/list/zhengju/?page={{page}}&&纠结::/list/jiujie/?page={{page}}&&AA::/list/AA/?page={{page}}&&异世界::/list/yishijie/?page={{page}}&&日更::/list/rigeng/?page={{page}}&&精品::/list/jingpin/?page={{page}}&&新作::/list/xinzuo/?page={{page}}&&音乐舞蹈::/list/yinyuewudao/?page={{page}}&&宠物::/list/chongwu/?page={{page}}&&温馨::/list/wenxin/?page={{page}}&&段子::/list/duanzi/?page={{page}}&&少女爱情::/list/shaonvaiqing/?page={{page}}&&东方::/list/dongfang/?page={{page}}&&侦探::/list/zhentan/?page={{page}}&&逆袭::/list/nixi/?page={{page}}&&召唤兽::/list/zhaohuanshou/?page={{page}}&&伪娘::/list/weiniang/?page={{page}}&&秀吉::/list/xiuji/?page={{page}}&&吸血::/list/xixie/?page={{page}}&&血族::/list/xuezu/?page={{page}}&&三角恋::/list/sanjiaolian/?page={{page}}&&前世::/list/qianshi/?page={{page}}&&吸血鬼::/list/xixiegui/?page={{page}}&&轮回::/list/lunhui/?page={{page}}&&种田::/list/zhongtian/?page={{page}}&&魔王::/list/mowang/?page={{page}}&&狠西游::/list/henxiyou/?page={{page}}&&西游记::/list/xiyouji/?page={{page}}&&青青树::/list/qingqingshu/?page={{page}}&&宠婚::/list/chonghun/?page={{page}}&&可爱::/list/keai/?page={{page}}&&小僵尸::/list/xiaojiangshi/?page={{page}}&&家庭::/list/jiating/?page={{page}}&&婚姻::/list/hunyin/?page={{page}}&&恋爱生活::/list/lianaishenghuo/?page={{page}}&&感动::/list/gandong/?page={{page}}&&神话::/list/shenhua/?page={{page}}&&未来::/list/weilai/?page={{page}}&&故事漫画::/list/gushimanhua/?page={{page}}&&其他漫画::/list/qitamanhua/?page={{page}}&&爽流::/list/shuangliu/?page={{page}}&&烧脑::/list/shaonao/?page={{page}}&&有妖气::/list/youyaoqi/?page={{page}}&&绘本::/list/huiben/?page={{page}}&&侦探推理::/list/zhentantuili/?page={{page}}&&史诗::/list/shishi/?page={{page}}&&商战::/list/shangzhan/?page={{page}}&&颜艺::/list/yanyi/?page={{page}}&&恐怖悬疑::/list/kongbuxuanyi/?page={{page}}&&内涵::/list/neihan/?page={{page}}&&性转::/list/xingzhuan/?page={{page}}&&高清单行::/list/gaoqingdanxing/?page={{page}}&&墨瞳::/list/motong/?page={{page}}&&漫画::/list/manhua/?page={{page}}&&婚爱::/list/hunai/?page={{page}}&&西方魔幻::/list/xifangmohuan/?page={{page}}&&猎奇::/list/lieqi/?page={{page}}&&致郁::/list/zhiyu2/?page={{page}}&&末日::/list/mori/?page={{page}}&&伦理::/list/lunli/?page={{page}}&&乙女::/list/yinv/?page={{page}}&&神仙::/list/shenxian/?page={{page}}&&怪物::/list/guaiwu/?page={{page}}&&神豪::/list/shenhao/?page={{page}}&&霸总.都市::/list/bazongdushi/?page={{page}}&&妖怪::/list/yaoguai/?page={{page}}&&主仆::/list/zhupu/?page={{page}}&&高甜::/list/gaotian/?page={{page}}&&限制级::/list/xianzhiji/?page={{page}}&&音乐::/list/yinyue/?page={{page}}&&韩漫::/list/hanman/?page={{page}}&&电竞::/list/dianjing/?page={{page}}&&ゆり::/list/unknown/?page={{page}}&&兄弟情::/list/xiongdiqing/?page={{page}}&&暖萌::/list/nuanmeng/?page={{page}}&&豪快::/list/haokuai/?page={{page}}&&幽默::/list/youmo/?page={{page}}&&完结::/list/wanjie/?page={{page}}&&亲情::/list/qinqing/?page={{page}}&&橘系::/list/juxi/?page={{page}}&&",
"lastUpdateTime": 1680477205156,
"respondTime": 11465,
"ruleBookInfo": {
"author": "class.txtItme.0@text",
"intro": "id.full-des@text##介绍:",
"lastChapter": "[email protected]@[email protected]@text",
"name": "id.comicName@text"
},
"ruleContent": {
"content": "class.image-content@img@html##alt.*\\(\\)",
"imageStyle": "FULL",
"nextContentUrl": "[email protected]@href",
"webJs": ""
},
"ruleExplore": {
"author": "class.info@text##作者:",
"bookList": "class.list-comic",
"bookUrl": "tag.a.0@href",
"coverUrl": "img@src",
"intro": "id.full-des@text",
"name": "class.txtA@text"
},
"ruleReview": {},
"ruleSearch": {
"author": "tag.p.0@text",
"bookList": "class.itemBox",
"bookUrl": "tag.a.0@href",
"coverUrl": "img@src",
"kind": "tag.p.1@text##\\|##,",
"lastChapter": "tag.a.-1@text",
"name": "class.title@text"
},
"ruleToc": {
"chapterList": "id.chapter-list-1@li!-1@a||id.chapter-list-2@li!-1@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://m.zuimh.com/search/?keywords={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 新漫画",
"bookSourceType": 2,
"bookSourceUrl": "https://xapi.xinmanhua.net",
"bookUrlPattern": "",
"customOrder": -2085984644,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "全部::https://xapi.xinmanhua.net/search/catalog?keyword=all&ischarge=2&isfinish=2&order=0&page={{page}}\n治愈::https://xapi.xinmanhua.net/search/catalog?keyword=治愈&page={{page}}\n日常::https://xapi.xinmanhua.net/search/catalog?keyword=日常&page={{page}}\n都市::https://xapi.xinmanhua.net/search/catalog?keyword=都市&page={{page}}\n悬疑::https://xapi.xinmanhua.net/search/catalog?keyword=悬疑&page={{page}}\n科幻::https://xapi.xinmanhua.net/search/catalog?keyword=科幻&page={{page}}\n奇幻::https://xapi.xinmanhua.net/search/catalog?keyword=奇幻&page={{page}}\n热血::https://xapi.xinmanhua.net/search/catalog?keyword=热血&page={{page}}\n武侠::https://xapi.xinmanhua.net/search/catalog?keyword=武侠&page={{page}}\n古风::https://xapi.xinmanhua.net/search/catalog?keyword=古风&page={{page}}\n恋爱::https://xapi.xinmanhua.net/search/catalog?keyword=恋爱&page={{page}}\n少年::https://xapi.xinmanhua.net/search/catalog?keyword=少年&page={{page}}\n日漫::https://xapi.xinmanhua.net/search/catalog?keyword=日漫&page={{page}}\n原创::https://xapi.xinmanhua.net/search/catalog?keyword=原创&page={{page}}",
"header": "{\n \"User-Agent\": \"okhttp/3.10.0\"\n}",
"lastUpdateTime": 1656933424596,
"loginUrl": "",
"respondTime": 1939,
"ruleBookInfo": {
"init": "",
"intro": "@JSon:$.data.attributes.intro&&$.data.attributes.description"
},
"ruleContent": {
"content": "$.data[*].attributes.url\n@js:list=result.split('\\n');\nlist.map(x=>'<img src=\"'+x+'\">').join('\\n')",
"imageStyle": "FULL",
"webJs": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleSearch": {
"author": "@JSon:$.attributes.author",
"bookList": "@JSon:$.data.*",
"bookUrl": "https://xapi.xinmanhua.net/worksinfos/{$.attributes.wid}?include=chapters.digests",
"coverUrl": "@JSon:$.attributes.logo_detail",
"kind": "@JSon:$.attributes.workscate",
"lastChapter": "@JSon:$.attributes.lastctitle",
"name": "@JSon:$.attributes.title"
},
"ruleToc": {
"chapterList": "$.included.*",
"chapterName": "$.attributes.title&&$.attributes.intro",
"chapterUrl": "https://xapi.xinmanhua.net/chapters/{$.id}/qualitywebs"
},
"searchUrl": "https://xapi.xinmanhua.net/search/selfdefine,{\n \"method\": \"POST\",\n \"body\": \"keyword={{key}}&page={{page}}\"\n}",
"weight": 0
},
{
"bookSourceComment": "$$",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 神漫画",
"bookSourceType": 2,
"bookSourceUrl": "https://m.taomanhua.com",
"bookUrlPattern": "",
"customOrder": -2085984643,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "每日更新::https://m.taomanhua.com/api/updatelist/?productname=smh&platformname=wap\n综合榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=all&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n自制榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=self&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n少年榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=boy&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n少女榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=girl&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n新作榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=new&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n黑马榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=dark&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n付费榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=charge&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n免费榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=free&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n完结榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=finish&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n连载榜::https://m.taomanhua.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=serialize&rank_type=heat&page={{page}}&productname=smh&platformname=wap\n人气::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n更新::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n评分::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n收藏::https://m.taomanhua.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n连载::https://m.taomanhua.com/api/getsortlist/?comic_sort=lianzai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n完结::https://m.taomanhua.com/api/getsortlist/?comic_sort=wanjie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n热血::https://m.taomanhua.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n机战::https://m.taomanhua.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n运动::https://m.taomanhua.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n推理::https://m.taomanhua.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n冒险::https://m.taomanhua.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n耽美::https://m.taomanhua.com/api/getsortlist/?comic_sort=liaomei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n百合::https://m.taomanhua.com/api/getsortlist/?comic_sort=baihe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n搞笑::https://m.taomanhua.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n战争::https://m.taomanhua.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n神魔::https://m.taomanhua.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n忍者::https://m.taomanhua.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n竞技::https://m.taomanhua.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n悬疑::https://m.taomanhua.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n社会::https://m.taomanhua.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n恋爱::https://m.taomanhua.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n宠物::https://m.taomanhua.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n吸血::https://m.taomanhua.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n萝莉::https://m.taomanhua.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n后宫::https://m.taomanhua.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n御姐::https://m.taomanhua.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n霸总::https://m.taomanhua.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n玄幻::https://m.taomanhua.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n古风::https://m.taomanhua.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n历史::https://m.taomanhua.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n漫改::https://m.taomanhua.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n游戏::https://m.taomanhua.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n穿越::https://m.taomanhua.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n恐怖::https://m.taomanhua.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n真人::https://m.taomanhua.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n防疫::https://m.taomanhua.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n防疫::https://m.taomanhua.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n科幻::https://m.taomanhua.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n都市::https://m.taomanhua.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n武侠::https://m.taomanhua.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n修真::https://m.taomanhua.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n生活::https://m.taomanhua.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n动作::https://m.taomanhua.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n大陆::https://m.taomanhua.com/api/getsortlist/?comic_sort=dalu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n日本::https://m.taomanhua.com/api/getsortlist/?comic_sort=riben&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n港台::https://m.taomanhua.com/api/getsortlist/?comic_sort=gangtai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n欧美::https://m.taomanhua.com/api/getsortlist/?comic_sort=oumei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n韩国::https://m.taomanhua.com/api/getsortlist/?comic_sort=os&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n全彩::https://m.taomanhua.com/api/getsortlist/?comic_sort=quancai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n黑白::https://m.taomanhua.com/api/getsortlist/?comic_sort=heibai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n小说::https://m.taomanhua.com/api/getsortlist/?comic_sort=xiaoshuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n杂志::https://m.taomanhua.com/api/getsortlist/?comic_sort=zazhi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n日更::https://m.taomanhua.com/api/getsortlist/?comic_sort=rigeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n新作::https://m.taomanhua.com/api/getsortlist/?comic_sort=xinzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap\n精品::https://m.taomanhua.com/api/getsortlist/?comic_sort=jingpin&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=smh&platformname=wap",
"lastUpdateTime": 1680469701819,
"loginUrl": "",
"respondTime": 1985,
"ruleBookInfo": {
"author": "$.data.comic_author",
"coverUrl": "$.data.cover_list[0]",
"init": "",
"intro": "$.data.comic_desc",
"kind": "$.data.comic_type_new[*].name",
"lastChapter": "$.data.last_chaptet_name",
"name": "$.data.comic_name"
},
"ruleContent": {
"content": "<js>\n//获取章节位置\nindex=parseInt(chapter.index);\nindex=index+1;\nnum=parseInt(book.totalChapterNum);\nindex=num-index;\n\n//画质可选low middle high\nvar img_ext = \"-smh.middle.webp\";\nvar pic = \"https://mhpic.manhualang.com\"\nvar html =\"\";\n\njson=JSON.parse(result);\ncomic_chapter= json.data.comic_chapter;\n\nvar end_num = comic_chapter[index].end_num;\nvar rule=comic_chapter[index].rule;\nchapter_domain=comic_chapter[index].chapter_domain;\n\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\n\nfor( let i = 1;i <= end_num; i++) {\n let url = pic +rule.replace(/\\$\\$/g,i) +img_ext;\n html += '<img src=\"' + url +','+JSON.stringify(headers)+'\">\\n';\n}\nresult = html\n</js>",
"imageStyle": "FULL",
"nextContentUrl": "",
"webJs": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"author": "$.comic_author",
"bookList": "$.data.update[*].info[*]||$.data.data[*]||$.data[*]",
"bookUrl": "https://m.taomanhua.com/api/getcomicinfo_body/?comic_id={$.comic_id}&productname=smh&platformname=wap",
"coverUrl": "http://image.mhxk.com/mh/{$.comic_id}.jpg-600x800.webp",
"kind": "$.comic_type||$.sort_typelist##[a-zA-Z]|\\|",
"lastChapter": "$.last_chapter_name||$.comic_chapter_name",
"name": "$.comic_name",
"wordCount": ""
},
"ruleToc": {
"chapterList": "-$.data.comic_chapter.*",
"chapterName": "$.chapter_name@put:{chapter_id:$.chapter_id}",
"chapterUrl": "$.chapter_id@js:baseUrl+\"&chapter_id=\"+result"
},
"searchUrl": "https://m.taomanhua.com/api/getsortlist/?search_type=&search_key={{key}}&page={{page}}&size=30&productname=smh&platformname=wap",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫客栈",
"bookSourceType": 2,
"bookSourceUrl": "https://www.mkzhan.com",
"bookUrlPattern": "",
"customOrder": -2085984642,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "[{\"title\":\"榜单\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"人气榜\",\"url\":\"/top/popularity/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月票榜\",\"url\":\"/top/ticket/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"收藏榜\",\"url\":\"/top/collection/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"独家榜\",\"url\":\"/top/exclusive/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"新作榜\",\"url\":\"/top/latest/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"上升榜\",\"url\":\"/top/ascension/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"合作榜\",\"url\":\"/top/cooperation/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"评分榜\",\"url\":\"/top/score/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"热评榜\",\"url\":\"/top/comment/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"VIP人气\",\"url\":\"/top/popularity/vip/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"付费人气\",\"url\":\"/top/popularity/pay/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"打赏榜\",\"url\":\"/top/gratuity/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"受众\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"少年\",\"url\":\"/category/?audience=1&order=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"少女\",\"url\":\"/category/?audience=2&order=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"青年\",\"url\":\"/category/?audience=3&order=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"少儿\",\"url\":\"/category/?audience=4&order=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.2,\"layout_flexGrow\":1}},\n{\"title\":\"题材\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"更新\",\"url\":\"/update/\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"霸总\",\"url\":\"/category/?order=2&theme_id=1&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"修真\",\"url\":\"/category/?order=2&theme_id=2&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"恋爱\",\"url\":\"/category/?order=2&theme_id=3&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园\",\"url\":\"/category/?order=2&theme_id=4&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"冒险\",\"url\":\"/category/?order=2&theme_id=5&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"搞笑\",\"url\":\"/category/?order=2&theme_id=6&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"生活\",\"url\":\"/category/?order=2&theme_id=7&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"热血\",\"url\":\"/category/?order=2&theme_id=8&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"架空\",\"url\":\"/category/?order=2&theme_id=9&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"后宫\",\"url\":\"/category/?order=2&theme_id=10&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻\",\"url\":\"/category/?order=2&theme_id=12&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悬疑\",\"url\":\"/category/?order=2&theme_id=13&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖\",\"url\":\"/category/?order=2&theme_id=14&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异\",\"url\":\"/category/?order=2&theme_id=15&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"动作\",\"url\":\"/category/?order=2&theme_id=16&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"科幻\",\"url\":\"/category/?order=2&theme_id=17&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"战争\",\"url\":\"/category/?order=2&theme_id=18&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古风\",\"url\":\"/category/?order=2&theme_id=19&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越\",\"url\":\"/category/?order=2&theme_id=20&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"竞技\",\"url\":\"/category/?order=2&theme_id=21&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"励志\",\"url\":\"/category/?order=2&theme_id=23&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"同人\",\"url\":\"/category/?order=2&theme_id=24&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"真人\",\"url\":\"/category/?order=2&theme_id=26&page={{page}}\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}}]",
"header": "",
"lastUpdateTime": 1680513509342,
"loginUrl": "https://www.mkzhan.com/login",
"respondTime": 4803,
"ruleBookInfo": {
"author": ".name@text",
"coverUrl": ".de-info__cover img@data-src",
"intro": ".intro@html",
"kind": ".comic-status b.0@text&&.de-chapter__title span.0@text##\\s##,",
"lastChapter": ".update-time@text##.*更新至\\s",
"name": ".comic-title@text",
"tocUrl": "",
"wordCount": ".update-time@text##\\s更新至.*"
},
"ruleContent": {
"content": "$..image@js:result.split(\"\\n\").map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
"imageStyle": "FULL",
"nextContentUrl": ""
},
"ruleExplore": {},
"ruleReview": {},
"ruleSearch": {
"author": ".comic-author a@text",
"bookList": ".common-comic-item||.top-list__box-item",
"bookUrl": "a.1@href",
"coverUrl": "img@data-src",
"intro": ".comic-feature@text",
"kind": ".comic-count@text",
"lastChapter": ".comic-update a@text",
"name": ".comic__title@text"
},
"ruleToc": {
"chapterList": "-.chapter__list-box li",
"chapterName": "a@text",
"chapterUrl": ".j-chapter-link@data-chapterid\n@js:\r\ncid=result;\r\nbid=baseUrl.match(/\\/(\\d+)\\//)[1],\n\n'https://comic.mkzcdn.com/chapter/content/v1/?chapter_id='+cid+'&comic_id='+bid+'&format=1&quality=1&sign=0&type=1&uid=0'",
"isVip": "i@text",
"updateTime": ".data@text"
},
"searchUrl": "/search/?keyword={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫客栈",
"bookSourceType": 2,
"bookSourceUrl": "https://comic.mkzhan.com",
"bookUrlPattern": "",
"customOrder": -2085984641,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "热门人气::https://comic.mkzcdn.com/search/filter/?order=1&page_num={{page}}&page_size=12\n更新时间::https://comic.mkzcdn.com/search/filter/?order=2&page_num={{page}}&page_size=12\n连载::https://comic.mkzcdn.com/search/filter/?finish=1&page_num={{page}}&page_size=12\n完结::https://comic.mkzcdn.com/search/filter/?finish=2&page_num={{page}}&page_size=12\n霸总::https://comic.mkzcdn.com/search/filter/?theme_id=1&page_num={{page}}&page_size=12\n修真::https://comic.mkzcdn.com/search/filter/?theme_id=2&page_num={{page}}&page_size=12\n恋爱::https://comic.mkzcdn.com/search/filter/?theme_id=3&page_num={{page}}&page_size=12\n校园::https://comic.mkzcdn.com/search/filter/?theme_id=4&page_num={{page}}&page_size=12\n冒险::https://comic.mkzcdn.com/search/filter/?theme_id=5&page_num={{page}}&page_size=12\n搞笑::https://comic.mkzcdn.com/search/filter/?theme_id=6&page_num={{page}}&page_size=12\n生活::https://comic.mkzcdn.com/search/filter/?theme_id=7&page_num={{page}}&page_size=12\n热血::https://comic.mkzcdn.com/search/filter/?theme_id=8&page_num={{page}}&page_size=12\n架空::https://comic.mkzcdn.com/search/filter/?theme_id=9&page_num={{page}}&page_size=12\n后宫::https://comic.mkzcdn.com/search/filter/?theme_id=10&page_num={{page}}&page_size=12\n耽美::https://comic.mkzcdn.com/search/filter/?theme_id=11&page_num={{page}}&page_size=12\n玄幻::https://comic.mkzcdn.com/search/filter/?theme_id=12&page_num={{page}}&page_size=12\n悬疑::https://comic.mkzcdn.com/search/filter/?theme_id=13&page_num={{page}}&page_size=12\n恐怖::https://comic.mkzcdn.com/search/filter/?theme_id=14&page_num={{page}}&page_size=12\n灵异::https://comic.mkzcdn.com/search/filter/?theme_id=15&page_num={{page}}&page_size=12\n动作::https://comic.mkzcdn.com/search/filter/?theme_id=16&page_num={{page}}&page_size=12\n科幻::https://comic.mkzcdn.com/search/filter/?theme_id=17&page_num={{page}}&page_size=12\n战争::https://comic.mkzcdn.com/search/filter/?theme_id=18&page_num={{page}}&page_size=12\n古风::https://comic.mkzcdn.com/search/filter/?theme_id=19&page_num={{page}}&page_size=12\n穿越::https://comic.mkzcdn.com/search/filter/?theme_id=20&page_num={{page}}&page_size=12\n竞技::https://comic.mkzcdn.com/search/filter/?theme_id=21&page_num={{page}}&page_size=12\n百合::https://comic.mkzcdn.com/search/filter/?theme_id=22&page_num={{page}}&page_size=12\n励志::https://comic.mkzcdn.com/search/filter/?theme_id=23&page_num={{page}}&page_size=12\n同人::https://comic.mkzcdn.com/search/filter/?theme_id=24&page_num={{page}}&page_size=12\n真人::https://comic.mkzcdn.com/search/filter/?theme_id=26&page_num={{page}}&page_size=12\n少年::https://comic.mkzcdn.com/search/filter/?audience=1&page_num={{page}}&page_size=12\n少女::https://comic.mkzcdn.com/search/filter/?audience=2&page_num={{page}}&page_size=12\n青年::https://comic.mkzcdn.com/search/filter/?audience=3&page_num={{page}}&page_size=12\n少儿::https://comic.mkzcdn.com/search/filter/?audience=4&page_num={{page}}&page_size=12\n独家::https://comic.mkzcdn.com/search/filter/?copyright=1&page_num={{page}}&page_size=12\n合作::https://comic.mkzcdn.com/search/filter/?copyright=2&page_num={{page}}&page_size=12\n免费::https://comic.mkzcdn.com/search/filter/?is_free=1&page_num={{page}}&page_size=12\n付费::https://comic.mkzcdn.com/search/filter/?is_fee=1&page_num={{page}}&page_size=12\nVIP::https://comic.mkzcdn.com/search/filter/?is_vip=1&page_num={{page}}&page_size=12",
"header": "",
"lastUpdateTime": 1662012464669,
"loginUrl": "",
"respondTime": 2671,
"ruleBookInfo": {
"intro": "$.data.content",
"lastChapter": "$.data.chapter_title",
"name": "$.data.title",
"tocUrl": "https://comic.mkzhan.com/chapter/?comic_id={{$.data.comic_id}}\n@js:\nz=result\na={\n \"body\": \"oauth_id=402&oauth_data=%7B%22unionid%22%3A%223227d2ee22e30fcd847e78da026ee6da%22%7D\",\n \"method\": \"POST\"\n}\nb=java.ajax(\"https://member.mkzcdn.com/login/oauth/,\"+JSON.stringify(a))\njava.log(b)\ndata=JSON.parse(b).data\nsign=data.sign\nuid=data.uid\njava.put(\"sign\",sign)\njava.put(\"uid\",uid)\nz"
},
"ruleContent": {
"content": "@js:\nlet list = JSON.parse(result).data.page.map((i)=>{\n\treturn '<img src=\"'+i.image+'\" />'\n\t})\nString(list).replace(new RegExp(\",\",\"gi\"),\"\")"
},
"ruleExplore": {},
"ruleSearch": {
"author": "$.author_title",
"bookList": "$.data.list.*",
"bookUrl": "https://comic.mkzhan.com/comic/info/?comic_id={{$.comic_id}}",
"coverUrl": "$.cover@js:result.replace(/\\.(jpg|JPG).*/g,\".$1!cover-400\")",
"lastChapter": "$.chapter_title",
"name": "@js:\njava.put(\"comic_id\",result.comic_id)\nresult.title"
},
"ruleToc": {
"chapterList": "$.data.*",
"chapterName": "$.title",
"chapterUrl": "\nhttps://comic.mkzhan.com/chapter/content/v1/?chapter_id={{$.chapter_id}}&comic_id={{java.get(\"comic_id\")}}&format=1&quality=1&sign={{java.get(\"sign\")}}&type=1&uid={{java.get(\"uid\")}}",
"isVip": "$.is_vip",
"isVolume": "",
"updateTime": ""
},
"searchUrl": "https://comic.mkzhan.com/search/keyword/?keyword={{key}}&page_num={{page}}&page_size=20",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫画看",
"bookSourceType": 2,
"bookSourceUrl": "https://m.mhkan.com/",
"customOrder": -2085984640,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "连载::https://m.mhkan.com/list/lianzai/{{page}}/\n已完结::https://m.mhkan.com/list/wanjie/{{page}}/",
"lastUpdateTime": 1680502794088,
"respondTime": 992,
"ruleBookInfo": {
"author": "[email protected]@text",
"init": "",
"intro": ".txtDesc@text",
"kind": "[email protected]@text",
"lastChapter": ".list@[email protected]@a@text",
"name": "h1@text"
},
"ruleContent": {
"content": "<js>\nresult.match(/chapterImages = (\\[.*?\\]);/)[1];\n</js>\n$.[*]@js:result.split(\"\\n\").map(x=>'<img src=\\\"'+x+'\\\">').join(\"\\n\")",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"author": ".txtItme.0@text",
"bookList": "#[email protected]||.list-comic",
"bookUrl": "a@href",
"checkKeyWord": "",
"coverUrl": "mip-img@src",
"kind": ".pd@text",
"lastChapter": ".coll@text||.info@text",
"name": ".title@text||.txtA@text"
},
"ruleToc": {
"chapterList": ".list@ul@li@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "https://m.mhkan.com/search/?keywords={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫画人",
"bookSourceType": 2,
"bookSourceUrl": "http://www.manhuaren.com",
"bookUrlPattern": "",
"customOrder": -2085984639,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "热门::http://www.manhuaren.com/manhua-list/dm5.ashx?d=Wed Mar 06 2019 15:24:13 GMT 0800,{\"method\": \"POST\",\"body\": \"action=getclasscomics&pageindex={{page}}&pagesize=21&categoryid=0&tagid=0&status=0&usergroup=0&pay=-1&areaid=0&sort=10&iscopyright=0\"}\n最近更新::http://www.manhuaren.com/manhua-list/dm5.ashx?d=Wed Mar 06 2019 15:24:13 GMT 0800,{\"method\": \"POST\",\"body\": \"action=getclasscomics&pageindex={{page}}&pagesize=21&categoryid=0&tagid=0&status=0&usergroup=0&pay=-1&areaid=0&sort=2&iscopyright=0\"}\n最新上架::http://www.manhuaren.com/manhua-list/dm5.ashx?d=Wed Mar 06 2019 15:24:13 GMT 0800,{\"method\": \"POST\",\"body\": \"action=getclasscomics&pageindex={{page}}&pagesize=21&categoryid=0&tagid=0&status=0&usergroup=0&pay=-1&areaid=0&sort=18&iscopyright=0\"}\n连载::http://www.manhuaren.com/manhua-list/dm5.ashx?d=Wed Mar 06 2019 15:24:13 GMT 0800,{\"method\": \"POST\",\"body\": \"action=getclasscomics&pageindex={{page}}&pagesize=21&categoryid=0&tagid=0&status=1&usergroup=0&pay=-1&areaid=0&sort=10&iscopyright=0\"}\n完结::http://www.manhuaren.com/manhua-list/dm5.ashx?d=Wed Mar 06 2019 15:24:13 GMT 0800,{\"method\": \"POST\",\"body\": \"action=getclasscomics&pageindex={{page}}&pagesize=21&categoryid=0&tagid=0&status=2&usergroup=0&pay=-1&areaid=0&sort=10&iscopyright=0\"}\n全部::http://www.manhuaren.com/manhua-list/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&pageindex={{page}}&sort=10&status=0&tagid=0\"}\n热血::http://www.manhuaren.com/manhua-rexue/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=31&pageindex={{page}}\"}\n恋爱::http://www.manhuaren.com/manhua-aiqing/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=26&pageindex={{page}}\"}\n校园::http://www.manhuaren.com/manhua-xiaoyuan/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=1&pageindex={{page}}\"}\n百合::http://www.manhuaren.com/manhua-baihe/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=3&pageindex={{page}}\"}\n耽美::http://www.manhuaren.com/manhua-danmei/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=27&pageindex={{page}}\"}\n伪娘::http://www.manhuaren.com/manhua-weiniang/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=5&pageindex={{page}}\"}\n冒险::http://www.manhuaren.com/manhua-maoxian/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=2&pageindex={{page}}\"}\n职场::http://www.manhuaren.com/manhua-zhichang/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=6&pageindex={{page}}\"}\n后宫::http://www.manhuaren.com/manhua-hougong/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=8&pageindex={{page}}\"}\n治愈::http://www.manhuaren.com/manhua-zhiyu/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=9&pageindex={{page}}\"}\n科幻::http://www.manhuaren.com/manhua-kehuan/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=25&pageindex={{page}}\"}\n轻小说::http://www.manhuaren.com/manhua-qingxiaoshuo1/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=156&pageindex={{page}}\"}\n励志::http://www.manhuaren.com/manhua-lizhi/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=10&pageindex={{page}}\"}\n战争::http://www.manhuaren.com/manhua-zhanzheng/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=12&pageindex={{page}}\"}\n悬疑::http://www.manhuaren.com/manhua-xuanyi/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=17&pageindex={{page}}\"}\n搞笑::http://www.manhuaren.com/manhua-gaoxiao/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=37&pageindex={{page}}\"}\n奇幻::http://www.manhuaren.com/manhua-qihuan/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=14&pageindex={{page}}\"}\n魔法::http://www.manhuaren.com/manhua-mofa/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=15&pageindex={{page}}\"}\n恐怖::http://www.manhuaren.com/manhua-kongbu/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=29&pageindex={{page}}\"}\n萌系::http://www.manhuaren.com/manhua-mengxi/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=21&pageindex={{page}}\"}\n历史::http://www.manhuaren.com/manhua-lishi/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=4&pageindex={{page}}\"}\n美食::http://www.manhuaren.com/manhua-meishi/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=7&pageindex={{page}}\"}\n同人::http://www.manhuaren.com/manhua-tongren/dm5.ashx?,{\"method\": \"POST\",\"body\": \"action=getclasscomics&tagid=30&pageindex={{page}}\"}",
"lastUpdateTime": 1680502641483,
"loginUrl": "",
"respondTime": 1102,
"ruleBookInfo": {
"author": "[email protected]@text",
"coverUrl": "class.detail-main-bg@src",
"init": "",
"intro": "class.detail-desc.0@text",
"kind": "[email protected]@text",
"name": "class.detail-main-info-title.0@text"
},
"ruleContent": {
"content": "@js:\r\ntry{\nvar options={\"headers\":{\"Referer\":baseUrl}};\r\neval(result.match(/(eval\\([\\s\\S]+?)<\\/script/)[1]);\r\nnewImgs.map(a=>\r\n'<img src=\"'+a+\",\"+JSON.stringify(options)+'\">').join(\"\\n\")\r\n}catch(e){}",
"imageStyle": "FULL",
"nextContentUrl": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"bookList": "[email protected]||UpdateComicItems.*",
"bookUrl": "tag.a.0@href||http://www.manhuaren.com/{$.UrlKey}",
"coverUrl": "class.book-list-cover-img@src||ShowConver",
"lastChapter": "class.manga-list-2-tip@text||ShowLastPartName",
"name": "class.book-list-info-title.0@text||Title"
},
"ruleToc": {
"chapterList": "-id.detail-list-select-1@li",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "http://www.manhuaren.com/search?title={{key}}&language=1",
"weight": 0
},
{
"bookSourceComment": "haxc",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 仙漫网",
"bookSourceType": 2,
"bookSourceUrl": "https://www.xianman123.com",
"customOrder": -2085984638,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "连载::https://www.xianman123.com/f-1-0-0-1-0-0-{{page}}.html\n完结::https://www.xianman123.com/f-1-0-0-2-0-0-{{page}}.html\n国漫::https://www.xianman123.com/f-1-0-1-0-0-0-{{page}}.html\n日漫::https://www.xianman123.com/f-1-0-2-0-0-0-{{page}}.html\n更新::https://www.xianman123.com/f-1-0-0-0-0-0-{{page}}.html\n排行::https://www.xianman123.com/f-1-0-0-0-0-1-{{page}}.html",
"lastUpdateTime": 1680502731763,
"respondTime": 1742,
"ruleBookInfo": {
"author": ".subtitle@a@text",
"init": "",
"intro": ".content@text",
"kind": ".ticai@a@text",
"lastChapter": "#[email protected]@a@text",
"name": "h1@text"
},
"ruleContent": {
"content": "@js:\r\ntry{\r\neval(result.match(/(eval\\([\\s\\S]+?)<\\/script/)[1]);\nhost=result.match(/imgDomain = '(.*?)';/)[1];\r\npicdata.map(a=>\r\n'<img src=\"'+host+a+'\">').join(\"\\n\")\r\n}catch(e){}",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"bookList": ".mh-list@li",
"bookUrl": "a@href",
"coverUrl": "img@src",
"lastChapter": "p@a@text",
"name": "h2@text"
},
"ruleToc": {
"chapterList": "-#detail-list-select-1@li@a",
"chapterName": "textNodes",
"chapterUrl": "href",
"updateTime": "span@text"
},
"searchUrl": "https://www.xianmanwang.com/index/index/search.html?keyboard={{key}}",
"weight": 0
},
{
"bookSourceComment": "java.base64Decode",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 一漫网",
"bookSourceType": 2,
"bookSourceUrl": "http://m.bx117.com",
"bookUrlPattern": "",
"customOrder": -2085984637,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "完结::http://m.bx117.com/wanjie/{{page}}.html\n连载::http://m.bx117.com/lianzai/{{page}}.html\n日韩::http://m.bx117.com/rihan/{{page}}.html\n内地::http://m.bx117.com/neidi/{{page}}.html\n港台::http://m.bx117.com/gangntai/{{page}}.html\n欧美::http://m.bx117.com/oumei/{{page}}.html\n其他::http://m.bx117.com/qita/{{page}}.html\n少年::http://m.bx117.com/shaonianqu/{{page}}.html\n青年::http://m.bx117.com/qingnian/{{page}}.html\n少儿::http://m.bx117.com/shaoer/{{page}}.html\n少女::http://m.bx117.com/shaonv/{{page}}.html\n热血::http://m.bx117.com/rexue/{{page}}.html\n格斗::http://m.bx117.com/gedou/{{page}}.html\n科幻::http://m.bx117.com/kehuan/{{page}}.html\n竞技::http://m.bx117.com/jingji/{{page}}.html\n搞笑::http://m.bx117.com/gaoxiao/{{page}}.html\n推理::http://m.bx117.com/tuili/{{page}}.html\n恐怖::http://m.bx117.com/kongbu/{{page}}.html\n耽美::http://m.bx117.com/danmei/{{page}}.html\n恋爱::http://m.bx117.com/lianai/{{page}}.html\n生活::http://m.bx117.com/shenghuo/{{page}}.html\n战争::http://m.bx117.com/zhanzheng/{{page}}.html\n故事::http://m.bx117.com/gushi/{{page}}.html\n冒险::http://m.bx117.com/maoxian/{{page}}.html\n魔幻::http://m.bx117.com/mohuan/{{page}}.html\n玄幻::http://m.bx117.com/xuanhuan/{{page}}.html\n校园::http://m.bx117.com/xiaoyuan/{{page}}.html\n悬疑::http://m.bx117.com/xuanyi/{{page}}.html\n萌系::http://m.bx117.com/mengxi/{{page}}.html\n穿越::http://m.bx117.com/chuanyue/{{page}}.html\n后宫::http://m.bx117.com/hougong/{{page}}.html\n都市::http://m.bx117.com/dushi/{{page}}.html\n武侠::http://m.bx117.com/wuxia/{{page}}.html\n历史::http://m.bx117.com/lishi/{{page}}.html\n同人::http://m.bx117.com/tongren/{{page}}.html\n励志::http://m.bx117.com/lizhi/{{page}}.html\n百合::http://m.bx117.com/baihe/{{page}}.html\n治愈::http://m.bx117.com/zhiyu/{{page}}.html\n机甲::http://m.bx117.com/jijia/{{page}}.html\n纯爱::http://m.bx117.com/chunai/{{page}}.html\n美食::http://m.bx117.com/meishi/{{page}}.html\n血腥::http://m.bx117.com/xuexing/{{page}}.html\n僵尸::http://m.bx117.com/jiangshi/{{page}}.html\n恶搞::http://m.bx117.com/egao/{{page}}.html\n虐心::http://m.bx117.com/nuexin/{{page}}.html\n动作::http://m.bx117.com/dongzuo/{{page}}.html\n惊险::http://m.bx117.com/jingxian/{{page}}.html\n唯美::http://m.bx117.com/weimei/{{page}}.html\n震撼::http://m.bx117.com/zhenhan/{{page}}.html\n复仇::http://m.bx117.com/fuchou/{{page}}.html\n侦探::http://m.bx117.com/zhentan/{{page}}.html\n脑洞::http://m.bx117.com/naodong/{{page}}.html\n奇幻::http://m.bx117.com/qihuan/{{page}}.html\n宫斗::http://m.bx117.com/gongdou/{{page}}.html\n爆笑::http://m.bx117.com/baoxiao/{{page}}.html\n运动::http://m.bx117.com/yundong/{{page}}.html\n青春::http://m.bx117.com/qingchun/{{page}}.html\n灵异::http://m.bx117.com/lingyi/{{page}}.html\n古风::http://m.bx117.com/gufeng/{{page}}.html\n权谋::http://m.bx117.com/quanmou/{{page}}.html\n节操::http://m.bx117.com/jiecao/{{page}}.html\n明星::http://m.bx117.com/mingxing/{{page}}.html\n暗黑::http://m.bx117.com/anhei/{{page}}.html\n社会::http://m.bx117.com/shehui/{{page}}.html\n浪漫::http://m.bx117.com/langman/{{page}}.html\n栏目::http://m.bx117.com/lanmu/{{page}}.html\n仙侠::http://m.bx117.com/xianxia/{{page}}.html\n墨瞳::http://m.bx117.com/motongmanhua/{{page}}.html\n麦萌::http://m.bx117.com/maimengmanhua/{{page}}.html\n漫漫::http://m.bx117.com/manmanmanhua/{{page}}.html\n漫画岛::http://m.bx117.com/manhuadaomanhua/{{page}}.html\n快看::http://m.bx117.com/kuaikanmanhua/{{page}}.html\n有妖气::http://m.bx117.com/youyaoqimanhua/{{page}}.html",
"header": "{'User-Agent':'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36',\n\"Referer\":\"http://m.bx117.com/\"}",
"lastUpdateTime": 1680502674189,
"loginUrl": "",
"respondTime": 736,
"ruleBookInfo": {
"author": "[email protected]@text##作者:",
"init": "",
"intro": "class.d-nowrap-clamp@text",
"kind": "[email protected]@text##标签:",
"lastChapter": "[email protected]@text##状态:",
"name": "[email protected]@text"
},
"ruleContent": {
"content": "@js:\nheaders={\"headers\":{\"Referer\":baseUrl}}\n;\ncid=result.match(/qTcms_S_m_id=\"(.*?)\"/)[1];\nu='http://m.bx117.com/statics/pic/?p=';\nkey='&wapif=1&picid='+cid+'&m_httpurl=&fenye2=1';\n(function getImgList() {\r\n eval(result.match(/(var qTcms_Cur=[\\S\\s]+var qTcms_S_show_1=.*?;)/)[1]);\r\n var list = java.base64Decode(qTcms_S_m_murl_e).split(\"\\\\$qingtiandy\\\\$\");\r\n var piclist = new Array();\r\n for (var i = 0; i < list.length; i++) {\n var v = list[i];\r\n piclist[i] =v;\r\n }\r\n return piclist;\r\n}()).map(uri=>\n'<img src=\"'+u+uri+key+','+JSON.stringify(headers)+'\">').join(\"\\n\")",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"bookList": "[email protected]",
"bookUrl": "tag.a.0@href",
"coverUrl": "tag.img@src",
"lastChapter": "class.info@text",
"name": "class.txtA@text"
},
"ruleToc": {
"chapterList": "-class.chapters@li@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "http://m.bx117.com/statics/search.aspx?key={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 大魔兔",
"bookSourceType": 2,
"bookSourceUrl": "http://m.damotu.com",
"bookUrlPattern": "http://m.damotu.com/manhua/\\d+.htm",
"customOrder": -2085984636,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "新番连载::/list-1-{{page}}.htm\n经典完结::/list-2-{{page}}.htm\n司机推荐::/list-4-{{page}}.htm\n单行本::/list-3-{{page}}.htm\n神鬼::/list-1-{{page}}-t2.htm\n伪娘::/list-1-{{page}}-t4.htm\n侦探::/list-1-{{page}}-t5.htm\n后宫::/list-1-{{page}}-t6.htm\n性转换::/list-1-{{page}}-t7.htm\n恐怖::/list-1-{{page}}-t8.htm\n悬疑::/list-1-{{page}}-t10.htm\n治愈::/list-1-{{page}}-t11.htm\n校园::/list-1-{{page}}-t12.htm\n热血::/list-1-{{page}}-t13.htm\n亲情::/list-1-{{page}}-t14.htm\n百合::/list-1-{{page}}-t15.htm\n耽美::/list-1-{{page}}-t16.htm\n职场::/list-1-{{page}}-t17.htm\n萌系::/list-1-{{page}}-t18.htm\n搞笑::/list-1-{{page}}-t19.htm\n腐女::/list-1-{{page}}-t20.htm\n魔法::/list-1-{{page}}-t21.htm\n历史::/list-1-{{page}}-t23.htm\n冒险::/list-1-{{page}}-t24.htm\n励志::/list-1-{{page}}-t27.htm\n战争::/list-1-{{page}}-t28.htm\n机战::/list-1-{{page}}-t29.htm\n奇幻::/list-1-{{page}}-t30.htm\n格斗::/list-1-{{page}}-t31.htm\n科幻::/list-1-{{page}}-t32.htm\n爱情::/list-1-{{page}}-t34.htm\n魔幻::/list-1-{{page}}-t35.htm\n武侠::/list-1-{{page}}-t36.htm\n竞技::/list-1-{{page}}-t37.htm\n美食::/list-1-{{page}}-t38.htm\n音乐::/list-1-{{page}}-t39.htm",
"header": "",
"lastUpdateTime": 1680502799917,
"respondTime": 847,
"ruleBookInfo": {
"author": "class.col-12.1@text",
"init": "",
"intro": "class.book-detail-body@text",
"kind": "class.col-12.2@text",
"lastChapter": "[email protected]@tag.a@text",
"name": "class.col-12.0@text"
},
"ruleContent": {
"content": "class.swiper-container@img@data-src\n@js:\nheaders={\"headers\":{\"Referer\":baseUrl}};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"bookList": "[email protected]",
"bookUrl": "tag.a@href",
"coverUrl": "html@js:result.match(/url\\('(http.*?\\.\\w\\w\\w)'\\)/)[1]",
"lastChapter": "tag.a.1@text##.*(第.*)##$1",
"name": "tag.a.0@title"
},
"ruleToc": {
"chapterList": "[email protected]@a",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "http://m.damotu.com/list-{{page}}-k{{key}}.htm",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 漫畫狗",
"bookSourceType": 2,
"bookSourceUrl": "https://dogemanga.com",
"bookUrlPattern": "",
"customOrder": -2085984635,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "热门排行::https://dogemanga.com/?s=0\n最新连载::https://dogemanga.com/?s=1",
"header": "{\n 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70'\n}",
"lastUpdateTime": 1680502655893,
"loginUrl": "https://dogemanga.com",
"respondTime": 4067,
"ruleBookInfo": {
"author": "tag.h4@text",
"init": "",
"intro": ".site-card__brief@text",
"kind": "class.text-muted@text@js:String(result).match(/連載完結|連載中/)",
"lastChapter": "class.vstack.0@text",
"name": ".site-navbar__title@text"
},
"ruleContent": {
"content": "class.site-reader__image@data-page-image-url@js:\nlist=result.split(\"\\n\");\nhtml='';\nfor(i in list){\nhtml+='<img src=\"'+list[i]+'\">\\n'\n}\nhtml",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"author": "tag.h6@text",
"bookList": "[email protected] ",
"bookUrl": "tag.a.0@href",
"coverUrl": "tag.img@src",
"intro": "tag.p@text",
"kind": "class.text-muted@text@js:String(result).match(/連載完結|連載中/)",
"lastChapter": "class.list-group-item.0@text",
"name": "tag.h5@text",
"wordCount": "[email protected]@text##.*連載狀態:|最快更新:"
},
"ruleToc": {
"chapterList": "-class.site-selector@option!0",
"chapterName": "text",
"chapterUrl": "value"
},
"searchUrl": "https://dogemanga.com/?q={{key}}&o={{(page-1)*12}}",
"weight": 0
},
{
"bookSourceComment": "$$",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 搜动漫",
"bookSourceType": 2,
"bookSourceUrl": "http://m.soudongman.com",
"bookUrlPattern": "",
"customOrder": -2085984634,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "全部::https://m.soudongman.com/sort/all<,_p{{page}}>.html\n连载::https://m.soudongman.com/sort/99<,_p{{page}}>.html\n完结::https://m.soudongman.com/sort/100<,_p{{page}}>.html\n热血::https://m.soudongman.com/sort/23<,_p{{page}}>.html\n机战::https://m.soudongman.com/sort/24<,_p{{page}}>.html\n运动::https://m.soudongman.com/sort/27<,_p{{page}}>.html\n推理::https://m.soudongman.com/sort/28<,_p{{page}}>.html\n冒险::https://m.soudongman.com/sort/30<,_p{{page}}>.html\n耽美::https://m.soudongman.com/sort/31<,_p{{page}}>.html\n百合::https://m.soudongman.com/sort/32<,_p{{page}}>.html\n搞笑::https://m.soudongman.com/sort/33<,_p{{page}}>.html\n战争::https://m.soudongman.com/sort/34<,_p{{page}}>.html\n神魔::https://m.soudongman.com/sort/35<,_p{{page}}>.html\n忍者::https://m.soudongman.com/sort/38<,_p{{page}}>.html\n竞技::https://m.soudongman.com/sort/39<,_p{{page}}>.html\n悬疑::https://m.soudongman.com/sort/41<,_p{{page}}>.html\n社会::https://m.soudongman.com/sort/42<,_p{{page}}>.html\n恋爱::https://m.soudongman.com/sort/43<,_p{{page}}>.html\n宠物::https://m.soudongman.com/sort/44<,_p{{page}}>.html\n吸血::https://m.soudongman.com/sort/45<,_p{{page}}>.html\n萝莉::https://m.soudongman.com/sort/46<,_p{{page}}>.html\n后宫::https://m.soudongman.com/sort/47<,_p{{page}}>.html\n御姐::https://m.soudongman.com/sort/48<,_p{{page}}>.html\n霸总::https://m.soudongman.com/sort/51<,_p{{page}}>.html\n玄幻::https://m.soudongman.com/sort/54<,_p{{page}}>.html\n古风::https://m.soudongman.com/sort/55<,_p{{page}}>.html\n历史::https://m.soudongman.com/sort/58<,_p{{page}}>.html\n漫改::https://m.soudongman.com/sort/59<,_p{{page}}>.html\n游戏::https://m.soudongman.com/sort/60<,_p{{page}}>.html\n穿越::https://m.soudongman.com/sort/61<,_p{{page}}>.html\n恐怖::https://m.soudongman.com/sort/62<,_p{{page}}>.html\n真人::https://m.soudongman.com/sort/63<,_p{{page}}>.html\n科幻::https://m.soudongman.com/sort/66<,_p{{page}}>.html\n都市::https://m.soudongman.com/sort/67<,_p{{page}}>.html\n武侠::https://m.soudongman.com/sort/70<,_p{{page}}>.html\n修真::https://m.soudongman.com/sort/71<,_p{{page}}>.html\n生活::https://m.soudongman.com/sort/72<,_p{{page}}>.html\n动作::https://m.soudongman.com/sort/73<,_p{{page}}>.html\n防疫::https://m.soudongman.com/sort/142<,_p{{page}}>.html",
"header": "{\n\"User-Agent\":\"Mozilla/5.0 (Linux; Android 11; PCLM10 Build/RKQ1.200928.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.72 Mobile Safari/537.36\",\n\"referer\":\"http://m.soudongman.com/\"\n}",
"lastUpdateTime": 1680502713152,
"loginUrl": "",
"respondTime": 2678,
"ruleBookInfo": {
"author": "class.author@text",
"coverUrl": "",
"init": "",
"intro": "class.minignore@text",
"kind": "class.tags-txt@text",
"name": "class.name@text"
},
"ruleContent": {
"content": "$.data.current_chapter.chapter_img_list.[*]@js:headers={\"headers\":{\"Referer\":baseUrl}};\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"bookList": "class.comic-item",
"bookUrl": "tag.a@href",
"coverUrl": "tag.img@data-src",
"lastChapter": "class.chapter@text",
"name": "class.title@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@title",
"chapterUrl": "tag.a@href@js:\nvar bid = baseUrl.match(/com\\/(.*?)\\/?$/)[1];\nvar cid = result.match(/\\/?(.*?)\\.html/)[1];\n\"https://m.soudongman.com/api/getchapterinfov2?product_id=9&productname=soudm&platformname=wap&comic_id=\"+bid+\"&chapter_newid=\"+cid+\"&isWebp=1&quality=low\""
},
"searchUrl": "http://m.soudongman.com/sort/all.html?key={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 国漫吧",
"bookSourceType": 2,
"bookSourceUrl": "http://www.guoman8.cc",
"bookUrlPattern": "http://www.guoman8.cc/\\d+/\\d+.html",
"customOrder": -2085984633,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "日本::http://www.guoman8.cc/list/area-%E6%97%A5%E6%9C%AC-p-{{page}}&&港台::http://www.guoman8.cc/list/area-%E6%B8%AF%E5%8F%B0-p-{{page}}&&欧美::http://www.guoman8.cc/list/area-%E6%AC%A7%E7%BE%8E-p-{{page}}&&韩国::http://www.guoman8.cc/list/area-%E9%9F%A9%E5%9B%BD-p-{{page}}&&国产::http://www.guoman8.cc/list/area-%E5%9B%BD%E4%BA%A7-p-{{page}}&&热血::http://www.guoman8.cc/list/smid-1-p-{{page}}&&武侠::http://www.guoman8.cc/list/smid-2-p-{{page}}&&搞笑::http://www.guoman8.cc/list/smid-3-p-{{page}}&&耽美::http://www.guoman8.cc/list/smid-4-p-{{page}}&&爱情::http://www.guoman8.cc/list/smid-5-p-{{page}}&&科幻::http://www.guoman8.cc/list/smid-6-p-{{page}}&&魔法::http://www.guoman8.cc/list/smid-7-p-{{page}}&&神魔::http://www.guoman8.cc/list/smid-8-p-{{page}}&&竞技::http://www.guoman8.cc/list/smid-9-p-{{page}}&&格斗::http://www.guoman8.cc/list/smid-10-p-{{page}}&&机战::http://www.guoman8.cc/list/smid-11-p-{{page}}&&体育::http://www.guoman8.cc/list/smid-12-p-{{page}}&&运动::http://www.guoman8.cc/list/smid-13-p-{{page}}&&校园::http://www.guoman8.cc/list/smid-14-p-{{page}}&&励志::http://www.guoman8.cc/list/smid-15-p-{{page}}&&历史::http://www.guoman8.cc/list/smid-16-p-{{page}}&&伪娘::http://www.guoman8.cc/list/smid-17-p-{{page}}&&百合::http://www.guoman8.cc/list/smid-18-p-{{page}}&&后宫::http://www.guoman8.cc/list/smid-19-p-{{page}}&&治愈::http://www.guoman8.cc/list/smid-20-p-{{page}}&&美食::http://www.guoman8.cc/list/smid-21-p-{{page}}&&推理::http://www.guoman8.cc/list/smid-22-p-{{page}}&&悬疑::http://www.guoman8.cc/list/smid-23-p-{{page}}&&恐怖::http://www.guoman8.cc/list/smid-24-p-{{page}}&&职场::http://www.guoman8.cc/list/smid-25-p-{{page}}&&BL::http://www.guoman8.cc/list/smid-26-p-{{page}}&&剧情::http://www.guoman8.cc/list/smid-27-p-{{page}}&&生活::http://www.guoman8.cc/list/smid-28-p-{{page}}&&幻想::http://www.guoman8.cc/list/smid-29-p-{{page}}&&战争::http://www.guoman8.cc/list/smid-30-p-{{page}}&&仙侠::http://www.guoman8.cc/list/smid-33-p-{{page}}&&性转换::http://www.guoman8.cc/list/smid-40-p-{{page}}&&冒险::http://www.guoman8.cc/list/smid-41-p-{{page}}&&其他::http://www.guoman8.cc/list/smid-32-p-{{page}}\n完结::http://www.guoman8.cc/list/lz-2-p-{{page}}",
"lastUpdateTime": 1656933435756,
"respondTime": 4064,
"ruleBookInfo": {
"author": "[property=\"og:novel:author\"]@content",
"init": "",
"intro": "id.bookIntro@text",
"kind": "[property=\"og:novel:category\"]@content",
"lastChapter": "[property=\"og:novel:latest_chapter_name\"]@content",
"name": "tag.h1@text"
},
"ruleContent": {
"content": "@js:\nheader={\"Referer\":baseUrl};\nheaders={\"headers\":JSON.stringify(header)};\nimgl=eval(result.match(/(eval\\(.+?\\}\\)\\))/)[1]);\n\nhost = \"http://images.720rs.com\";\nimage=cInfo.fs;\n//piclist.map(u=>\"<img src=\\\"\"+server+u+','+JSON.stringify(headers)+\"\\\">\").join(\"\\n\")\n\nhtml='';\nfunction get7ImageUrl(image) {\n if (image.match(/^(\\/Man?)/i)) {\n return host + image\n } else if (image.match(/^(http?)/i)) {\n return image\n }\n}\nfor(i in image){\nurl=get7ImageUrl(image[i]);\nhtml+='<img src=\"'+url+','+JSON.stringify(headers)+'\">\\n'\n}\nhtml",
"imageStyle": "FULL",
"nextContentUrl": "",
"webJs": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleSearch": {
"author": "class.tags.2@a@text",
"bookList": "[email protected]||[email protected]",
"bookUrl": "tag.a.0@href||class.ell@href",
"coverUrl": "img@src||tag.img@data-src",
"intro": ".intro@span@textNodes##\\[|\\]",
"kind": "class.red.0@text",
"lastChapter": ".blue@text&&class.red.1@text",
"name": "tag.a.0@title||class.bcover@title",
"wordCount": ""
},
"ruleToc": {
"chapterList": "-id.chpater-list-1@li@a",
"chapterName": "span@ownText",
"chapterUrl": "href",
"updateTime": "i@text"
},
"searchUrl": "http://www.guoman8.cc/search/q_{{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 多漫吧",
"bookSourceType": 2,
"bookSourceUrl": "http://js.gushicibar.cn",
"customOrder": -2085984632,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "[{\"title\":\"༺ˇ»`ʚ更新ɞ´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"周一\",\"url\":\"/update/1.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周二\",\"url\":\"/update/2.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周三\",\"url\":\"/update/3.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周四\",\"url\":\"/update/4.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周五\",\"url\":\"/update/5.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周六\",\"url\":\"/update/6.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"周日\",\"url\":\"/update/7.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"༺ˇ»`ʚ分类ɞ´«ˇ༻\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1}},{\"title\":\"架空\",\"url\":\"/lists/9/架空/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"纯爱\",\"url\":\"/lists/9/纯爱/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"都市\",\"url\":\"/lists/9/都市/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"伦理\",\"url\":\"/lists/9/伦理/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"BL\",\"url\":\"/lists/9/BL/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"搞笑\",\"url\":\"/lists/9/搞笑/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"热血\",\"url\":\"/lists/9/热血/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"耽美\",\"url\":\"/lists/9/耽美/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"灵异\",\"url\":\"/lists/9/灵异/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"治愈\",\"url\":\"/lists/9/治愈/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"奇幻\",\"url\":\"/lists/9/奇幻/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"豪门\",\"url\":\"/lists/9/豪门/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"剧情\",\"url\":\"/lists/9/剧情/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"情感\",\"url\":\"/lists/9/情感/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"少女\",\"url\":\"/lists/9/少女/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"暧昧\",\"url\":\"/lists/9/暧昧/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"总裁\",\"url\":\"/lists/9/总裁/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恐怖\",\"url\":\"/lists/9/恐怖/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"悬疑\",\"url\":\"/lists/9/悬疑/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"诱惑\",\"url\":\"/lists/9/诱惑/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"职场\",\"url\":\"/lists/9/职场/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"日常\",\"url\":\"/lists/9/日常/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"逆袭\",\"url\":\"/lists/9/逆袭/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"异能\",\"url\":\"/lists/9/异能/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"青春\",\"url\":\"/lists/9/青春/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"福利\",\"url\":\"/lists/9/福利/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"恋爱\",\"url\":\"/lists/9/恋爱/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"校园\",\"url\":\"/lists/9/校园/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}},{\"title\":\"真人\",\"url\":\"/lists/9/真人/3/{{page}}.html\",\"style\":{\"layout_flexGrow\":1}}]",
"header": "{\n\t\"Connection\": \"keep-alive\",\n\t\"Upgrade-Insecure-Requests\": \"1\",\n\t\"Accept\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\n\t\"Accept-Language\": \"zh-CN,en-US;q=0.9\",\n\t\"X-Requested-With\": \"com.ly.sjm.yuli\",\n\t\"User-Agent\": \"Mozilla/5.0 (Linux; Android 10.0; wv) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/4.0 Chrome/58.0.3029.110 Mobile Safari/537.36 T7/10.3 SearchCraft/2.6.2 (Baidu; P1 7.0)\"\n}",
"lastUpdateTime": 1680469899928,
"respondTime": 20476,
"ruleBookInfo": {
"author": ".author@text",
"coverUrl": ".thumbnail@img@src",
"intro": ".intro-text@html",
"kind": ".types@a@text&&.origin@text&&.update_time@text##\\s\\d.*",
"lastChapter": "{{@.last-chapter@text}} • {{@.update_time@text##\\s.*}}",
"name": ".name@textNodes",
"wordCount": ".raft@text##$##分"
},
"ruleContent": {
"content": "img@html"
},
"ruleExplore": {},
"ruleReview": {},
"ruleSearch": {
"author": "",
"bookList": ".comic-item",
"bookUrl": "a@href",
"checkKeyWord": "",
"coverUrl": "img@src",
"intro": "",
"kind": "",
"lastChapter": ".chapter@text",
"name": ".title@text",
"wordCount": ""
},
"ruleToc": {
"chapterList": "a.comic-chapter-link",
"chapterName": "text",
"chapterUrl": "href"
},
"searchUrl": "/search?searchkey={{key}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 爱优漫",
"bookSourceType": 2,
"bookSourceUrl": "https://m.iyouman.com",
"bookUrlPattern": "",
"customOrder": -2085984631,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "每日更新::https://m.iyouman.com/api/updatelist/?productname=aym&platformname=wap\n综合榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=all&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n自制榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=self&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n少年榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=boy&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n少女榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=girl&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n新作榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=new&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n黑马榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=dark&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n付费榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=charge&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n免费榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=free&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n完结榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=finish&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n连载榜::https://m.iyouman.com/api/getRankDataForWeb/?product_id=2&isalldata=0&time_type=total&sort_type=serialize&rank_type=heat&page={{page}}&productname=aym&platformname=wap\n人气::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=click&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n更新::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=date&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n评分::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=score&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n收藏::https://m.iyouman.com/api/getsortlist/?comic_sort=&orderby=shoucang&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n连载::https://m.iyouman.com/api/getsortlist/?comic_sort=lianzai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n完结::https://m.iyouman.com/api/getsortlist/?comic_sort=wanjie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n热血::https://m.iyouman.com/api/getsortlist/?comic_sort=rexue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n机战::https://m.iyouman.com/api/getsortlist/?comic_sort=jizhan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n运动::https://m.iyouman.com/api/getsortlist/?comic_sort=yundong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n推理::https://m.iyouman.com/api/getsortlist/?comic_sort=tuili&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n冒险::https://m.iyouman.com/api/getsortlist/?comic_sort=maoxian&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n耽美::https://m.iyouman.com/api/getsortlist/?comic_sort=liaomei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n百合::https://m.iyouman.com/api/getsortlist/?comic_sort=baihe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n搞笑::https://m.iyouman.com/api/getsortlist/?comic_sort=gaoxiao&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n战争::https://m.iyouman.com/api/getsortlist/?comic_sort=zhanzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n神魔::https://m.iyouman.com/api/getsortlist/?comic_sort=shenmo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n忍者::https://m.iyouman.com/api/getsortlist/?comic_sort=renzhe&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n竞技::https://m.iyouman.com/api/getsortlist/?comic_sort=jingji&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n悬疑::https://m.iyouman.com/api/getsortlist/?comic_sort=xuanyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n社会::https://m.iyouman.com/api/getsortlist/?comic_sort=shehui&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n恋爱::https://m.iyouman.com/api/getsortlist/?comic_sort=lianai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n宠物::https://m.iyouman.com/api/getsortlist/?comic_sort=chongwu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n吸血::https://m.iyouman.com/api/getsortlist/?comic_sort=xixue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n萝莉::https://m.iyouman.com/api/getsortlist/?comic_sort=luoli&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n后宫::https://m.iyouman.com/api/getsortlist/?comic_sort=hougong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n御姐::https://m.iyouman.com/api/getsortlist/?comic_sort=yujie&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n霸总::https://m.iyouman.com/api/getsortlist/?comic_sort=bazong&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n玄幻::https://m.iyouman.com/api/getsortlist/?comic_sort=xuanhuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n古风::https://m.iyouman.com/api/getsortlist/?comic_sort=gufeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n历史::https://m.iyouman.com/api/getsortlist/?comic_sort=lishi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n漫改::https://m.iyouman.com/api/getsortlist/?comic_sort=mangai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n游戏::https://m.iyouman.com/api/getsortlist/?comic_sort=youxi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n穿越::https://m.iyouman.com/api/getsortlist/?comic_sort=chuanyue&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n恐怖::https://m.iyouman.com/api/getsortlist/?comic_sort=kongbu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n真人::https://m.iyouman.com/api/getsortlist/?comic_sort=zhenren&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n防疫::https://m.iyouman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n防疫::https://m.iyouman.com/api/getsortlist/?comic_sort=fangyi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n科幻::https://m.iyouman.com/api/getsortlist/?comic_sort=kehuan&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n都市::https://m.iyouman.com/api/getsortlist/?comic_sort=dushi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n武侠::https://m.iyouman.com/api/getsortlist/?comic_sort=wuxia&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n修真::https://m.iyouman.com/api/getsortlist/?comic_sort=xiuzhen&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n生活::https://m.iyouman.com/api/getsortlist/?comic_sort=shenghuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n动作::https://m.iyouman.com/api/getsortlist/?comic_sort=dongzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n大陆::https://m.iyouman.com/api/getsortlist/?comic_sort=dalu&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n日本::https://m.iyouman.com/api/getsortlist/?comic_sort=riben&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n港台::https://m.iyouman.com/api/getsortlist/?comic_sort=gangtai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n欧美::https://m.iyouman.com/api/getsortlist/?comic_sort=oumei&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n韩国::https://m.iyouman.com/api/getsortlist/?comic_sort=os&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n全彩::https://m.iyouman.com/api/getsortlist/?comic_sort=quancai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n黑白::https://m.iyouman.com/api/getsortlist/?comic_sort=heibai&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n小说::https://m.iyouman.com/api/getsortlist/?comic_sort=xiaoshuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n杂志::https://m.iyouman.com/api/getsortlist/?comic_sort=zazhi&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n日更::https://m.iyouman.com/api/getsortlist/?comic_sort=rigeng&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n新作::https://m.iyouman.com/api/getsortlist/?comic_sort=xinzuo&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap\n精品::https://m.iyouman.com/api/getsortlist/?comic_sort=jingpin&orderby=&search_type=&search_key=&page={{page}}&size=30&productname=aym&platformname=wap",
"lastUpdateTime": 1668783678807,
"loginUrl": "",
"respondTime": 1839,
"ruleBookInfo": {
"author": "$.data.comic_author",
"coverUrl": "$.data.cover_list[0]",
"init": "",
"intro": "$.data.comic_desc",
"kind": "$.data.comic_type_new[*].name",
"lastChapter": "$.data.last_chaptet_name",
"name": "$.data.comic_name@put:{comic_id:$.data.comic_id}",
"tocUrl": "https://m.iyouman.com/api/getchapterlist?product_id=4&productname=aym&platformname=wap&comic_id={{$.data.comic_id}}"
},
"ruleContent": {
"content": "data.current_chapter.chapter_img_list@js:\nheaders={\"headers\":{\"Referer\":baseUrl}}\n;\nresult.split(\"\\n\").map(x=>'<img src=\\\"'+x+','+JSON.stringify(headers)+'\\\">').join(\"\\n\")",
"imageStyle": "FULL",
"nextContentUrl": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"author": "$.comic_author",
"bookList": "$.data.update[*].info[*]||$.data.data[*]||$.data[*]",
"bookUrl": "https://m.iyouman.com/api/getcomicinfo_body/?comic_id={$.comic_id}&productname=aym&platformname=wap",
"coverUrl": "http://image.mhxk.com/mh/{$.comic_id}.jpg-600x800.jpg.webp",
"kind": "$.comic_type||$.sort_typelist##[a-zA-Z]|\\|",
"lastChapter": "$.last_chapter_name||$.comic_chapter_name",
"name": "$.comic_name"
},
"ruleToc": {
"chapterList": "-$.data.*",
"chapterName": "$.chapter_name@put:{chapter_id:$.chapter_id}",
"chapterUrl": "https://m.iyouman.com/api/getchapterinfov2?product_id=4&productname=aym&platformname=wap&comic_id=@get:{comic_id}&chapter_newid={{$.chapter_newid}}&isWebp=1&quality=low",
"isVolume": ""
},
"searchUrl": "https://m.iyouman.com/api/getsortlist/?search_type=&search_key={{key}}&page={{page}}&size=30&productname=aym&platformname=wap",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 733动漫",
"bookSourceType": 2,
"bookSourceUrl": "https://www.733.so",
"bookUrlPattern": "",
"customOrder": -2085984630,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "全部::https://www.733.so/all/{{page}}.html\n完结::https://www.733.so/mh/wanjie/{{page}}.html\n连载::https://www.733.so/mh/lianzai/{{page}}.html\n热血::https://www.733.so/mh/rexue/{{page}}.html\n格斗::https://www.733.so/mh/gedou/{{page}}.html\n科幻::https://www.733.so/mh/kehuan/{{page}}.html\n竞技::https://www.733.so/mh/jingji/{{page}}.html\n搞笑::https://www.733.so/mh/gaoxiao/{{page}}.html\n推理::https://www.733.so/mh/tuili/{{page}}.html\n恐怖::https://www.733.so/mh/kongbu/{{page}}.html\n耽美::https://www.733.so/mh/danmei/{{page}}.html\n少女::https://www.733.so/mh/shaonv/{{page}}.html\n恋爱::https://www.733.so/mh/lianai/{{page}}.html\n生活::https://www.733.so/mh/shenghuo/{{page}}.html\n战争::https://www.733.so/mh/zhanzheng/{{page}}.html\n故事::https://www.733.so/mh/gushi/{{page}}.html\n冒险::https://www.733.so/mh/maoxian/{{page}}.html\n魔幻::https://www.733.so/mh/mohuan/{{page}}.html\n玄幻::https://www.733.so/mh/xuanhuan/{{page}}.html\n校园::https://www.733.so/mh/xiaoyuan/{{page}}.html\n悬疑::https://www.733.so/mh/xuanyi/{{page}}.html\n萌系::https://www.733.so/mh/mengxi/{{page}}.html\n穿越::https://www.733.so/mh/chuanyue/{{page}}.html\n后宫::https://www.733.so/mh/hougong/{{page}}.html\n都市::https://www.733.so/mh/dushi/{{page}}.html\n全部::https://www.733.so/mh/all/{{page}}.html\n武侠::https://www.733.so/mh/wuxia/{{page}}.html\n历史::https://www.733.so/mh/lishi/{{page}}.html\n同人::https://www.733.so/mh/tongren/{{page}}.html\n励志::https://www.733.so/mh/lizhi/{{page}}.html\n百合::https://www.733.so/mh/baihe/{{page}}.html\n治愈::https://www.733.so/mh/zhiyu/{{page}}.html\n机甲::https://www.733.so/mh/jijia/{{page}}.html\n纯爱::https://www.733.so/mh/chunai/{{page}}.html\n血腥::https://www.733.so/mh/xuexing/{{page}}.html\n僵尸::https://www.733.so/mh/jiangshi/{{page}}.html\n恶搞::https://www.733.so/mh/egao/{{page}}.html\n虐心::https://www.733.so/mh/nuexin/{{page}}.html\n动作::https://www.733.so/mh/dongzuo/{{page}}.html\n惊险::https://www.733.so/mh/jingxian/{{page}}.html\n唯美::https://www.733.so/mh/weimei/{{page}}.html\n震撼::https://www.733.so/mh/zhenhan/{{page}}.html\n复仇::https://www.733.so/mh/fuchou/{{page}}.html\n侦探::https://www.733.so/mh/zhentan/{{page}}.html\n脑洞::https://www.733.so/mh/naodong/{{page}}.html\n奇幻::https://www.733.so/mh/qihuan/{{page}}.html\n宫斗::https://www.733.so/mh/gongdou/{{page}}.html\n爆笑::https://www.733.so/mh/baoxiao/{{page}}.html\n运动::https://www.733.so/mh/yundong/{{page}}.html\n青春::https://www.733.so/mh/qingchun/{{page}}.html\n灵异::https://www.733.so/mh/lingyi/{{page}}.html\n古风::https://www.733.so/mh/gufeng/{{page}}.html\n权谋::https://www.733.so/mh/quanmou/{{page}}.html\n节操::https://www.733.so/mh/jiecao/{{page}}.html\n明星::https://www.733.so/mh/mingxing/{{page}}.html\n暗黑::https://www.733.so/mh/anhei/{{page}}.html\n社会::https://www.733.so/mh/shehui/{{page}}.html\n浪漫::https://www.733.so/mh/langman/{{page}}.html\n栏目::https://www.733.so/mh/lanmu/{{page}}.html\n仙侠::https://www.733.so/mh/xianxia/{{page}}.html\n日韩::https://www.733.so/mh/riben/{{page}}.html\n内地::https://www.733.so/mh/guochan/{{page}}.html\n港台::https://www.733.so/mh/gangntai/{{page}}.html\n欧美::https://www.733.so/mh/oumei/{{page}}.html\n其他::https://www.733.so/mh/qita/{{page}}.html",
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4094.1 Safari/537.36\"\n}",
"lastUpdateTime": 1656933484236,
"loginUrl": "",
"respondTime": 3034,
"ruleBookInfo": {
"author": "[email protected]@text",
"init": "",
"intro": "id.comic-description@text##简介:",
"kind": "[email protected]@text&&[email protected]@text",
"lastChapter": "[email protected]@text",
"name": "h1@text"
},
"ruleContent": {
"content": "@js:\nvar html=result,\noptions={headers:{Referer:baseUrl}};\n\n(function getImgList() {\r\n eval(html.match(/(var qTcms_Cur=[\\S\\s]+var qTcms_S_show_1=.*?;)/)[1]);\r\n var list = java.base64Decode(qTcms_S_m_murl_e).split(\"\\\\$qingtiandy\\\\$\");\r\n var piclist = new Array();\r\n for (var i = 0; i < list.length; i++) {\n var v = list[i];\r\n var s = v;\r\n if (v.substring(0, 1) == \"/\") {\r\n s = qTcms_m_weburl + s;\r\n } else {\r\n if (qTcms_Pic_m_if != \"2\") {\r\n v = v.replaceAll(\"\\\\?\", \"a1a1\");\r\n v = v.replaceAll(\"&\", \"b1b1\");\r\n v = v.replaceAll(\"%\", \"c1c1\");\r\n var m_httpurl = \"\";\r\n if (typeof(qTcms_S_m_mhttpurl) != \"undefined\") m_httpurl = java.base64Decode(qTcms_S_m_mhttpurl);\r\n }\r\n }\r\n piclist[i] =s;\r\n }\r\n return piclist;\r\n}()).map(uri=>\n'<img src=\"'+uri+'\">').join(\"\\n\")",
"imageStyle": "FULL"
},
"ruleExplore": {
"bookList": ""
},
"ruleSearch": {
"bookList": "[email protected]",
"bookUrl": "tag.a.0@href",
"coverUrl": "tag.img@src",
"kind": "class.zuozhe@text##状态:",
"lastChapter": "[email protected]@text",
"name": "class.title@text"
},
"ruleToc": {
"chapterList": "[email protected]",
"chapterName": "tag.a@text",
"chapterUrl": "tag.a@href"
},
"searchUrl": "https://www.733.so/statics/search.aspx?key={{key}}&page={{page}}",
"weight": 0
},
{
"bookSourceComment": "",
"bookSourceGroup": "🎨 漫画",
"bookSourceName": "🎨 VOMIC",
"bookSourceType": 2,
"bookSourceUrl": "http://api.vomicmh.com",
"customOrder": -2085984629,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "<js>\nrank=[\"热门\",\"实时\",\"一日\",\"一周\",\"一月\",\"收藏\",\"可惜\",\"上升\",\"国漫\",\"热血\",\"冒险\",\"玄幻\",\"少年\",\"中国\",\"中韩\",\"韩国\",\"大陆\",\"美国\"]\nrank.map((title,id)=>\n`${title}::/api/v1/rank/rank-data?rank_id=${id+1}&page={{page}}`).join('\\n')\n\n\n</js>",
"header": "{\"Referer\":\"http://www.vomicmh.com/\"}",
"lastUpdateTime": 1680655857176,
"respondTime": 3871,
"ruleBookInfo": {
"author": "$.data.authors_name",
"coverUrl": "",
"init": "",
"intro": "{{$..description}}\n{{$..source_url}}",
"kind": "$..categories[*]&&$..status&&$..site.site_cn",
"lastChapter": "$..latest_chapter.title",
"name": "$.data.title",
"tocUrl": "/api/v1/detail/get-comic-detail-chapter-data?mid={{$.data.mid}}@put:{mid:$.data.mid}"
},
"ruleContent": {
"content": "<js>\nvar options={headers:{Referer:baseUrl}};\n//String.add(options)\nfunction add(url,options){return!options?url:`${url},${JSON.stringify(options)}`;}String.prototype.add=function(){return add(this,arguments[0]);};\nObject.prototype.add=function(){return add(this.toString(),arguments[0]);};\n\nfunction check(url){let domain=String(source.getKey()).replace(/^.*?\\./,\"\");if(!url.includes(domain))return url;return url.add(options);}\n\n//Array.toImg(checkUrl)\nfunction toImg(imgs,handle){return imgs.map(src=>`<img src=\"${handle?handle(src):src}\"/>`).join(\"\\n\");}Array.prototype.toImg=function(){return toImg(this,arguments[0]);};\n\nJSON.parse(result).data.toImg(check)\n</js>",
"imageStyle": ""
},
"ruleExplore": {
"bookList": ""
},
"ruleReview": {},
"ruleSearch": {
"author": "来源: {{$.site.site_en}}",
"bookList": "$.data.result[*]",
"bookUrl": "/api/v1/detail/get-comic-detail-data?mid={{$.mid}}",
"checkKeyWord": "",
"coverUrl": "cover_img_url",
"kind": "status",
"lastChapter": "latest_chapter.title&&latest_chapter.update_time",
"name": "title"
},
"ruleToc": {
"chapterList": "-$.data[*]",