-
Notifications
You must be signed in to change notification settings - Fork 27
/
esou.json
2057 lines (2005 loc) · 146 KB
/
esou.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
[
{
"id": "b660505d-845e-4678-92ef-b261005eddd3",
"createTime": 1593517133706614,
"modifiedTime": 1616494127681579,
"enableUpload": true,
"author": "wenmoux",
"postScript": "",
"name": "17k小说",
"host": "https://www.17k.com",
"group": "",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "@js:\n(async() =>{res=await http.get(\"http://api.17k.com/book/get/menu?cpsOpid=0&_filterData=1&device_id=32536325221b1ba1&channel=0&_versions=1150&merchant=17Kxiaomi&platform=2&manufacturer=Xiaomi&clientType=1&appKey=4037465544&model=Redmi%20K30&cpsSource=0&brand=Redmi&youthModel=0\")\nreturn JSON.parse(res).data.map(data => {\nname1=data.name\nid1=data.id\n return data.leftmenu.splice(1,).map(data => {\nname2=data.name\nid2=data.id\nreturn data.order.map(data => \n`${name2}::${name1}-${data.name}::http://api.17k.com/book/rank/client?classId=${id1}&orderTime=${data.id}&orderBy=1&page=$page&type=${id2}&clientType=1&cpsOpid=0&_filterData=1&channel=0&_versions=1070&merchant=17Kyyb&appKey=4037465544&cpsSource=0&platform=2`).join(\"\\n\")\n}).join(\"\\n\")\n}).join(\"\\n\")})()",
"discoverNextUrl": "",
"discoverItems": "",
"discoverList": "$.data[*]",
"discoverTags": "$.categoryName",
"discoverName": "$.bookName",
"discoverCover": "$.coverImg",
"discoverAuthor": "$.authorPenName",
"discoverChapter": "$.lastUpdateChapterName",
"discoverDescription": "$.introduction",
"discoverResult": "$.id",
"enableSearch": true,
"searchUrl": "http://api.17k.com/book/search/list?num=20&fuzzySearchType=1&page=searchPage&keyword=$keyword&cpsOpid=0&_filterData=1&device_id=32536325221b1ba1&channel=0&_versions=1110&merchant=17Kyyb&platform=2&manufacturer=&clientType=1&appKey=4037465544",
"searchNextUrl": "",
"searchItems": "",
"searchList": "$..lists",
"searchTags": "$.bookCategory.name",
"searchName": "$.bookName",
"searchCover": "$.coverImg",
"searchAuthor": "$.authorPenName",
"searchChapter": "$.lastUpdateChapterName",
"searchDescription": "$.introduction",
"searchResult": "$.id",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "http://api.17k.com/v2/book/$result/volumes?app_key=4037465544&price_extend=1&_versions=1070&client_type=2&_filter_data=1&channel=2&merchant=17Khwyysd&_access_version=2&cps=0",
"chapterNextUrl": "",
"chapterItems": "",
"chapterList": "$.data.volumes[*].chapters[*]",
"chapterName": "$.chapter_name",
"chapterCover": "",
"chapterLock": "$.vip@js:result==\"Y\"",
"chapterTime": "",
"chapterResult": "@js:\n`https://www.17k.com/ck/book/${lastResult}/chapter/${result.chapter_id}?subAllPrice=1&appKey=2406394919`",
"contentUrl": "",
"contentNextUrl": "",
"contentItems": "$..content[*].text",
"loginUrl": "https://passport.17k.com/login",
"cookies": "",
"viewStyle": 0
},
{
"id": "504274d4-26a5-4951-9c9f-7990d8f06b9b",
"createTime": 1597387479970738,
"modifiedTime": 1597749597822689,
"author": "wenmoux",
"postScript": "",
"name": "Acfun_番剧",
"host": "https://api-new.app.acfun.cn",
"group": "Acfun",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "全部::https://api-new.app.acfun.cn/rest/app/lite/new-bangumi/index?entries=11&entries=20&entries=30&entries=805306368&entries=40&entries=50&pageSize=30&pageNo=1&app_version=1.11.0.144&market=sm_xiaomi&sys_name=android&appMode=1&socName=%3A%20Qualcomm%20MSM8917&boardPlatform=msm8937&sys_version=6.0.1&product=ACFUN_APP.LITE?",
"discoverItems": "",
"discoverList": "$.bangumis[*]",
"discoverTags": "$.areaShow&&$.lastUpdateItemTimeStr",
"discoverName": "$.title",
"discoverCover": "$.coverImageH",
"discoverAuthor": "",
"discoverChapter": "$.lastUpdateItemName",
"discoverDescription": "$.intro",
"discoverResult": "$.id",
"enableSearch": true,
"searchUrl": "https://api-new.app.acfun.cn/rest/app/search/bgm?market=appstore&app_version=6.28.1.407&product=ACFUN_APP&origin=ios&keyword=$keyword&sys_name=ios&egid=DFPC355795D0F3EAE4191CAE58ABFBECDC8ACCE372C8984640AE4D9C22780B6C&sys_version=13.6&resolution=2048x1536&ftt=",
"searchItems": "",
"searchList": "$.bgmList[*]",
"searchTags": "$.favoriteCountInfo&&$.episodeInfo&&$.areaShow&&$.danmakuCountInfo&&$.viewCountInfo",
"searchName": "$.bgmTitle",
"searchCover": "$.coverImageV",
"searchAuthor": "",
"searchChapter": "$.lastVideoName",
"searchDescription": "$.bgmIntro",
"searchResult": "$.bgmId",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "{\n \"url\": \"https://api-new.app.acfun.cn/rest/app/lite/new-bangumi/itemList?app_version=1.11.0.144&market=sm_xiaomi&sys_name=android&appMode=1&socName=%3A%20Qualcomm%20MSM8917&boardPlatform=msm8937&sys_version=6.0.1&product=ACFUN_APP.LITE\",\n \"method\": \"POST\",\n \"body\": \"bangumiId=$result&pageSize=1000&pageNo=1&mkey=AAHewK3eIAAyMTk3Mzg1MTkAAhAAZYCufARsmh_bYAAAAEMyjy_mir2MdGSK9LGejY3U1N3M4XZrpYqti7rf-VDHXIaDt7AfmxP3WmlbFUIFZUEed_wnBIzY7Sn6n7l-utn9OiqHyrRGJwE6-AekFoLQMYEZnFi7iHZC3lSkbwAePw%3D%3D\",\n \"headers\": {\n \"Content-Type\": \"application/x-www-form-urlencoded\",\n \"appVersion\":\"1.11.0.144\",\n \"acPlatform\":\"ANDROID_PHONE\" \n }\n}",
"chapterItems": "",
"chapterList": "$.items[*]",
"chapterName": "$.episodeName&&$.title",
"chapterCover": "$.image",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.currentVideoInfo.ksPlayJson@json:$.adaptationSet.representation[0].url",
"contentUrl": "https://m.jjwxc.com/invite/index?novelid=4977950&inviteid=10542754",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
},
{
"id": "b533e958-75e8-4fb4-b5cc-ffb5ead4dc3d",
"createTime": 1597110104399327,
"modifiedTime": 1597228595036488,
"author": "wenmoux",
"postScript": "",
"name": "Acfun_排行",
"host": "https://api-new.acfunchina.com",
"group": "",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "@js:\nlet tag = ['香蕉榜-banana-', '全站-channel-0', '番剧-channel-155', '动画-channel-1', '生活-channel-201', '娱乐-channel-60', '游戏-channel-59', '舞蹈•偶像-channel-123', '音乐-channel-58', '科技-channel-70', '影视-channel-68', '体育-channel-69', '鱼塘-channel-125']\na=\"\"\nlet rankPeriod =['DAY-日榜','WEEK-周榜']\n tag.map(data => {\n data = data.split('-')\nfor (rank of rankPeriod){\nrank=rank.split('-') \n a += `${data[0]}::${rank[1]}::{\"url\":\"https://api-new.acfunchina.com/rest/app/rank/${data[1]}?market=appstore&app_version=6.24.0.388&product=ACFUN_APP&origin=ios&mkey=AAHewK3eIAAyMjAwNzUwNzcBAhAAMEP1uwQ5saHhYAAAAFVuZgWY5bDkTSMqgBqm%0D%0Am4rgnn9h4r63X9eiAN7WpyfhBQX95IrtiAGzhf-o4P-gmcgPtJ0izmd26BuNCQZg%0D%0A5kHIEXDGL17EZCRUVxdMgZAxEJwgjb1cCx2vkWl5kYjElw%3D%3D&sys_name=ios&egid=DFPC0D9972AB4AEF0F57FAD8437DBC6CAD35548B567E77BB25A061A74D89D3A2&sys_version=13.5&resolution=2048x1536&ftt=\",\"method\":\"post\",\"body\":\"rankPeriod=${rank[0]}&channelId=${data[2]}\",\"headers\":{\"Content-Type\": \"application/x-www-form-urlencoded\"}}\\n` }\n })\na",
"discoverItems": "",
"discoverList": "$.rankList[*]",
"discoverTags": "$.channelName",
"discoverName": "$.contentTitle",
"discoverCover": "$.videoCover",
"discoverAuthor": "$.userName",
"discoverChapter": "",
"discoverDescription": "$.description",
"discoverResult": "$.dougaId",
"enableSearch": true,
"searchUrl": "https://api-new.app.acfun.cn/rest/app/search/video?mkey=AAHewK3eIAAyMjAwNzUyOTkBAhAAMEP1uwR-NxNHYAAAAMLRelgG9mZWrUWVzbRZ%0D%0AeM_gnn9h4r63X9eiAN7WpyfhBQX95IrtiAGzhf-o4P-gmcgPtJ0izmd26BuNCQZg%0D%0A5kHIEXDGL17EZCRUVxdMgZAxEJwgjb1cCx2vkWl5kYjElw%3D%3D&keyword=$keyword&market=appstore&channelId=0&sortType=1&app_version=6.24.0.388&product=ACFUN_APP&sys_version=13.5&egid=DFPC0D9972AB4AEF0F57FAD8437DBC6CAD35548B567E77BB25A061A74D89D3A2&origin=ios&ftt=&pCursor=0&sys_name=ios&resolution=2048x1536",
"searchItems": "",
"searchList": "$.videoList[*]",
"searchTags": "$.playDuration",
"searchName": "$.title",
"searchCover": "$.coverUrl",
"searchAuthor": "$.userName",
"searchChapter": "",
"searchDescription": "{{$.displayInfo}} {{$.danmakuCountInfo}}弹幕",
"searchResult": "$.contentId",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "https://api-new.acfunchina.com/rest/app/douga/info?mkey=AAHewK3eIAAyMjAwNzQ5MjUBAhAAMEP1uwQzed6KYAAAAPcfJl8UWqSpEZcS-S3A%0D%0A037gnn9h4r63X9eiAN7WpyfhBQX95IrtiAGzhf-o4P-gmcgPtJ0izmd26BuNCQZg%0D%0A5kHIEXDGL17EZCRUVxdMgZAxEJwgjb1cCx2vkWl5kYjElw%3D%3D&market=appstore&app_version=6.24.0.388&product=ACFUN_APP&sys_version=13.5&priority=0&egid=DFPC0D9972AB4AEF0F57FAD8437DBC6CAD35548B567E77BB25A061A74D89D3A2&origin=ios&ftt=&dougaId=$result&resolution=2048x1536&sys_name=ios",
"chapterItems": "",
"chapterList": "$.currentVideoInfo.playInfos[*]",
"chapterName": "$.qualityLabel",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.playUrls[0]",
"contentUrl": "https://m.jjwxc.com/invite/index?novelid=4977950&inviteid=10542754",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
}
,
{
"id": "66e75d21-5f3f-41a0-9b57-e7592e60b583",
"createTime": 1613006652433084,
"modifiedTime": 1613008529195511,
"enableUpload": true,
"author": "wenmoux",
"postScript": "",
"name": "宜搜小说",
"host": "api.ieasou.com",
"group": "小说",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": false,
"discoverUrl": "",
"discoverNextUrl": "",
"discoverItems": "",
"discoverList": "",
"discoverTags": "",
"discoverName": "",
"discoverCover": "",
"discoverAuthor": "",
"discoverChapter": "",
"discoverDescription": "",
"discoverResult": "",
"enableSearch": true,
"searchUrl": "http://api.ieasou.com/api/bookapp/searchdzh.m?word=$keyword&type=0&page_id=1&count=20&sort_type=0&subclass=0&datasource=0&showj=1&wc=0&catalog=0&bookStatus=0&cid=eef_easou_book&version=002&os=android&udid=F4D87828E95FE8842FDF6ECB2CA93B55&appverion=1099&ch=blp1298_10891_001&session_id=&lastClock=0&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f8ed32c57a30b31499e605614f38bed2&ptype=5&gender=1&userInitPay=3&birt=0&userNewMedia=0&instime=1613003140324&chType=0&appType=0",
"searchNextUrl": "",
"searchItems": "",
"searchList": "$.all_book_items[*]",
"searchTags": "$.category",
"searchName": "$.name",
"searchCover": "$.imgUrl",
"searchAuthor": "$.author",
"searchChapter": "$.lastChapterName",
"searchDescription": "$.desc",
"searchResult": "http://api.ieasou.com/api/bookapp/bookSummary.m?gid={{$.gid}}&nid={{$.nid}}&sort=1&size=100000000&session_id=&returnType=100&gsort=1&cid=eef_easou_book&version=002&os=android&udid=F4D87828E95FE8842FDF6ECB2CA93B55&appverion=1099&ch=blp1298_10891_001&session_id=&lastClock=0&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f8ed32c57a30b31499e605614f38bed2&ptype=5&gender=1&userInitPay=3&birt=0&userNewMedia=0&instime=1613003140324&chType=0&appType=0",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterNextUrl": "",
"chapterItems": "",
"chapterList": "$.volumes[*].chapters[*]",
"chapterName": "$.chapter_name",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.sort@js:\"http://api.ieasou.com/api/bookapp/chargeChapter.m?a=1&autoBuy=0&cid=eef_easou_book&version=002&os=android&udid=F4D87828E95FE8842FDF6ECB2CA93B55&appverion=1099&ch=blp1298_10891_001&session_id=&lastClock=0&dzh=1&scp=0&appid=10001&utype=0&rtype=3&pushid=f8ed32c57a30b31499e605614f38bed2&ptype=5&gender=1&userInitPay=3&birt=0&userNewMedia=0&instime=1613003140324&chType=0&appType=0&\"+lastResult.match(/gid=\\d+&nid=\\d+/)+\"&sort=\"+result+\"&gsort=0&sgsort=0&sequence=11&chapter_name=\"",
"contentUrl": "",
"contentNextUrl": "",
"contentItems": "$.content",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
},
{
"id": "420d6d8a-4762-4829-85e9-63e21c00c6ed",
"createTime": 1595595630536743,
"modifiedTime": 1595597693871870,
"author": "wenmoux",
"postScript": "",
"name": "场库",
"host": "https://app.vmovier.com/apiv3",
"group": "",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "VmovierApp 5.7.7 / Android 10 / WIFI / 1080*2175 / 2.75",
"enableDiscover": true,
"discoverUrl": "today::/index/getIndexPosts/lastid\n分类::热门::/post/getPostByTab?p=$page&size=10&tab=hot\n分类::创意::/post/getPostInCate?p=$page&size=10&cateid=6\n分类::励志::/post/getPostInCate?p=$page&size=10&cateid=7\n分类::搞笑::/post/getPostInCate?p=$page&size=10&cateid=8\n分类::广告::/post/getPostInCate?p=$page&size=10&cateid=13\n分类::爱情::/post/getPostInCate?p=$page&size=10&cateid=12\n分类::剧情::/post/getPostInCate?p=$page&size=10&cateid=17\n分类::运动::/post/getPostInCate?p=$page&size=10&cateid=10\n分类::动画::/post/getPostInCate?p=$page&size=10&cateid=16\n分类::音乐::/post/getPostInCate?p=$page&size=10&cateid=18\n分类::科幻::/post/getPostInCate?p=$page&size=10&cateid=23\n分类::预告::/post/getPostInCate?p=$page&size=10&cateid=43\n分类::记录::/post/getPostInCate?p=$page&size=10&cateid=24\n分类::混剪::/post/getPostInCate?p=$page&size=10&cateid=44\n分类::游戏::/post/getPostInCate?p=$page&size=10&cateid=104\n分类::时尚::/post/getPostInCate?p=$page&size=10&cateid=88\n分类::实验::/post/getPostInCate?p=$page&size=10&cateid=45\n分类::生活::/post/getPostInCate?p=$page&size=10&cateid=78\n分类::幕后::/post/getPostByTab?p=1&size=10&tab=hot\n分类::汽车::/post/getPostInCate?p=$page&size=10&cateid=92\n分类::旅行::/post/getPostInCate?p=$page&size=10&cateid=11",
"discoverItems": "",
"discoverList": "$..list[*]||$.data[*]",
"discoverTags": "$.cates[*].catename",
"discoverName": "$.title",
"discoverCover": "$.image",
"discoverAuthor": "",
"discoverChapter": "",
"discoverDescription": "{{$.rating}}分 • {{$.like_num}}人喜欢",
"discoverResult": "$.postid",
"enableSearch": true,
"searchUrl": "/search?kw=$keyword",
"searchItems": "",
"searchList": "$.data.result.list[*]",
"searchTags": "$.cates[*].catename",
"searchName": "$.title",
"searchCover": "$.image",
"searchAuthor": "",
"searchChapter": "",
"searchDescription": "{{$.rating}}分 • {{$.like_num}}人喜欢",
"searchResult": "$.postid",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "https://app.vmovier.com/apiv3/post/view?postid=$result",
"chapterItems": "",
"chapterList": "$.data.content_video[0].progressive[*]",
"chapterName": "$.profile",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.url",
"contentUrl": "https://m.jjwxc.com/invite/index?novelid=4489992&inviteid=10395711",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
},
{
"id": "5095b619-ca3b-4594-8e29-a688ffea81c5",
"createTime": 1593762315196750,
"modifiedTime": 1596301001741429,
"author": "wenmoux",
"postScript": "",
"name": "有兔阅读",
"host": "http://app.zhoudamozi.com",
"group": "",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "人气榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=&type=1\n评分榜::日榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=1&type=6\n评分榜::周榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=2&type=6\n评分榜::月榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=3&type=6\n男频榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=&type=3\n女频榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=&type=2\n完本榜::/popular/new/detail?pageNo=$page&pageSize=10&subType=&type=4\n收藏榜::日榜::http://api1.jiuhew.com/popular/new/detail?pageNo=1&pageSize=10&subType=1&type=5\n收藏榜::周榜::http://api1.jiuhew.com/popular/new/detail?pageNo=$page&pageSize=10&subType=2&type=5\n收藏榜::月榜::http://api1.jiuhew.com/popular/new/detail?pageNo=$page&pageSize=10&subType=3&type=5",
"discoverItems": "",
"discoverList": "$.data[*]",
"discoverTags": "$.clsName",
"discoverName": "$.name",
"discoverCover": "https://book.chengxinqinye.com/book{{$.photoPath}}",
"discoverAuthor": "$.author",
"discoverChapter": "",
"discoverDescription": "$.intro",
"discoverResult": "/book/chapter/listAll?bookId={{$.id}}",
"enableSearch": true,
"searchUrl": "@js:\n(() => {\n var url = `http://app.zhoudamozi.com/es/search/book?q=${keyword}&pageNo=${page}&pageSize=10`;\n var method = \"get\"; // or \"post\"\n var body = {};\n var headers = {\"Seq\":\"54e6ca612c8b1f47e21331bde25aa346\"};\n // var encoding = \"gbk\";\n return {url, method, body, headers};\n})();",
"searchItems": "",
"searchList": "$.data[*]",
"searchTags": "$.clsName",
"searchName": "$.name",
"searchCover": "https://book.chengxinqinye.com/book{{$.photoPath}}",
"searchAuthor": "$.author",
"searchChapter": "",
"searchDescription": "$.intro",
"searchResult": "/book/chapter/listAll?bookId={{$.id}}",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterItems": "",
"chapterList": "$.data[*]",
"chapterName": "$.name",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "http://book.chengxinqinye.com/book{{$.filePath}}",
"contentUrl": "",
"contentItems": "text",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
}
,
{
"id": "5ff27cbb-795f-4ad6-abb4-901a4dd93a93",
"createTime": 1595417180406193,
"modifiedTime": 1595421409717665,
"author": "wenmoux",
"postScript": "",
"name": "古书馆",
"host": "http://app.bailianyu.com:1819/appapiv1",
"group": "",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "四大名著::/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=27&time_typ\n世情小说::/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=25&time_type=0&full_type=2&page=$page&page_size=10\n神鬼志怪::/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=22&time_type=0&full_type=2&page=$page&page_size=10\n侠义公案::/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=20&time_type=0&full_type=2&page=$page&page_size=10\n历史演义::/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=31&time_type=0&full_type=2&page=$page&page_size=10\n学术杂书::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=26&time_type=0&full_type=2&page=$page&page_size=10\n杂剧戏曲::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=30&time_type=0&full_type=2&page=$page&page_size=10\n三言二拍::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=24&time_type=0&full_type=2&page=$page&page_size=10\n二十四史::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=33&time_type=0&full_type=2&page=$page&page_size=10\n蒙学大全::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=32&time_type=0&full_type=2&page=$page&page_size=10\n鲁迅全集::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=35&time_type=0&full_type=2&page=$page&page_size=10\n老舍全集::http://app.bailianyu.com:1819/appapiv1/classifylist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&cid=34&time_type=0&full_type=2&page=$page&page_size=10",
"discoverItems": "",
"discoverList": "$..list[*]",
"discoverTags": "",
"discoverName": "$.title",
"discoverCover": "$.image",
"discoverAuthor": "$.author",
"discoverChapter": "$.last_chapter_name",
"discoverDescription": "$.introduction",
"discoverResult": "$.id",
"enableSearch": true,
"searchUrl": "http://app.bailianyu.com:1819/appapiv1/search?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&keyword=$keyword&page=1&page_size=10",
"searchItems": "",
"searchList": "$.data[*]",
"searchTags": "",
"searchName": "$.title",
"searchCover": "$.image",
"searchAuthor": "$.author",
"searchChapter": "$.last_chapter_name",
"searchDescription": "$.introduction",
"searchResult": "$.id",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "@js:\nurl=`http://app.bailianyu.com:1819/appapiv1/article?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&id=${result}`;\nres=JSON.parse(http.get(url));\n`http://app.bailianyu.com:1819/appapiv1/chapterlist?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&article_id=${res.data.id}&flag=${res.data.flag}`",
"chapterItems": "",
"chapterList": "$.data[*]",
"chapterName": "$.title",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "http://app.bailianyu.com:1819/appapiv1/getchaptercontent?appkey=%2BYxWjxL1mJx1gdEILt68w%2BFSlHhJoFWNt1H2OIEtuJo%3D&chapter_id={{$.id}}&article_id={{$.article_id}}&flag={{$.flag}}",
"contentUrl": "",
"contentItems": "$.data@css:text",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
},
{
"id": "01f8316b-5344-497e-8d6e-c72087c9e48d",
"createTime": 1595083427593362,
"modifiedTime": 1595334581154345,
"author": "wenmoux",
"postScript": "",
"name": "韩剧TV",
"host": "https://m.hanjutv.com",
"group": "",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "韩剧::https://m.hanjutv.com/v_all/list-catid-7-page-$page.html\n电影::https://m.hanjutv.com/v_all/list-catid-11-page-$page.html",
"discoverItems": "",
"discoverList": ".m-list.clearfix>li",
"discoverTags": "",
"discoverName": "h3>a@text",
"discoverCover": ".thumb>div@data-original",
"discoverAuthor": "",
"discoverChapter": "",
"discoverDescription": "p.des@text",
"discoverResult": "h3>a@href",
"enableSearch": true,
"searchUrl": "https://m.hanjutv.com/index.php?c=so&module=video&keyword=$keyword",
"searchItems": "",
"searchList": ".searchItem",
"searchTags": "",
"searchName": "h3.title@text",
"searchCover": ".thumb>img@data-original",
"searchAuthor": "",
"searchChapter": "",
"searchDescription": ".desc@text",
"searchResult": "a@href",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterItems": "",
"chapterList": ".albumSelect>.clearfix>li||.btnBox",
"chapterName": "a@text## 收藏",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "a@href||.btnBox>a.btn-danger@href",
"contentUrl": "",
"contentItems": ".swiper-slide@onclick@js:\na=result.split('\\'')\nif(a[1]){\nurl=`https://ww4.hanjutv.com/index.php?path=${a[1]}`\nhttp.get(url).match(/video: {.+url: '(.+?)'/s)[1]\n}\nelse{a[3]}",
"loginUrl": "",
"cookies": "",
"viewStyle": 2
}
,
{
"id": "d3317b79-6fc7-4e91-bf5a-19e1dffbe02d",
"createTime": 1594612078257604,
"modifiedTime": 1594989585317252,
"author": "wenmoux",
"postScript": "需要看付费内容自己填自己账号的account 和token\n目录和正文链接都要改",
"name": "剧能玩",
"host": "http://appserver.jnwtv.com:8080",
"group": "漫画",
"contentType": 0,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "榜单::畅销榜::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/findsellcartoonrank?token=&requestHeadStr\n榜单::收藏榜::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/findcollectioncartoonrank\n分类::虐恋情深::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=6&pageNow=$page\n分类::一块甜饼::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=9&pageNow=$page\n分类::先婚后爱::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=14&pageNow=$page\n分类::创作推荐::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=52&pageNow=$page\n分类::真人漫画::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=2&pageNow=$page\n分类::连载新漫::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=47&pageNow=$page\n分类::漫画大赏::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=53&pageNow=$page\n分类::VIP漫::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=43&pageNow=$page\n分类::免费真人漫::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=7&pageNow=$page\n分类::人气创作::http://appserver.jnwtv.com:8080/jnwtv-client/homepage/modulebusimore?fmiId=10&pageNow=$page",
"discoverItems": "",
"discoverList": "$..cartoonRankList[*]||$..busiList[*]",
"discoverTags": "$.tags||$.busiTags",
"discoverName": "$.cartoonTitle||$.busiTitle",
"discoverCover": "$.coverImgUrl||$.busiCoverUrl",
"discoverAuthor": "$.userNick",
"discoverChapter": "",
"discoverDescription": "$.cartoonIntro||$.busiDesc",
"discoverResult": "$.piId||$.busiId",
"enableSearch": true,
"searchUrl": "http://appserver.jnwtv.com:8080/jnwtv-client/common/searchresult?requestHeadStr=&searchContent=$keyword",
"searchItems": "",
"searchList": "$..liveCartoonList[*]",
"searchTags": "",
"searchName": "$.cartoonTitle",
"searchCover": "$.cartoonCoverUrl",
"searchAuthor": "$.projectOwnerNick&&$.editorNick",
"searchChapter": "",
"searchDescription": "",
"searchResult": "$.piId",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "@js:\ntoken=\"2020071319302262872543689391705644610054854\";\naccount=\"44610054854\";\nif(page%5==0)\n{k=parseInt(page/5);p=5;}\nelse\n{k=parseInt(page/5)+1;p=\"\"+page%5;};\nk=\"\"+k*50;\npageNow=\"\"+p;\n function img() {\n var url = \"http://appserver.jnwtv.com:8080/jnwtv-client/projectcartoon/getmorelivecartooninfo\";\n var method = \"post\"; \n pageNow=\"\"+p;\n var body = {piId:result,requestHeadStr:\"{}\",sortOrder:\"asc\",pageNow,account:account,token:token,upperRange:k};\n var headers = {};\n return {url, method, body, headers} \n };\nimg();",
"chapterItems": "",
"chapterList": "$..listLiveCartoon[*]",
"chapterName": "$.title",
"chapterCover": "$.coverUrl",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "lcId={{$.lcId}}&piId={{$.piId}}",
"contentUrl": "http://appserver.jnwtv.com:8080/jnwtv-client/projectcartoon/getlivecartooninfo?$result&requestHeadStr=%7B%7D&account=44610054854&token=2020071319302262872543689391705644610054854",
"contentItems": "$..listCartoonPage[*].cartoonUrl",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
},
{
"id": "89e457b9-db5d-4075-8e71-6ed0a596ea13",
"createTime": 1595600993361361,
"modifiedTime": 1595603339755796,
"author": "wenmoux",
"postScript": "",
"name": "开眼",
"host": "http://baobab.kaiyanapp.com:80/api/v4",
"group": "",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "今日精选::http://baobab.kaiyanapp.com:80/api/v5/index/tab/feed?date=&num=2&udid=&vc=590&vn=6.2&size=1080X1920&deviceModel=FRD-AL10&first\n分类::#广告::/categories/videoList?id=14&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#剧情::/categories/videoList?id=12&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#运动::/categories/videoList?id=18&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#创意::/categories/videoList?id=2&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#旅行::/categories/videoList?id=6&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#影视::/categories/videoList?id=8&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#记录::/categories/videoList?id=22&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#音乐::/categories/videoList?id=20&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#科技::/categories/videoList?id=32&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#开胃::/categories/videoList?id=4&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#游戏::/categories/videoList?id=30&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#动画::/categories/videoList?id=10&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#搞笑::/categories/videoList?id=28&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#时尚::/categories/videoList?id=24&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#生活::/categories/videoList?id=36&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#综艺::/categories/videoList?id=38&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11\n分类::#萌宠::/categories/videoList?id=26&start=$page&num=10&udid=0e03d29034f5474f981d27cded1b2b65c8316d11",
"discoverItems": "",
"discoverList": "$.itemList[*].data.content.data||$.itemList[*].data",
"discoverTags": "$.tags[*].name",
"discoverName": "$.title",
"discoverCover": "$.cover.feed",
"discoverAuthor": "$.author.name",
"discoverChapter": "",
"discoverDescription": "$.description",
"discoverResult": "$.id",
"enableSearch": true,
"searchUrl": "",
"searchItems": "",
"searchList": "",
"searchTags": "",
"searchName": "",
"searchCover": "",
"searchAuthor": "",
"searchChapter": "",
"searchDescription": "",
"searchResult": "",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "http://baobab.kaiyanapp.com:80/api/v2/video/$result",
"chapterItems": "",
"chapterList": "$",
"chapterName": "$.title",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.playUrl",
"contentUrl": "https://m.jjwxc.com/invite/index?novelid=4489992&inviteid=10395711",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
},
{
"id": "178cc38d-5c01-4dff-8db6-29a023ad200c",
"createTime": 1594816622221398,
"modifiedTime": 1594946579279965,
"author": "wenmoux",
"postScript": "",
"name": "连城读书",
"host": "http://www.lcread.com",
"group": "",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "Mozilla/5.0 AppleWebKit/537.36 Chrome/75.0.3770.100",
"enableDiscover": true,
"discoverUrl": "男生::新书榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=xinshu&jsoncallback=&_=`\n男生::封神榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=fengshen&jsoncallback=&_=`\n男生::推荐榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=tuijian&jsoncallback=&_=`\n男生::人气榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=renqi&jsoncallback=&_=`\n男生::收藏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=shoucang&jsoncallback=&_=`\n男生::勤更榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=qingeng&jsoncallback=&_=`\n男生::钻石榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=zuanshi&jsoncallback=&_=`\n男生::月热销::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=yuerexiao&jsoncallback=&_=`\n男生::vip更新榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=vipgengxin&jsoncallback=&_=`\n男生::vip收藏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=vipshoucang&jsoncallback=&_=`\n男生::vip打赏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=10&uID=0&bt=0&pn=${(page-1)*20}&rank=vipdashang&jsoncallback=&_=`\n女生::新书榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=xinshu&jsoncallback=&_=`\n女生::封神榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=fengshen&jsoncallback=&_=`\n女生::推荐榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=tuijian&jsoncallback=&_=`\n女生::人气榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=renqi&jsoncallback=&_=`\n女生::收藏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=shoucang&jsoncallback=&_=`\n女生::勤更榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=qingeng&jsoncallback=&_=`\n女生::钻石榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=zuanshi&jsoncallback=&_=`\n女生::月热销::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=yuerexiao&jsoncallback=&_=`\n女生::vip更新榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=vipgengxin&jsoncallback=&_=`\n女生::vip收藏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=vipshoucang&jsoncallback=&_=`\n女生::vip打赏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=20&uID=0&bt=0&pn=${(page-1)*20}&rank=vipdashang&jsoncallback=&_=`\n耽美同人::新书榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=xinshu&jsoncallback=&_=`\n耽美同人::封神榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=fengshen&jsoncallback=&_=`\n耽美同人::推荐榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=tuijian&jsoncallback=&_=`\n耽美同人::人气榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=renqi&jsoncallback=&_=`\n耽美同人::收藏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=shoucang&jsoncallback=&_=`\n耽美同人::勤更榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=qingeng&jsoncallback=&_=`\n耽美同人::钻石榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=zuanshi&jsoncallback=&_=`\n耽美同人::月热销::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=yuerexiao&jsoncallback=&_=`\n耽美同人::vip更新榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=vipgengxin&jsoncallback=&_=`\n耽美同人::vip收藏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=vipshoucang&jsoncallback=&_=`\n耽美同人::vip打赏榜::@js:`http://datas.lc1001.com/ajax/getBookTopPic?fromUrl=http://www.lcread.com/book/ranking.html?yy=book_img&prefer=50&uID=0&bt=0&pn=${(page-1)*20}&rank=vipdashang&jsoncallback=&_=`\n",
"discoverItems": "",
"discoverList": "@js:JSON.parse(result.match(/\\((.*)\\)/)[1]).DATA.TOPLIST.BOOKS",
"discoverTags": "$.TYPE",
"discoverName": "$.BNAME",
"discoverCover": "$.COVERURL",
"discoverAuthor": "$.ANAME",
"discoverChapter": "$.NCNAME",
"discoverDescription": "$.CONTENT",
"discoverResult": "http://www.lcread.com/bookpage/{{$.BID}}/",
"enableSearch": true,
"searchUrl": "@js:\n(() => {\n var url = `http://my.lc1001.com/esou/q?dowhat=query&kw=${keyword}&type=1000`;\n var method = \"get\"; // or \"post\"\n var body = {};\n var headers = {};\n var encoding = \"gbk\";\n return {url, method, body, encoding,headers};\n})();",
"searchItems": "",
"searchList": "//*[@id=\"l1\"]/div[position>1]",
"searchTags": "",
"searchName": ".txt_120_t2@text",
"searchCover": ".pic_100_t>a>img@src",
"searchAuthor": "//td[2]/a[2]/text()",
"searchChapter": "",
"searchDescription": "//td[2]/text()##.*?著",
"searchResult": "//td[2]/a[1]/@href",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterItems": "",
"chapterList": "//*[@id=\"abl4\"]/table/tbody/tr[*]/td",
"chapterName": "//font/text()",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "//a/@href",
"contentUrl": "",
"contentItems": "#ccon@text",
"loginUrl": "",
"cookies": "",
"viewStyle": 2
},
{
"id": "05813578-13fe-4546-83f0-2266f57015f2",
"createTime": 1597055631225738,
"modifiedTime": 1601455862628700,
"author": "Wenmoux",
"postScript": "",
"name": "Acfun-直播",
"host": "https://live.acfun.cn",
"group": "直播",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "全部::https://live.acfun.cn/api/channel/list?count=56&pcursor=0&filters=[%7B%22filterType%22:1,+%22filterId%22:0%7D]\n游戏::https://live.acfun.cn/api/channel/list?count=56&pcursor=0&filters=[%7B%22filterType%22:1,+%22filterId%22:1%7D]\n手游::https://live.acfun.cn/api/channel/list?count=56&pcursor=0&filters=[%7B%22filterType%22:1,+%22filterId%22:2%7D]\n娱乐::https://live.acfun.cn/api/channel/list?count=56&pcursor=0&filters=[%7B%22filterType%22:1,+%22filterId%22:3%7D]\n虚拟偶像::https://live.acfun.cn/api/channel/list?count=56&pcursor=0&filters=[%7B%22filterType%22:1,+%22filterId%22:4%7D]",
"discoverItems": "",
"discoverList": "$.channelListData.liveList[*]",
"discoverTags": "$.type.name",
"discoverName": "$.title",
"discoverCover": "$.coverUrls[0]",
"discoverAuthor": "$.user.name",
"discoverChapter": "",
"discoverDescription": "{{$.onlineCount}}人观看中",
"discoverResult": "$.authorId",
"enableSearch": true,
"searchUrl": "",
"searchItems": "",
"searchList": "",
"searchTags": "",
"searchName": "",
"searchCover": "",
"searchAuthor": "",
"searchChapter": "",
"searchDescription": "",
"searchResult": "",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "{\n \"url\": \"https://api.kuaishouzt.com/rest/zt/live/web/startPlay?subBiz=mainApp&kpn=ACFUN_APP&kpf=PC_WEB&userId=1000000041318851&did=H5_68228709057E7524&acfun.api.visitor_st=ChRhY2Z1bi5hcGkudmlzaXRvci5zdBJwvNv9HAnERxU-UZRnrOYHDQRU4QriiYM3V7QRbF5ah1kwKOPt39BqQ1VOpf8MLuTr5ismUHj4eHyC5yEKALmdjn_UtOO9FOinZjtCl9s8LjV6BkKO3ZgxdNYIefvhFvH23xNkwrXFjaalhgV2NSHZKRoSHNQnauim_ePPhRZ9d6hxF_i6IiBypQXpJNEQgYNfN54szw-t01RneEMhqElBHDHIY5bLgygFMAE\",\n \"method\": \"POST\",\n \"body\": {\n \"authorId\": \"$result\",\n \"pullStreamType\": \"FLV\"\n },\n\"headers\":{\n\"referer\":\"https://live.acfun.cn/live/36626547\"}\n}",
"chapterItems": "",
"chapterList": "$.data.videoPlayRes@json:$.liveAdaptiveManifest[*].adaptationSet.representation[*]",
"chapterName": "$.name",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.url",
"contentUrl": "https://m.jjwxc.com/invite/index?novelid=4977950&inviteid=10542754",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "",
"viewStyle": 4
}
,
{
"id": "d25ca654-7cd7-449e-8d02-989e3df0c5bd",
"createTime": 1593778531956372,
"modifiedTime": 1601688256637886,
"author": "wenmoux",
"postScript": "",
"name": "bilibili直播",
"host": "https://api.live.bilibili.com",
"group": "直播",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "@js:res=http.get(\"https://api.live.bilibili.com/room/v1/Area/getList\")\nJSON.parse(res).data\n.map(data => {\nname=data.name\nreturn data.list.map(data => `${data.parent_name}::${data.name}::https://api.live.bilibili.com/room/v3/area/getRoomList?platform=web&parent_area_id=${data.parent_id}&cate_id=0&area_id=${data.id}&sort_type=online&page=$page&page_size=30&tag_version=1`).join(\"\\n\")\n}).join(\"\\n\")",
"discoverItems": "",
"discoverList": "$.data.list[*]",
"discoverTags": "$.area_name",
"discoverName": "$.title",
"discoverCover": "$.user_cover",
"discoverAuthor": "$.uname",
"discoverChapter": "",
"discoverDescription": "{{$.online}}人观看中",
"discoverResult": "$.roomid",
"enableSearch": true,
"searchUrl": "https://api.bilibili.com/x/web-interface/search/type?context=&keyword=$keyword&page=searchPage&order=&category_id=&duration=&user_type=&order_sort=&tids_1=&tids_2=&search_type=live&changing=id&cover_type=user_cover&__refresh__=true&__reload__=false&_extra=&highlight=1&single_column=0&jsonp=jsonp&callback=",
"searchItems": "",
"searchList": "$.data.result.live_room[*]",
"searchTags": "$.cate_name",
"searchName": "$.title",
"searchCover": "http:{{$.user_cover}}",
"searchAuthor": "$.uname",
"searchChapter": "",
"searchDescription": "{{$.online}}人观看",
"searchResult": "$.roomid",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "https://api.live.bilibili.com/room/v1/Room/playUrl?cid=$result&platform=android&otype=json",
"chapterItems": "",
"chapterList": "@js:\ndata=JSON.parse(result).data;\nlet lines = data.durl.map((url, index) => {\n return {\n title: index == 0 ? '主线路' : `线路 ${++index}`,\n url: url.url \n }\n });\nlines;",
"chapterName": "$.title",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "$.url",
"contentUrl": "/",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
}
,
{
"id": "3dcb0e00-8fc5-4dbe-b854-daa2fc7ebcd0",
"createTime": 1596963749448496,
"modifiedTime": 1596967195152683,
"author": "wenmoux",
"postScript": "",
"name": "喜马拉雅直播",
"host": "http://live.ximalaya.com",
"group": "",
"contentType": 2,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "ting_6.6.66(Redmi+K30,Android29)",
"enableDiscover": true,
"discoverUrl": "热门::/lamia/v15/live/homepage?categoryType=1&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n音乐::/lamia/v15/live/homepage?categoryType=13&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n助眠::/lamia/v15/live/homepage?categoryType=20&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n情感::/lamia/v15/live/homepage?categoryType=12&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n有声书::/lamia/v15/live/homepage?categoryType=14&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n娱乐::/lamia/v15/live/homepage?categoryType=10&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n聊天室::/lamia/v15/live/homepage?categoryType=1010&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n新秀::/lamia/v15/live/homepage?categoryType=2&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n二次元::/lamia/v15/live/homepage?categoryType=17&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n综合::/lamia/v15/live/homepage?categoryType=18&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n电台房::/lamia/v15/live/homepage?categoryType=1009&pageId=$page&pageSize=20&sign=1&timeToPreventCaching=\n",
"discoverItems": "",
"discoverList": "$.data.lives[*]",
"discoverTags": "$.categoryName",
"discoverName": "$.name",
"discoverCover": "$.coverLarge",
"discoverAuthor": "$.nickname",
"discoverChapter": "",
"discoverDescription": "{{$.playCount}}人观看",
"discoverResult": "/lamia-authorize-web/play?liveId={{$.id}}&roomId={{$.roomId}}",
"enableSearch": true,
"searchUrl": "{\n \"url\": \"http://114.80.161.19/front/v1?condition=relation&core=liveroom2&kw=$keyword&live=true&page=$page&paidFilter=false&picVersion=13&plan=c&recall=normal&rows=20&search_version=3.4&spellchecker=true&voiceAsinput=false\",\n\"headers\": {\n \"host\": \"search.ximalaya.com\"\n }\n}",
"searchItems": "",
"searchList": "$.response.docs[*]",
"searchTags": "$.categoryName",
"searchName": "$.name",
"searchCover": "$.coverLarge",
"searchAuthor": "$.nickname",
"searchChapter": "",
"searchDescription": "",
"searchResult": "/lamia-authorize-web/play?liveId={{$.id}}&roomId={{$.roomId}}",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterItems": "",
"chapterList": "$.data.tsUrls",
"chapterName": "@js:\"进入直播间\"",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "text",
"contentUrl": "/lamia/v15/live/homepage?categoryType=",
"contentItems": "@js:[lastResult]",
"loginUrl": "",
"cookies": "1&_device=&6&6",
"viewStyle": 3
}
,
{
"id": "70a966a6-bee2-4ba1-9952-e132073b3eb5",
"createTime": 1593439177183359,
"modifiedTime": 1593966639552505,
"author": "wenmoux",
"postScript": "",
"name": "长佩文学",
"host": "https://m.gongzicp.com",
"group": "",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; MHA-AL00 Build/HUAWEIMHA-AL00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/43.0.2357.134 Mobile Safari/537.36",
"enableDiscover": true,
"discoverUrl": "我的::书架::{\"url\":\"https://m.gongzicp.com/bookShelf/shelfList?sort_key=3&sort_flag=2&status=0&page=$page&novel_name=&did=0\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n我的::签到::{\"url\":\"https://m.gongzicp.com/user/sign\",\"method\":\"post\",\"body\":{},\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n我的::历史::{\"url\":\"https://m.gongzicp.com/bookShelf/getReadRecordList?page=$page\",\"method\":\"get\",\"body\":{},\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n畅销榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=1&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n上架榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=2&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n风云榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=3&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n热读榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=4&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=75&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=3&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=1&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=4&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=6&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=66&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=9&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=73&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n完结榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=17&r=5&d=7&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n人气榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=6&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新书榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=7&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n新人榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=8&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n萌新榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=9&d=2&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=3&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=1&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=4&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=6&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=66&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=9&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=73&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n打赏榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=17&r=2&d=2&p=$page&t=${key}&r=10&d=5&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=75&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=3&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=1&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=4&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=6&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=66&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=9&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=73&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n互动榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=17&r=11&d=9&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::全部::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=75&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::古代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=3&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::现代::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=1&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::幻想::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=4&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::悬疑::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=6&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::短佩::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=66&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::架空::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=9&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::无CP::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=73&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}\n勤奋榜::百合::{\"url\":\"https://m.gongzicp.com/home/ranking?&t=75&r=2&d=2&p=1&t=17&r=12&d=4&p=$page\",\"headers\":{\"X-Requested-With\": \"XMLHttpRequest\"}}",
"discoverItems": "",
"discoverList": "$.data.novel.list[*]||$.data[*]||$[*]",
"discoverTags": "$.novel_type && $.novel_tag",
"discoverName": "$.novel_name||$.msg",
"discoverCover": "$.novel_cover",
"discoverAuthor": "$.novel_author",
"discoverChapter": "$.novel_newcname",
"discoverDescription": "$.novel_desc||$.novel_uptime",
"discoverResult": "$.novel_id",
"enableSearch": true,
"searchUrl": "https://m.gongzicp.com/novel/searchNovels?keyword=$keyword&searchType=1&finishType=0&novelType=0&sortType=1&page=$page",
"searchItems": "",
"searchList": "$.data.list[*]",
"searchTags": "$.novel_tag&&$.novel_type",
"searchName": "$.novel_name##<.*?>##",
"searchCover": "$.novel_cover",
"searchAuthor": "$.novel_author",
"searchChapter": "",
"searchDescription": "$.novel_desc",
"searchResult": "$.novel_id",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "@js:\n(() => {\n var url = `/novel/chapterList/id/${result}`;\n var method = \"get\"; // or \"post\"\n var body = {};\n var headers = {\"X-Requested-With\": \"XMLHttpRequest\"};\n return {url, method, body, headers};\n})();",
"chapterItems": "",
"chapterList": "$.data.list[*].list[*]",
"chapterName": "$.chapter_name",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "$.chapter_update",
"chapterResult": "https://m.gongzicp.com/read-{{$.chapter_nid}}-{{$.chapter_id}}.html",
"contentUrl": "@js:\n(() => {\n var url = result;\n var method = \"get\"; // or \"post\"\n var body = {};\n var headers = {\"X-Requested-With\": \"XMLHttpRequest\"};\n return {url, method, body, headers};\n})();",
"contentItems": "$.data.chapter.content@css:p:not([style])@text",
"loginUrl": "https://m.gongzicp.com/login/signIn",
"cookies": "",
"viewStyle": 0
},
{
"id": "93227574-e257-43dc-8bce-4db863444b4c",
"createTime": 1593801578487143,
"modifiedTime": 1594001711053641,
"author": "wenmoux",
"postScript": "",
"name": "哔哩轻小说",
"host": "https://m.linovelib.com",
"group": "",
"contentType": 1,
"sort": 0,
"useCryptoJS": false,
"loadJs": "",
"userAgent": "",
"enableDiscover": true,
"discoverUrl": "书架::https://m.linovelib.com/bookcase\n点击榜::总点击榜::https://m.linovelib.com/top/allvisit/searchPage.html\n点击榜::月点击榜::https://m.linovelib.com/top/monthvisit/searchPage.html\n推荐榜::总推荐榜::https://m.linovelib.com/top/allvote/searchPage.html\n推荐榜::月推荐榜::https://m.linovelib.com/top/monthvote/searchPage.html\n更新榜::最近更新::https://m.linovelib.com/top/lastupdate/searchPage.html\n更新榜::最新入库::https://m.linovelib.com/top/postdate/searchPage.html\n更新榜::最新上架::https://m.linovelib.com/top/signtime/searchPage.html\n收藏榜::https://m.linovelib.com/top/goodnum/searchPage.html\n字数榜::https://m.linovelib.com/top/words/searchPage.html\n新书榜::https://m.linovelib.com/top/newhot/searchPage.html\n全本小说::总点击榜::https://m.linovelib.com/topfull/allvisit/searchPage.html\n全本小说::月点击榜::https://m.linovelib.com/topfull/monthvisit/searchPage.html\n全本小说::总推荐榜::https://m.linovelib.com/topsull/allvote/searchPage.html\n全本小说::月推荐榜::https://m.linovelib.com/topfull/monthvote/searchPage.html\n全本小说::最近更新::https://m.linovelib.com/topfull/lastupdate/searchPage.html\n全本小说::最新入库::https://m.linovelib.com/topfull/postdate/searchPage.html\n全本小说::最新上架::https://m.linovelib.com/topfull/signtime/searchPage.html\n全本小说::收藏榜::https://m.linovelib.com/topfull/goodnum/searchPage.html\n全本小说::字数榜::https://m.linovelib.com/topfull/words/searchPage.html\n全本小说::新书榜::https://m.linovelib.com/topfull/newhot/searchPage.html",
"discoverItems": "",
"discoverList": "li.book-li",
"discoverTags": "",
"discoverName": "h4@text",
"discoverCover": "img@data-original",
"discoverAuthor": ".book-author@text",
"discoverChapter": "p.ell@text",
"discoverDescription": ".book-intro@text",
"discoverResult": ".book-title-x@href||a.book-layout@href##.html##/catalog",
"enableSearch": true,
"searchUrl": "https://m.linovelib.com/s/?searchkey=$keyword&searchtype=all",
"searchItems": "",
"searchList": "li.book-li||body",
"searchTags": ".tag-small@text",
"searchName": "h2@text||h4@text",
"searchCover": "#bookDetailWrapper img@src||img@data-original",
"searchAuthor": ".book-rand-a@text||.book-author@text##作者##",
"searchChapter": "",
"searchDescription": "#bookSummary@text||.book-desc@text",
"searchResult": ".book-meta.book-status[href]@href||a@href##.html##/catalog",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterItems": "",
"chapterList": "#volumes a[href]",
"chapterName": "text",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "https://m.linovelib.com{{href##.html##_$page.html}}",
"contentUrl": "",
"contentItems": "@js:\n(()=>{\nif(typeof(islast)!=\"undefined\") return \"\";\nhref=result.match(/>书页<\\/a><a href=\\\"(.+?)\\\">下一页<\\/a>/)\nif(!/_/.test(href)) islast=1;\nreturn result;\n})();\n@css:#acontent>p,#acontent>.divimage@html",
"loginUrl": "https://m.linovelib.com/login.php?jumpurl=http%3A%2F%2Fm.linovelib.com%2Fmodules%2Farticle%2Fbookcase.php",
"cookies": "",
"viewStyle": 0
},
{
"id":"e82d685b-17fd-47b4-afff-d69ad7240023",
"createTime":1595115596911434,
"modifiedTime":1601780781114469,
"author":"wenmoux",
"postScript":"",
"name":"杂志迷",
"host":"http://modo.zazhimi.net/api",
"group":"",
"contentType":0,
"sort":0,
"useCryptoJS":false,
"loadJs":"",
"userAgent":"",
"enableDiscover":true,
"discoverUrl":"@js:\napi=[\"http://modo.zazhimi.net/api\",\"http://app2020.zazhimi.net/api\"]\nname=[\"modo\",\"杂志迷\"]\na=\"modo::首页::http://modo.zazhimi.net/api/index.php?p=$page&s=36\\n杂志迷::首页::http://app2020.zazhimi.net/api/index.php?p=$page&s=36\\n\"\ntag=[]\nk=0\n for (var i = 0; i < 26; i++) {\n tag[i] = String.fromCharCode(65 + i)\n }\n api.map(data=>{\napi=data\n tag.map(data => {\n \n a+=`${name[k]}::${data}::${api}/recommend.php?l=${data}&p=$page&s=36\\n`\n })\nk++\n})\n\na",
"discoverItems":"",
"discoverList":"$.magazine|| $.new",
"discoverTags":"",
"discoverName":"$.magName",
"discoverCover":"$.magCover",
"discoverAuthor":"",
"discoverChapter":"",
"discoverDescription":"",
"discoverResult":"{{@js:baseUrl.split(\"api\")[0]}}api/show.php?a={{$.magId}}",
"enableSearch":true,
"searchUrl":"",
"searchItems":"",
"searchList":"",
"searchTags":"",
"searchName":"",
"searchCover":"",
"searchAuthor":"",
"searchChapter":"",
"searchDescription":"",
"searchResult":"",
"enableMultiRoads":false,
"chapterRoads":"",
"chapterRoadName":"",
"chapterUrl":"",
"chapterItems":"",
"chapterList":"$",
"chapterName":"@js:\"全部\"",
"chapterCover":"",
"chapterLock":"",
"chapterTime":"",
"chapterResult":"@js:lastResult",
"contentUrl":"",
"contentItems":"$.content[*].magPic",
"loginUrl":"",
"cookies":"",
"viewStyle":0
}
,
{
"id": "d9b8f9f4-409f-45bd-a20f-a50e22982d93",
"createTime": 1594949435423296,
"modifiedTime": 1601972309740435,
"author": "wenmoux",
"postScript": "",
"name": "素白白影视",
"host": "https://www.subaibai.com",
"group": "",
"contentType": 2,
"sort": 0,
"useCryptoJS": true,
"loadJs": "",
"userAgent": "Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/\" + 59 + Math.round(Math.random() * 10) + \".0.3497.\" + Math.round(Math.random() * 100) + \"Safari/537.36",
"enableDiscover": true,
"discoverUrl": "电视剧::电视剧::/dianshiju/page/$page\n电视剧::国产剧::/movie_bt/movie_bt_series/gangju/page/$page\n电视剧::港剧::/movie_bt/movie_bt_series/gangju/page/$page\n电视剧::日剧::/movie_bt/movie_bt_series/riju/page/$page\n电视剧::欧美剧::/movie_bt/movie_bt_series/oumeiju/page/$page\n电视剧::韩剧::/movie_bt/movie_bt_series/hanju/page/$page\n动漫::动漫剧::/movie_bt/movie_bt_series/dongmanju/page/$page\n动漫::动漫电影::/movie_bt_series/dongmandy/page/$page\n电影::电影::/new-movie/page/$page\n电影::热门电影::/hot-month/page/$page\n电影::高分电影::/gf/page/$page\n电影::香港经典电影::/movie_bt_series/xianggangdy/page/$page\n电影::国产电影::/movie_bt/movie_bt_series/guochandy/page/$page\n电影::日韩电影::/movie_bt/movie_bt_series/rihandy/page/$page\n电影::欧美电影::/movie_bt/movie_bt_series/oumeidy/page/$page\n其它::综艺::/movie_bt/movie_bt_series/zongyi/page/$page\n其它::纪录片::/movie_bt/movie_bt_series/documentary/page/$page",
"discoverItems": "",
"discoverList": ".bt_img>ul>li",
"discoverTags": ".qb@text",
"discoverName": "h3@text",
"discoverCover": "img@data-original@js:result+\"@headers\"+JSON.stringify({\"Referer\":\"https://www.subaibai.com/\"})",
"discoverAuthor": "",
"discoverChapter": ".jidi>span@text",
"discoverDescription": ".inzhuy@text",
"discoverResult": "h3>a@href",
"enableSearch": true,
"searchUrl": "https://www.subaibai.com/?s=$keyword",
"searchItems": "",
"searchList": ".search_list>ul>li",
"searchTags": ".qb@text",
"searchName": "h3@text",
"searchCover": "img@data-original",
"searchAuthor": "",
"searchChapter": ".jidi>span@text",
"searchDescription": ".inzhuy@text",
"searchResult": "h3>a@href",
"enableMultiRoads": false,
"chapterRoads": "",
"chapterRoadName": "",
"chapterUrl": "",
"chapterItems": "",
"chapterList": ".paly_list_btn>a",
"chapterName": "text",
"chapterCover": "",
"chapterLock": "",
"chapterTime": "",
"chapterResult": "href",
"contentUrl": "",
"contentItems": "@js:lastResult@filter:(?:m3u8|mp4)@json:$..url",
"loginUrl": "",
"cookies": "",
"viewStyle": 0
}
,
{
"id": "5b64d002-2446-4b6d-99e8-bb23ceae989c",
"createTime": 1595121352398665,
"modifiedTime": 1595126477280731,
"author": "wenmoux",
"postScript": "封面自己换",
"name": "冰豆直播",
"host": "https://m.tv.bingdou.net",
"group": "直播",
"contentType": 2,
"sort": 0,
"useCryptoJS": true,
"loadJs": "",
"userAgent": "Mozilla/5.0 (Linux; Android 9; MIX 2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.99 Mobile Safari/537.36",
"enableDiscover": true,
"discoverUrl": "电视直播::/tv/\n网络电台::/radio/\n影视轮播::/movie/",
"discoverItems": "",
"discoverList": ".module-listA>ul>li",
"discoverTags": "",
"discoverName": "a@text",
"discoverCover": "@js:\"https://i.niupic.com/images/2020/07/19/8qnY.png\"",
"discoverAuthor": "",
"discoverChapter": "",
"discoverDescription": "",
"discoverResult": "a@href",
"enableSearch": true,
"searchUrl": "",