forked from xiangrui120/v2ray-heroku-undone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1630386097.json
3095 lines (3095 loc) · 215 KB
/
1630386097.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
[
{
"articleStyle": 0,
"customOrder": -24259,
"enableJs": true,
"enabled": true,
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.1.0; JKM-AL00b Build/HUAWEIJKM-AL00b; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36\"\n}",
"loadWithBaseUrl": true,
"ruleArticles": "<js>\njson=[];\nif(baseUrl.match(/•/)){\nlist=baseUrl.replace(/http.*?wd=\\s*/,'').split('•');\nfor(i in list){\nhref=list[i].match(/【(.*?)】/)[1];\ntext=list[i].match(/《(.*?)》/)[1];\nintro=list[i].match(/◎(.*?)◎/)[1];\nindex=list[i].match(/^(\\d+、\\d+、)/)?list[i].match(/^(\\d+、\\d+、)/)[1]:list[i].match(/^(.*?)【/)[1]\njson.push({text:text,src:href,intro:intro,index:index})\n}\n}else{\nlist=baseUrl.replace(/http.*?wd=/,'');\nhref=list.match(/【(.*?)】/)[1];\ntext=list.match(/《(.*?)》/)[1];\nintro=list.match(/◎(.*?)◎/)[1];\nindex=list.match(/^(\\d+、\\d+、)/)?list.match(/^(\\d+、\\d+、)/):list.match(/^(.*?)【/)[1]\njson.push({text:text,src:href,intro:intro,index:index})\n}\nJSON.stringify(json)</js>\n$.[*]",
"ruleContent": "",
"ruleDescription": "❗️3、0、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@如月流光</h3><br><br><a href='https://wwa.lanzoui.com/b0dky9fwj'>精校书源&订阅丨点击下载<sup>21.8.19</a><br>提取码 76wm<p><br><a href='https://wwa.lanzoui.com/b0dkz53mj'>备用下载链接</a><br>提取码 73h9\n❗️3、0、结束❗️\n❗️0、0、开始❗️\n<b><center><h2 style=\"color:#812424\">目前版本</h2>\n\n<h3>21.8.30</h3>\n\n<h5>每周一不稳定更新(大概),建议周二<a href='yuedu://rsssource/importonline?src=http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=765'>导入</a></h5></center><details><summary align=\"right\"><h6><marquee direction=up scrollamount=2 height=18px width=50px>bug 反馈<br><br>更新建议<br><br>讨论交流</marquee></h6></summary><center><h5>阅读目前<font color='#B60000'>不支持</font>跳转应用<br>请长按链接到酷安/浏览器打开</h5>https://www.coolapk.com/feed/26888668?shareKey=NzJhZTJiMzA4NjUxNjBhODJkNDY~&shareUid=4339115&shareFrom=com.coolapk.market_11.1.5.1</details>更新了啥 ?<div class=\"渐变\"><br>\n📑 本次更新为【基础更新⁺】<p>\n📑 (书源整合-重构_V0.3)<br>>>尽量避免高度变化,修改配色,移除tts相关整合及部分书源整合<p>\n📑 增加两个网站<p>\n🎉 namo大佬更新了精简源<p>\n🎉 haxc大佬更新了漫画源<p>\n🎉 破冰大佬更新了自用源<p>\n💠 酷安大佬近两周书源分享整合<p></div>\n\n\n<div id=\"悬浮窗\" class=\"背景\" style=\"z-index:9; position:fixed; display:block; top:9\">\n<details>\n<summary><center><b><big><big><div class=\"按钮\">⚙️</big></big></summary><br>\n<div class=\"按钮\" onclick=\"搜索()\">搜索</div>\n\n<details>\n<summary class=\"按钮\">音乐</summary><br>\n<div class=\"按钮\" onclick=\"网易云()\">网 易 云</div>\n<div class=\"按钮\" onclick=\"随机音乐()\">随机音乐</div>\n<div class=\"按钮\" onclick=\"音乐设置()\">音乐设置\n</details>\n\n<details>\n<summary><div class=\"按钮\">其他</div></summary><br>\n<div class=\"按钮\">暂无扩展</div>\n<div class=\"按钮\">敬请期待\n</details>\n</details>\n</div>\n\n<details id=\"搜索\"><summary></summary>\n<center><div style=\"z-index: 8; position: fixed ! important; top: 20px; left: 9px; width:250px; height:100px\" class=\"背景\">\n<div onclick=\"搜索()\" style=\"float:right\"><sup>❌</div>\n<details open onclick=\"显示()\">\n<summary id=\"显示\">       <sub>↑</sub>关闭🕰️显示<sub>↑</summary><div id=\"时间\"></details>\n<div class=\"背景\" style=height:115px>\n<big><font color=\"#812424\">    夸  克  搜  索<sup>🔍</font></big><br>\n<table>\n<tr><button onclick=\"音乐()\" class=\"按钮\" style=\"width:40px\">🎶</button>\n\n<form action=\"https://quark.sm.cn/s\" target=\"_blank\">\n<input type=\"text\" id=\"kssj\" placeholder=\"开始时间/网站类型\" style=\"width:35px\">\n<input type=\"text\" name=\"q\" id=\"txt\" placeholder=\"填写内容...\" style=\"width:95px\">\n<input type=\"text\" id=\"jssj\" placeholder=\"结束时间/文件类型\" style=\"width:35px\">\n<button type=\"submit\" class=\"按钮\" style=\"width:40px\">🔍</button></form></tr>\n\n<tr><button onclick=\"高级()\" class=\"按钮\" style=\"width:65px\"><b>百度高级</button></form>\n<input id=\"url\" type=\"text\" placeholder=\"填写网址...\" value=\"baidu.com\" style=\"width:115px\"><button onclick=\"更多()\" class=\"按钮\" style=\"width:65px\"><b>更多搜索</button></form></tr>\n</table>\n<div class=\"背景\">\n<details open><summary><center><b><a id=\"aa\"><br><sub>↑</sub>不显示网站跳转<sub>↑<br><br></a></b></summary><center>\n<a href=\"https://quark.sm.cn/api/rest?method=Novelnew.home&format=html&schema=v2&gender=male&cate=全部&rank=rank_hot\" id=\"a1\">夸克排行</a> \n<a href=\"https://vt.sm.cn/api/novelStarReco/index?uc_param_str=dnntnwvepffrgibijbprsvdsdicheiniut#\" id=\"a2\">星云推书</a> \n<a href=\"https://www.jianguoyun.com\" id=\"a3\">坚果云[备份]</a><br>\n<a href=\"https://www.douban.com/group/658662/discussion?start=0\" id=\"a4\">豆瓣打分</a> \n<a href=\"http://www.zxcs.me\" id=\"a5\">知轩藏书</a> \n<a href=\"http://yck.mumuceo.com/yuedu/rssyuan/index.html\" id=\"a6\">源仓库[订阅]</a><br>\n<a href=\"http://qk.lifves.com\" id=\"b1\">期刊</a> \n<a href=\"https://iao.su/t\" id=\"b2\">网站分享</a> \n<a href=\"https://www.runoob.com/tags/html-reference.html\" id=\"b3\">标签查看</a> \n<a href=\"https://a7a7.net/meitu\" id=\"b4\">美图</a><br><br>\n</details>\n<img style=\"width:233px; height:20px\" class=\"按钮\" onclick=\"刷新()\" src=\"https://v2.jinrishici.com/one.svg\">\n</details>\n\n<details id=\"网易云\"><summary></summary><div style=\"z-index: 8; position: fixed ! important; top: 210px; left: 2px; width:270px\"><div onclick=\"网易云()\" style=\"float:right\"><sub>❌</div>\n<iframe frameborder=\"no\" style=\"width:100%; height:300px\" src=\"https://music.163.com/outchain/player?type=0&id=3778678&auto=1&\"></iframe></div></details>\n\n<details id=\"音乐设置\"><summary></summary><div style=\"z-index:8;position:fixed!important; width:100%; height:85px; bottom:0px; left:0px; background-color:#f0f0f4\"><div onclick=\"音乐设置()\" style=\"float:right\"><sup>❌</div><center><table><tr>\n<td><button value=\"https://6url.cn/zazEPh\" onclick=\"bsnmusic(this.value)\" id='mus1' style=\"width:99%; background-color: #f0f0f2\"><b>中文歌曲</button></td>\n<td><button value=\"https://6url.cn/cW8uFL\" onclick=\"bsnmusic(this.value)\" id='mus2' style=\"width:99%; background-color: #f0f0f2\"><b>英文歌曲</button></td>\n<td><button value=\"https://6url.cn/M34fN9\" onclick=\"bsnmusic(this.value)\" id='mus3' style=\"width:99%; background-color: #f0f0f2\"><b>小 语 种</button></td>\n<td><button value=\"https://6url.cn/wApnVs\" onclick=\"bsnmusic(this.value)\" id='mus4' style=\"width:99%; background-color: #f0f0f2\"><b>纯 音 乐</button></td>\n<td rowspan=2><button onclick=\"下一首()\" style=\"width:99%; height:99%; background-color: #f0f0f2\"><center><b>下<br>一<br>首</button></td></tr><tr>\n<td colspan=\"4\"><audio id=\"bsnmusic\" controls=\"controls\" autoplay preload=\"auto\">\n<source type=\"audio/mpeg\"></source></audio></td>\n</tr></table></div></details>\n\n<script>\nfunction $()\n{\nvar elements = new Array();\nfor (var i = 0; i < arguments.length; i++)\n{\nvar element = arguments[i];\nif (typeof element == 'string')\nelement = document.getElementById(element);\nif (arguments.length == 1)\nreturn element;\nelements.push(element);\n}\nreturn elements;\n}\n</script>\n<script>\n//〔悬浮窗移动〕\nvar div=$('悬浮窗'); div.addEventListener('touchmove', function(event){\n\nevent.preventDefault();\n//阻止其他事件\n\n//如果悬浮窗的位置有手指拖动\nif(event.targetTouches.length == 1) {\n\nvar touch = event.targetTouches[0];\n//就把悬浮窗放在手指所在位置\n\ndiv.style.left = touch.pageX + 'px';\ndiv.style.top = touch.pageY + 'px';\n}}, false);\n</script>\n<script>\nfunction 搜索(){\nvar x=$(\"搜索\").open;\nif(x==true){$(\"搜索\").open=false;}\nelse{$(\"搜索\").open=true;}}\n</script>\n<script>\nfunction 显示(){\nvar x=$(\"显示\").open; if(x==true)\n{$(\"显示\").open=false;$(\"显示\").innerHTML=\"       <sub>↑</sub>关闭🕰️显示<sub>↑\";}\nelse\n{$(\"显示\").open=true;$(\"显示\").innerHTML=\"       <sup>↓</sup>打开🕰️显示<sup>↓\";}\n}\n</script>\n<script>\nfunction 网易云(){\nvar x=$(\"网易云\").open;\nif(x==true){$(\"网易云\").open=false;}\nelse{$(\"网易云\").open=true;}}\n</script>\n<script>\nfunction 音乐设置(){\nvar x=$(\"音乐设置\").open;\nif(x==true){$(\"音乐设置\").open=false;}\nelse{$(\"音乐设置\").open=true;}}\n</script>\n<script>\nfunction 刷新(){\n$(\"aa\").innerHTML=\"<br><sub>↑</sub>不显示网站跳转<sub>↑<br><br>\";\n$(\"a1\").innerHTML=\"夸克排行\";\n$(\"a1\").href=\"https://quark.sm.cn/api/rest?method=Novelnew.home&format=html&schema=v2&gender=male&cate=全部&rank=rank_hot\";\n$(\"a2\").innerHTML=\"星云推书\";\n$(\"a2\").href=\"https://vt.sm.cn/api/novelStarReco/index?uc_param_str=dnntnwvepffrgibijbprsvdsdicheiniut#\";\n$(\"a3\").innerHTML=\"坚果[云备份]\";\n$(\"a3\").href=\"https://www.jianguoyun.com\";\n$(\"a4\").innerHTML=\"豆瓣打分\";\n$(\"a4\").href=\"https://www.douban.com/group/658662/discussion?start=0\";\n$(\"a5\").innerHTML=\"知轩藏书\";\n$(\"a5\").href=\"http://www.zxcs.me\";\n$(\"a6\").innerHTML=\"源仓库[订阅]\";\n$(\"a6\").href=\"http://yck.mumuceo.com/yuedu/rssyuan/index.html\";\n$(\"b1\").innerHTML=\"期刊\";\n$(\"b1\").href=\"http://qk.lifves.com\";\n$(\"b2\").innerHTML=\"网站分享\";\n$(\"b2\").href=\"https://iao.su/t\";\n$(\"b3\").innerHTML=\"标签查看\";\n$(\"b3\").href=\"https://www.runoob.com/tags/html-reference.html\";\n$(\"b4\").innerHTML=\"美图\";\n$(\"b4\").href=\"https://a7a7.net/meitu\";\n}\n</script>\n\n\n<script>\nfunction 更多(){\nvar txt= $(\"txt\").value;\nvar url=$(\"url\").value;\n\nvar sogou=\"https://m.sogou.com/web/searchList.jsp?s_from=pcsearch&keyword=\";\nvar\ntop=\"https://mtop.chinaz.com/search/\";\nvar url1=\"https://quark.sm.cn/api/rest?method=quark_fanyi.dlpage&schema=v2&format=html&entry=fanyi_common#zh/en/\";\nvar url2=\"https://weixin.sogou.com/weixin?type=2&query=\";\n\n$(\"aa\").innerHTML=\"<br><big><sup>🔎 </sup><b>\"+txt+\"<big><sub>/<sub><i>\"+url+\"<br><br>\";\n$(\"a1\").innerHTML=\"夸克翻译\";\n$(\"a1\").href=url1+txt;\n$(\"a2\").innerHTML=\"网站信息\";\n$(\"a2\").href=top+txt;\n$(\"a3\").innerHTML=\"跳转网址\";\n$(\"a3\").href=\"http://\"+url;\n$(\"a4\").innerHTML=\"微信文章\";\n$(\"a4\").href=url2+txt;\n$(\"a5\").innerHTML=\"360站内\";\n$(\"a5\").href=\"https://m.so.com/s?q=\"+txt+\" site:\"+url+\"&src=result_input&srcg=default_srcg&nlpv=&psid=e9e59abb99ac75a47c154c12894dfd71&sug_pos=&ssid=&sug=&_ms=0\";\n$(\"a6\").innerHTML=\"搜狗站内\";\n$(\"a6\").href=sogou+txt+\" site:\"+url;\n\nvar url3=\"https://www.zhihu.com/search?from=toolnb&q=\";\nvar url4=\"https://m.weibo.cn/search?containerid=100103type=1&q=\";\nvar url5=\"https://m.bilibili.com/search?keyword=\";\nvar url6a=\"https://www.xiaobaipan.com/list-\";\nvar url6b=\".html?from=1\";\n\n$(\"b1\").innerHTML=\"知乎\";\n$(\"b1\").href=url3+txt;\n$(\"b2\").innerHTML=\"微博\";\n$(\"b2\").href=url4+txt;\n$(\"b3\").innerHTML=\"B站\";\n$(\"b3\").href=url5+txt;\n$(\"b4\").innerHTML=\"小白盘\";\n$(\"b4\").href=url6a+txt+url6b;\n}\n</script>\n<script>\nfunction 高级(){\nvar txt=$(\"txt\").value;\nvar url=$(\"url\").value;\nvar kssj=$(\"kssj\").value;\nvar jssj=$(\"jssj\").value;\n\nvar baidu=\"https://m.baidu.com/s?from=1024325b&word=\";\n\n$(\"aa\").innerHTML=\"<b><br><big><sup>🔎 </sup>\"+txt+\"<big><sub>/<sub><i>\"+url+\"<sup>\"+kssj+\"-\"+jssj+\"<br><br>\";\n$(\"a1\").innerHTML=\"无广搜索\";\n$(\"a1\").href=baidu+\"intitle:\"+txt;\n$(\"a2\").innerHTML=\"精准搜索\";\n$(\"a2\").href=baidu+\"intext:\"+txt;\n$(\"a3\").innerHTML=\"网站类型\";\n$(\"a3\").href=baidu+txt+\" inurl:\"+kssj;\n$(\"a4\").innerHTML=\"站内搜索\";\n$(\"a4\").href=\"http://zhannei.baidu.com/cse/site?q=\"+txt+\"&click=1&cc=\"+url+\"&s=&nsid=\";\n$(\"a5\").innerHTML=\"高级搜索\";\n$(\"a5\").href=baidu+txt+\" site:\"+url;\n$(\"a6\").innerHTML=\"文件类型\";\n$(\"a6\").href=baidu+txt+\"filetype:\"+jssj;\n$(\"b1\").innerHTML=\"时间搜索\";\n$(\"b1\").href=baidu+\"intitle:\"+txt+\" \"+kssj+\"..\"+jssj;\n\n$(\"b2\").innerHTML=\"\";\n$(\"b3\").innerHTML=\"\";\n$(\"b4\").innerHTML=\"\";\n}\n</script>\n<script>\nfunction 音乐(){\nvar txt= $(\"txt\").value;\nvar musicwl=\"https://music.xf1433.com/?name=\";\nvar musictz=\"http://lite.tonzhon.com/search?keyword=\";\nvar musicxm=\"&type=ximalaya\";\nvar musickw=\"&type=kuwo\";\nvar musickg=\"&type=kugou\";\nvar musicwy=\"&type=netease\";\n\n$(\"aa\").innerHTML=\"<br><big><sup>🎶 </sup><b>\"+txt+\"<big><sub>/<sub><i>so.music\";\n\n$(\"a1\").innerHTML=\"酷我音乐\";\n$(\"a1\").href=musicwl+txt+musickw;\n$(\"a2\").innerHTML=\"网易云音乐\";\n$(\"a2\").href=musicwl+txt+musicwy;\n$(\"a3\").innerHTML=\"酷狗音乐\";\n$(\"a3\").href=musicwl+txt+musickg;\n$(\"a4\").innerHTML=\"铜钟聚合\";\n$(\"a4\").href=musictz+txt;\n$(\"a5\").innerHTML=\"喜马拉雅\";\n$(\"a5\").href=musicwl+txt+musicxm;\n\n$(\"a6\").innerHTML=\"\";\n$(\"b1\").innerHTML=\"\";\n$(\"b2\").innerHTML=\"\";\n$(\"b3\").innerHTML=\"\";\n$(\"b4\").innerHTML=\"\";\n} \n</script>\n<script>\n var automusic = $(\"bsnmusic\"); \n automusic.loop = false;\n automusic.addEventListener('ended', function () { $(\"bsnmusic\").src=\n$(\"bsnmusic\").src\n }, false);\n</script>\n<script>\nfunction bsnmusic(bsnmusic){\n$(\"bsnmusic\").src=bsnmusic;\n$(\"bsnmusic\").play();\n}\n</script>\n<script>\nfunction 随机音乐(){\nvar clas=['mus1','mus2','mus3','mus4'];\nvar x=Math.floor(Math.random()*(4+1-0)+0);\n$(\"bsnmusic\").src=\n$(clas[x]).value;\n$(\"bsnmusic\").play();\n}\n</script>\n<script>\nfunction 下一首(){\n$(\"bsnmusic\").src=\n$(\"bsnmusic\").src;$(\"bsnmusic\").play();\n}\n</script>\n<script>//时间显示\nwindow.onload=getTime;\nfunction getTime(){\nvar today=new Date();\nvar year=today.getFullYear();//获取年\nvar month=today.getMonth()+1;//获取月\nvar date=today.getDate();//获取日\nvar day=today.getDay();//获取星期\nvar hours=today.getHours();//获取小时\nvar minutes=today.getMinutes();//获取分钟\nvar seconds=today.getSeconds();//获取秒\nvar milliseconds=today.getMilliseconds();//获取毫秒\n\n//当???小于/等于/大于一个数值时,???显示为\nif(hours<1){\nhours=\"午夜 \"+hours;\n} else if(hours<7){\nhours=\"凌晨 \"+hours;\n} else if(hours<12){\nhours=\"上午 \"+hours;\n} else if(hours<13){\nhours=\"正午 \"+hours;\n} else if(hours<19){\nhours=\"下午 \"+[hours-12];\n} else if(hours<22){\nhours=\"晚上 \"+[hours-12];\n} else if(hours<24){\nhours=\"半夜 \"+[hours-12];\n}\n\nif(day<1){\nday=\"星期天\";\n} else if(day<2){\nday=\"星期一\";\n} else if(day<3){\nday=\"星期二\";\n} else if(day<4){\nday=\"星期三\";\n} else if(day<5){\nday=\"星期四\";\n} else if(day<6){\nday=\"星期五\";\n} else if(day<7){\nday=\"星期六\";\n}\n\nif(minutes<10){\nminutes=\"0\"+minutes;\n}\nif(seconds<10){\nseconds=\"0\"+seconds;\n}\nvar 显示=year+'年'+month+'月'+date+'日'+day+'<br>'+hours+\":\"+minutes+\":\"+seconds+\"<sup><i>\"+milliseconds;\n$('时间').innerHTML=显示;\nsetInterval(\"getTime()\",1000)\n}\n</script>\n\n\n\n<details>\n<summary align=\"right\" style=\"color:#812424\">各类说明</summary><div class=\"渐变\"><p><details><summary style=\"color:#812424\">作者の闲话</summary><div class=\"渐变\"><center><br>封面没整理完<br>好看的图片太难找,不好看的图片不想要😂<br>没有关系,Pro⁺是长期订阅,慢慢完善🌹<p>虽然链接长了亿点,但是为了方便复制就不用短网址\"加密\"了。<p>本来有大佬主页跳转的,阅读现在并不支持跳转应用,只能先放着,再议<p><br><details><summary style=\"color:#812424\">关于Pro⁺の更多操作:</summary><div class=\"渐变\"><br>直接显示视频(不会)<br>自定义跳转<自定义> (需要编写HTML)<br>自定义<自定义排版>(凭感觉看着排)<p>实现上面的功能需要亿些技巧,我不会,大佬没空,也没有网站可以整合了,咸鱼万岁≧▽≦</details></details><p>\n\n<details align=\"right\"><summary style=\"color:#812424\">Pro⁺格式介绍</summary><div class=\"渐变\" align=\"left\">Pro⁺有两种格式<br>因为连接符号都是\"•\",所以格式间可以混用<p>格式一<br>在分类URL填写<br>网站链接【封面链接】《标题名称》◎名称补充◎<p>格式二<br>(标题): 在分类URL填写<br>定位数字1、定位数字2、【封面链接】《标题名称》◎名称补充◎<p><br>(内容): 在描述规则填写<br>❗️定位数字1、定位数字2、开始❗️<br>自定义内容<br>❗️定位数字1、定位数字2、结束❗️<p>ps:只要定位数字对,就可以显示自定义内容<p><br>总格式<br>分类名::http://www.baidu.com?wd=格式一/格式二•格式一/格式二</details><h4>\n\n<details><summary style=\"color:#812424\">Pro⁺更新了什么?</summary><div class=\"渐变\"><br>0. 周更计划<br>酷安一周书源整理<p>1. 订阅格式二<br>可显示自定义内容(就是你现在看的这个)<p>2. 自定义封面<br>可显示自定义封面<sup>支持gif格式</sup><p>3. 自定义名称补充<br>在原网站网址处自定义文字(方便分类)<p>4. a标签链接跳转&一键导入<br>支持书源,订阅源\"一键导入\"<p>5. a标签链接跳转&超级整合<br>可以整合很多网站到一个标题里</details><p>\n\n<details align=\"right\"><summary style=\"color:#812424\">关于周更计划</summary><div class=\"渐变\"><center><br>\n每天都高频率打开酷安看大佬们的更新,就想着整合一下🌹<p>注: 每次上线看到的分享才会记录下来,评论被吞了或者没看见的分享无法记录哦</details><p>\n\n<details><summary style=\"color:#812424\">原本的源注释</summary><div class=\"渐变\"><br><big><center>说明一下相关情况</center></big><br>❗不要相信网站广告,不要对网站氪金❗<br>错信广告照成的损失本人概不负责<p>关于整合的网站来源<br><sub>如果觉得侵犯了你的权益请联系我删除</sub><p>整合的网站大部分发掘于源仓库历史分享,小部分来自酷安的评论区<br>ps:订阅分享前应该会确认能打开网站<br>保证能打开,不保证能看哦🙄</details><p>\n\n<details align=\"right\"><summary style=\"color:#812424\">关于特殊整合</summary><div class=\"渐变\"><center><br>特殊Pro⁺暂时不整理,鸽一会<p>建议使用大佬们分享的特殊订阅源,干净清爽无广告<p><br>这次真的是(源仓库订阅)特殊网站最大供应商了😂<p><br>关于特殊网站: 特殊网站的危害(必看)<p>1.可能会导致你的财产损失<p>2.可能会导致你的数据泄漏<p>特殊网站的广告非常多,代码会乱跳网页,如果包涵木马程序可能会让你的手机报废/成为肉鸡<br>ps:很多特殊网站是和黑客合伙的(或者就是黑客开的),如果你的手机成为肉鸡,那就麻烦了。<p><br><a href=\"https://m.baidu.com/s?from=1013843q&word=%E8%89%B2%E6%83%85%E7%BD%91%E7%AB%99%E7%9B%97%E5%8F%B7\">色情网站盗号<br><a href=\"http://gd.sina.cn/news/zx/2016-01-11/detail-ifxnkkux1089585.d.html?from=wap\">色情网站盗取银行卡密码<br><a href=\"http://news.sohu.com/20090827/n266266692.shtml\">色情网站传播病毒<br><a href=\"http://mobile.rmzxb.com.cn/tranm/index/url/www.rmzxb.com.cn/c/2018-03-31/2012315.shtml\">色情网站让你成肉鸡</a><h4><br>如果你不在意以上危害,请自己在<a href=\"http://m.baidu.com\">百度</a>寻找特殊网站。<details><summary><p>再次重申:<br>如果你因为使用[特殊整合]造成的数据泄漏/偷号盗号/经济损失,本人概不负责哦🙄</summary><p><a href=\"yuedu://rsssource/importonline?src=http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=766\">特殊Pro⁺丨没有整合,待整合<p><a href=\"yuedu://rsssource/importonline?src=\">仓库特殊订阅整合丨待整理<p><a href=\"yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1619856867.json\">31🔞订阅丨一键导入\n❗️0、0、结束❗️\n❗️1、0、开始❗️\n<body bgcolor='050505'><center><br><br><br>\n<table cellspacing=\"0\">\n<tr><td rowspan='2' valign=\"top\" style=\"text-align:left; width:71%\"><img src='https://api.ixiaowai.cn/api/api.php' alt=\"图片加载失败\" width=\"100%\">\n<h2 id=\"a0\">框架重构</h2></td>\n<th width=\"32%\">↓作者选择↓</th></tr>\n<tr><td rowspan='2'>\n<div style='overflow:auto; height:100%; color:000' class='按钮'><b>\n<details id=\"c0\" open><summary></summary>\n<p onclick=\"c0_00()\">🔸最近更新</p>\n<p onclick=\"c1_01()\">乃星</p>\n<p onclick=\"c1_10()\">糖果超甜哒</p>\n<p onclick=\"c2_16()\">库拉索芦荟</p>\n<p onclick=\"c2_17()\">都还没睡醒</p>\n<p onclick=\"c2_18()\">柒夏锦年</p>\n<details open><summary>💠需要下载</summary>\n<p onclick=\"c4_03()\">浪仙人</p>\n<p onclick=\"c4_04()\">蚂蚁吃豆芽</p>\n<p onclick=\"c3_01()\">易文君</p>\n<p onclick=\"c3_03()\">GIO10</p>\n<p onclick=\"c3_08()\">未月十八</p>\n<p onclick=\"c3_19()\">鸡排饭加蛋</p>\n<p onclick=\"c3_20()\">用户无名称</p>\n<p onclick=\"c3_27()\">太闲</p>\n<p onclick=\"c3_28()\">逸团</p>\n</details></details>\n<details id=\"c1\"><summary></summary>\n<p onclick=\"c1_00()\">🔸精品推荐</p>\n<p onclick=\"c1_01()\">乃星</p>\n<p onclick=\"c1_02()\">无恙</p>\n<p onclick=\"c1_03()\">氧化钙_</p>\n<p onclick=\"c1_04()\">常校书源</p>\n<p onclick=\"c1_05()\">山抹清风</p>\n<p onclick=\"c1_06()\">南笙星辰</p>\n<p onclick=\"c1_07()\">滨江美波</p>\n<p onclick=\"c1_08()\">匿名不吓你</p>\n<p onclick=\"c1_09()\">温暖满怀绽</p>\n<p onclick=\"c1_10()\">糖果超甜哒</p>\n<p onclick=\"c1_11()\">guguda121</p>\n<details><summary>💠查看更多</summary>\n<details><summary>订阅导入🔹</summary>\n<p onclick=\"c1_12()\">🔹九五订阅</p>\n<p onclick=\"c1_13()\">🔹仓库㊕㊝</p>\n</details>\n<details><summary>链接整合🔹</summary>\n<p onclick=\"c1_14()\">🔹酷安菊鶸</p>\n<p onclick=\"c1_15()\">🔹遗忘情感</p>\n</details></details></details>\n<details id=\"c2\"><summary></summary>\n<p onclick=\"c2_00()\">🔸一键导入</p>\n<p onclick=\"c2_01()\">? ? ?</p>\n<p onclick=\"c2_02()\">佚名</p>\n<p onclick=\"c2_03()\">寻岞</p>\n<p onclick=\"c2_04()\">千仞云</p>\n<p onclick=\"c2_05()\">不思慕</p>\n<p onclick=\"c2_06()\">风扬兮</p>\n<p onclick=\"c2_07()\">贾亦真</p>\n<p onclick=\"c2_08()\">凡凡黄</p>\n<p onclick=\"c2_09()\">Sangdi7</p>\n<p onclick=\"c2_10()\">Y大先生</p>\n<p onclick=\"c2_11()\">狼火霸世</p>\n<p onclick=\"c2_12()\">暗香迷蝶</p>\n<p onclick=\"c2_13()\">在下不狂</p>\n<p onclick=\"c2_14()\">上山不易弃</p>\n<p onclick=\"c2_15()\">电子菩萨会</p>\n<p onclick=\"c2_16()\">库拉索芦荟</p>\n<p onclick=\"c2_17()\">都还没睡醒</p></details>\n<details id=\"c3\"><summary></summary>\n<p onclick=\"c3_00()\">🔸本地导入</p>\n<p onclick=\"c3_01()\">易文君</p>\n<p onclick=\"c3_02()\">雪痕伤</p>\n<p onclick=\"c3_03()\">GIO10</p>\n<p onclick=\"c3_04()\">Xy宝儿</p>\n<p onclick=\"c3_05()\">XiErLuo</p>\n<p onclick=\"c3_06()\">yellyoo</p>\n<p onclick=\"c3_07()\">长歌2021</p>\n<p onclick=\"c3_08()\">未月十八</p>\n<p onclick=\"c3_09()\">秋月枫叶</p>\n<p onclick=\"c3_10()\">片恋将为</p>\n<p onclick=\"c3_11()\">鱼儿飞呀飞</p>\n<p onclick=\"c3_12()\">于花都之中</p>\n<p onclick=\"c3_13()\">笛寄明月楼</p>\n<p onclick=\"c3_14()\">路遥星亦辞</p>\n<p onclick=\"c3_15()\">夏目的余波</p>\n<p onclick=\"c3_16()\">不是质与合</p>\n<p onclick=\"c3_17()\">励志当肚兜</p>\n<p onclick=\"c3_18()\">杞人忧天_x</p>\n<p onclick=\"c3_19()\">鸡排饭加蛋</p>\n<p onclick=\"c3_20()\">用户无名称</p>\n<p onclick=\"c3_28()\">逸团</p>\n<details><summary>💠其他云盘</summary>\n<p onclick=\"c3_21()\">安争お</p>\n<p onclick=\"c3_22()\">kanalian</p>\n<p onclick=\"c3_23()\">飞鸽信鸽</p>\n<p onclick=\"c3_24()\">听一曲寂寥</p>\n<p onclick=\"c3_25()\">鱼离不开水</p>\n<p onclick=\"c3_26()\">联发科牛批</p>\n<p onclick=\"c3_27()\">太闲</p></details></details>\n<details id=\"c4\"><summary></summary>\n<p onclick=\"c4_00()\">🔸书籍下载</p>\n<p onclick=\"c4_01()\">徽氚</p>\n<p onclick=\"c4_02()\">刘作鹛</p>\n<p onclick=\"c4_03()\">浪仙人</p>\n<p onclick=\"c4_04()\">蚂蚁吃豆芽</p></details>\n<details id=\"c5\"><summary></summary>\n<p onclick=\"c5_00()\">🔸其他资源</p>\n<p onclick=\"c5_01()\">帝君</p>\n<p onclick=\"c5_02()\">格致k</p>\n<details open><summary>订阅导入🔹</summary>\n<p onclick=\"c5_03()\">🔹亡灵诗人</p>\n<p onclick=\"c5_04()\">🔹Engels13</p>\n<p onclick=\"c5_05()\">🔹名字难取</p>\n</details>\n<details><summary>各类整合🔹</summary>\n<p onclick=\"c5_06()\">🔹勿埋我心</p>\n<p onclick=\"c5_07()\">🔹苏寅Tools</p>\n<p onclick=\"c5_08()\">🔹酷安寻岞</p>\n</details>\n</details></div></td></tr>\n<tr><td rowspan='3' height='100px'><b><br>\n<h3><a href=\"\" id=\"a1\"></a></h3>\n<h5 id=\"a2\">尽量避免了高度变化,修改配色</h5><br>\n<h3><a href=\"\" id=\"a3\"></a></h3>\n<h5 id=\"a4\">移除tts相关整合及部分书源整合</h5>\n</td></tr>\n<tr><th>↓类型选择↓</th></tr>\n<tr><td rowspan='3' class=\"按钮\">\n<div style='overflow:auto;height:100%'>\n<h4 onclick=\"c0_00()\" class=\"按钮\">最近更新</h4>\n<h4 onclick=\"c1_00()\" class=\"按钮\">精品推荐</h4>\n<h4 onclick=\"c2_00()\" class=\"按钮\">一键导入</h4>\n<h4 onclick=\"c3_00()\" class=\"按钮\">本地导入</h4>\n<h4 onclick=\"c4_00()\" class=\"按钮\">书籍下载</h4>\n<h4 onclick=\"c5_00()\" class=\"按钮\">其他资源</h4>\n</div></td></tr>\n<tr><td valign=\"bottom\" rowspan='2'><b>\n<i><h5 id=\"a5\" align=\"right\">V0.3 .</h5></i>\n</td></tr><tr></tr>\n</table><style>\n*{margin:0;padding:0;border-radius:5px}\ni{color:d0d77e}\na{color:ddcc44}\na:hover{color:503070}\np{height:12.5%}\np:hover{background:-webkit-linear-gradient(-55deg,#666,#fff,#888)}\nh2{height:36px}\nh3{height:24px}\nh4{padding:4px}\nh5{padding-top:8px;height:16px}\nth{height:1px; background:linear-gradient(to right bottom,red 8%,yellow 40%,red 100%); -webkit-background-clip:text; color:transparent}\ntable{text-align:center; width:100%; height:65%; background:#080808; color:c4d77e}\n</style><script>\nfunction $(){\nvar elements = new Array();\nfor (var i = 0; i < arguments.length; i++){\nvar element = arguments[i];\nif (typeof element == 'string')\nelement = document.getElementById(element);\nif (arguments.length == 1)\nreturn element;\nelements.push(element);}\nreturn elements;}\n</script><script>\nfunction c0_00(){\nvar x=$(\"c0\").open;\nif(x==true){$(\"c0\").open=false;}\nelse{$(\"c0\").open=true;}}\n</script><script>\nfunction c1_00(){\nvar x=$(\"c1\").open;\nif(x==true){$(\"c1\").open=false;}\nelse{$(\"c1\").open=true;}}\n</script><script>\nfunction c2_00(){\nvar x=$(\"c2\").open;\nif(x==true){$(\"c2\").open=false;}\nelse{$(\"c2\").open=true;}}\n</script><script>\nfunction c3_00(){\nvar x=$(\"c3\").open;\nif(x==true){$(\"c3\").open=false;}\nelse{$(\"c3\").open=true;}}\n</script><script>\nfunction c4_00(){\nvar x=$(\"c4\").open;\nif(x==true){$(\"c4\").open=false;}\nelse{$(\"c4\").open=true;}}\n</script><script>\nfunction c5_00(){\nvar x=$(\"c5\").open;\nif(x==true){$(\"c5\").open=false;}\nelse{$(\"c5\").open=true;}}\n</script>\n\n\n<script>\nfunction c1_01(){\n$(\"a0\").innerHTML=\"酷安@乃星\";\n$(\"a1\").innerHTML=\"女频源丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1626319938.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"晋江api-改丨导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=https://shuyuan.miaogongzi.net/shuyuan/1629542804.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_02(){\n$(\"a0\").innerHTML=\"酷安@无恙\";\n$(\"a1\").innerHTML=\"详细源丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://slaijie.gitee.io/legado/legado/BookSource210116.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_03(){\n$(\"a0\").innerHTML=\"酷安@氧化钙_\";\n$(\"a1\").innerHTML=\"长期下载链接\";\n$(\"a1\").href=\"https://thenight.lanzoui.com/b055a72pa\";\n$(\"a2\").innerHTML=\"提取码 0000\";\n$(\"a3\").innerHTML=\"书源*590丨导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1626191885.txt\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.7.13 .\"}\n</script><script>\nfunction c1_04(){\n$(\"a0\").innerHTML=\"常校书源\";\n$(\"a1\").innerHTML=\"Xiu2\";\n$(\"a1\").href=\"https://yuedu.xiu2.xyz\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"喵公子\";\n$(\"a3\").href=\"http://yuedu.miaogongzi.net/gx.html\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_05(){\n$(\"a0\").innerHTML=\"酷安@山抹清风\";\n$(\"a1\").innerHTML=\"自制源丨偏🔞丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/Gladtbam/BookS/ALL.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"书源下载<sup>21.6.18\";\n$(\"a3\").href=\"https://wwa.lanzoui.com/im5QUqe2z9g\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_06(){\n$(\"a0\").innerHTML=\"酷安@南笙星辰\";\n$(\"a1\").innerHTML=\"通用源丨下载\";\n$(\"a1\").href=\"https://wwi.lanzoux.com/iYDtgjxc9mf\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.1.1 .\"}\n</script><script>\nfunction c1_07(){\n$(\"a0\").innerHTML=\"酷安@滨江美波\";\n$(\"a1\").innerHTML=\"精简源丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://gitee.com/jia_to_hui/read-30-preferred-book-source/raw/master/bookSource.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.6.18 .\"}\n</script><script>\nfunction c1_08(){\n$(\"a0\").innerHTML=\"酷安@匿名不然吓死你\";\n$(\"a1\").innerHTML=\"<sup>新/</sup>必应搜书&一个书源丨下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/il3iJsk15la\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"必应搜书&一个书源丨导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=http://yck.mumuceo.com/yuedu/shuyuan/jsons?id=3926-5100\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c1_09(){\n$(\"a0\").innerHTML=\"酷安@温暖满怀万花绽\";\n$(\"a1\").innerHTML=\"精选源丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://gitee.com/baize12/baize/raw/master/yuedu/81.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"精选源丨下载\";\n$(\"a3\").href=\"https://www.lanzoui.com/b00nb4i1i\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"20.12.8 .\"}\n</script><script>\nfunction c1_10(){\n$(\"a0\").innerHTML=\"酷安@糖果超甜哒\";\n$(\"a1\").innerHTML=\"女频源丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://tangguochaotian.coding.net/p/tangguoshuyuan1015/d/tangguo/git/raw/master/exportBookSource.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"淑女源丨导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=https://shuyuan.miaogongzi.net/shuyuan/1629227088.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_11(){\n$(\"a0\").innerHTML=\"酷安@guguda121\";\n$(\"a1\").innerHTML=\"书源*1500⁺丨原生整合\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://guguda121.coding.net/p/guguda121yuedu/d/guguda121yuedu/git/raw/master/1-guguda121.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"书源*1500⁺丨自用小改\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=https://guguda121.coding.net/p/guguda121yuedu/d/guguda121yuedu/git/raw/master/2-guguda121.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_12(){\n$(\"a0\").innerHTML=\"九五订阅\";\n$(\"a1\").innerHTML=\"95订阅丨导入\";\n$(\"a1\").href=\"yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1619427388.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"23订阅丨导入\";\n$(\"a3\").href=\"yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1619456819.json\";\n$(\"a4\").innerHTML=\"(95订阅)阅读官方精简版\";\n$(\"a5\").innerHTML=\"21.4.25 .\"}\n</script><script>\nfunction c1_13(){\n$(\"a0\").innerHTML=\"仓库㊕㊝\";\n$(\"a1\").innerHTML=\"⑪新闻资讯丨导入\";\n$(\"a1\").href=\"yuedu://rsssource/importonline?src=http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=10-15-17-57-59-60-88-101-104-911-912-913-952-953\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"⑫视频音频丨导入\";\n$(\"a3\").href=\"yuedu://rsssource/importonline?src=http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=69-224-296-337-339-341-354-372-780-781-782-895\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_14(){\n$(\"a0\").innerHTML=\"酷安@菊鶸\";\n$(\"a1\").innerHTML=\"书源整合&使用教程\";\n$(\"a1\").href=\"https://github.com/ifwlzs/YueDuBackup/blob/master/README.md\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"备用链接\";\n$(\"a3\").href=\"https://gitee.com/ifwlzs/YueDuBackup/blob/master/README.md\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c1_15(){\n$(\"a0\").innerHTML=\"酷安@遗忘情感\";\n$(\"a1\").innerHTML=\"书源整合\";\n$(\"a1\").href=\"https://www.coolapk.com/feed/28840273?shareKey=NTJkZjJlMWRiNWE5NjEwNzEyZDM~&shareUid=4339115&shareFrom=com.coolapk.market_11.2.3\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"\n}\n</script>\n\n\n<script>\nfunction c2_01(){\n$(\"a0\").innerHTML=\"酷安@? ? ?\";\n$(\"a1\").innerHTML=\"43笔趣阁丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/cyao2q/yuedu@master/shuyuan\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_02(){\n$(\"a0\").innerHTML=\"酷安@佚名\";\n$(\"a1\").innerHTML=\"哔哩轻小说丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1620751061.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_03(){\n$(\"a0\").innerHTML=\"酷安@寻岞\";\n$(\"a1\").innerHTML=\"书源*1121丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://share.dmca.gripe/dl/h4I725wkRjtAFryN.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"1100⁺书源丨下载\";\n$(\"a3\").href=\"https://share.dmca.gripe/h4I725wkRjtAFryN.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_04(){\n$(\"a0\").innerHTML=\"酷安@千仞云\";\n$(\"a1\").innerHTML=\"书源*150丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://shuyuan.miaogongzi.net/shuyuan/1628574450.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"tts\";\n$(\"a3\").href=\"legado://import/auto?src=https://shuyuan.miaogongzi.net/shuyuan/1628554471.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c2_05(){\n$(\"a0\").innerHTML=\"酷安@不思慕\";\n$(\"a1\").innerHTML=\"精品源*8丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1627051601.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"新丨书源下载\";\n$(\"a3\").href=\"https://wwe.lanzoui.com/igv6Ns34h7e\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_06(){\n$(\"a0\").innerHTML=\"酷安@风扬兮\";\n$(\"a1\").innerHTML=\"书源*50丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1627365193.txt\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"50源丨下载\";\n$(\"a3\").href=\"https://wwi.lanzoui.com/iAUXGrwnbyh\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.7.28 .\"}\n</script><script>\nfunction c2_07(){\n$(\"a0\").innerHTML=\"酷安@贾亦真\";\n$(\"a1\").innerHTML=\"漫画源*98丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1618368197.txt\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_08(){\n$(\"a0\").innerHTML=\"酷安@凡凡黄\";\n$(\"a1\").innerHTML=\"校验源*634丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://yuedu.miaogongzi.net/shuyuan/hff634.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_09(){\n$(\"a0\").innerHTML=\"酷安@Sangdi7\";\n$(\"a1\").innerHTML=\"醋溜儿文学丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1624978658.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_10(){\n$(\"a0\").innerHTML=\"酷安@Y大先生\";\n$(\"a1\").innerHTML=\"书源*270丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1626729748.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"新丨书源导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1627874396.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_11(){\n$(\"a0\").innerHTML=\"酷安@狼火霸世\";\n$(\"a1\").innerHTML=\"知乎主页\";\n$(\"a1\").href=\"https://www.zhihu.com/people/lang-huo-ba-shi\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"500源丨导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/yeyulingfeng01/yuedu.github.io/yuedu3.0-20210105.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.3.13 .\"}\n</script><script>\nfunction c2_12(){\n$(\"a0\").innerHTML=\"酷安@暗香迷蝶\";\n$(\"a1\").innerHTML=\"书源*770丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1625163110.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"推书君优化丨导入\";\n$(\"a3\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1625449721.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_13(){\n$(\"a0\").innerHTML=\"酷安@在下不狂\";\n$(\"a1\").innerHTML=\"通用源*105丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1627802706.txt\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"2.0耽美源丨下载\";\n$(\"a3\").href=\"https://chenmeng.lanzoui.com/igFVfs2noqd\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.7.29 .\"}\n</script><script>\nfunction c2_14(){\n$(\"a0\").innerHTML=\"酷安@上山不易岂能言弃\";\n$(\"a1\").innerHTML=\"书源*5丨敏感字少\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://yck.mumuceo.com/yuedu/shuyuan/jsons?id=4990-5000-4991-4999-4998\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_15(){\n$(\"a0\").innerHTML=\"酷安@电子菩萨会普渡已注销用户吗\";\n$(\"a1\").innerHTML=\"女频源*55丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1624932143.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c2_16(){\n$(\"a0\").innerHTML=\"酷安@库拉索芦荟\";\n$(\"a1\").innerHTML=\"奇书网丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/5528046/shuyuan@main/%E5%A5%87%E4%B9%A6%E7%BD%91.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.1? .\"}\n</script><script>\nfunction c2_17(){\n$(\"a0\").innerHTML=\"酷安@都还没睡醒\";\n$(\"a1\").innerHTML=\"书源*500⁺丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://cdn.bizha.top/BookSource/shareBookSource.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.1? .\"\n}\n</script><script>\nfunction c2_18(){\n$(\"a0\").innerHTML=\"酷安@柒夏锦年\";\n$(\"a1\").innerHTML=\"💰息壤中文网丨导入\";\n$(\"a1\").href=\"yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/kaitl/BookSource/yuedu.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"\n}\n</script>\n\n\n<script>\nfunction c3_01(){\n$(\"a0\").innerHTML=\"酷安@易文君\";\n$(\"a1\").innerHTML=\"自用源*56丨下载\";\n$(\"a1\").href=\"https://wwr.lanzoui.com/iIx0tsy3ngj\";\n$(\"a2\").innerHTML=\"提取码 2333\";\n$(\"a3\").innerHTML=\"新丨自用源*43丨下载\";\n$(\"a3\").href=\"https://wwr.lanzoui.com/iLZ9qt0idmh\";\n$(\"a4\").innerHTML=\"2233\";\n$(\"a5\").innerHTML=\"21.8.2? .\"}\n</script><script>\nfunction c3_02(){\n$(\"a0\").innerHTML=\"酷安@雪痕伤\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://wwi.lanzoui.com/iEFs6sb8hgf\";\n$(\"a2\").innerHTML=\"提取码 4gnd\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_03(){\n$(\"a0\").innerHTML=\"酷安@GIO10\";\n$(\"a1\").innerHTML=\"3.0源*159丨下载\";\n$(\"a1\").href=\"https://gio10.lanzoui.com/iQMxrray9wh\";\n$(\"a2\").innerHTML=\"提取码 gqsn\";\n$(\"a3\").innerHTML=\"新丨书源下载\";\n$(\"a3\").href=\"https://gio10.lanzoui.com/iJMy7stzhod\";\n$(\"a4\").innerHTML=\"提取码 aq77\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_04(){\n$(\"a0\").innerHTML=\"酷安@Xy宝儿\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://wwr.lanzoui.com/imk1zr1rh6d\";\n$(\"a2\").innerHTML=\"提取码 I2rb\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_05(){\n$(\"a0\").innerHTML=\"酷安@XiErLuo\";\n$(\"a1\").innerHTML=\"自用源丨下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/iTmXRrq9pmj\";\n$(\"a2\").innerHTML=\"提取码 2333\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_06(){\n$(\"a0\").innerHTML=\"酷安@yellyoo\";\n$(\"a1\").innerHTML=\"飞卢源*30丨下载\";\n$(\"a1\").href=\"https://wws.lanzoux.com/b01o1817i\";\n$(\"a2\").innerHTML=\"提取码 1fd0\";\n$(\"a3\").innerHTML=\"替换净化丨下载\";\n$(\"a3\").href=\"https://wws.lanzoux.com/b01o181bc\";\n$(\"a4\").innerHTML=\"提取码 dxkl\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_07(){\n$(\"a0\").innerHTML=\"酷安@长歌2021\";\n$(\"a1\").innerHTML=\"书源*3000⁺丨下载\";\n$(\"a1\").href=\"https://wwe.lanzoui.com/b01ochssb\";\n$(\"a2\").innerHTML=\"提取码 5igt\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_08(){\n$(\"a0\").innerHTML=\"酷安@未月十八\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/iqVZLsb0mfg\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"新丨大整合书源丨下载\";\n$(\"a3\").href=\"https://wwa.lanzoui.com/ifTVJtbdl8h\";\n$(\"a4\").innerHTML=\"提取码 wy108\";\n$(\"a5\").innerHTML=\"21.8.29 .\"}\n</script><script>\nfunction c3_09(){\n$(\"a0\").innerHTML=\"酷安@秋月枫叶\";\n$(\"a1\").innerHTML=\"精品源*20丨下载\";\n$(\"a1\").href=\"https://ygdmw.lanzoui.com/icuivhi\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"精选源*53丨下载\";\n$(\"a3\").href=\"https://ygdmw.lanzoui.com/id3fnddpbwj\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_10(){\n$(\"a0\").innerHTML=\"酷安@片恋将为\";\n$(\"a1\").innerHTML=\"个人优化源丨下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/b0axoy41c\";\n$(\"a2\").innerHTML=\"提取码 4hot\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_11(){\n$(\"a0\").innerHTML=\"酷安@天上的鱼儿飞呀飞\";\n$(\"a1\").innerHTML=\"321源丨下载\";\n$(\"a1\").href=\"https://wwe.lanzoux.com/iaAwrok4yjg\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_12(){\n$(\"a0\").innerHTML=\"酷安@于花都之中\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://wws.lanzoui.com/b0269ornc\";\n$(\"a2\").innerHTML=\"提取码 2333\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_13(){\n$(\"a0\").innerHTML=\"酷安@笛寄明月楼\";\n$(\"a1\").innerHTML=\"男频源*13丨下载\";\n$(\"a1\").href=\"https://wwe.lanzoui.com/iwYfWq6mswj\";\n$(\"a2\").innerHTML=\"提取码 614218\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_14(){\n$(\"a0\").innerHTML=\"酷安@路遥星亦辞\";\n$(\"a1\").innerHTML=\"3.0源丨下载\";\n$(\"a1\").href=\"https://qiling.lanzoui.com/iQxgcro6bfi\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.7.21 .\"}\n</script><script>\nfunction c3_15(){\n$(\"a0\").innerHTML=\"酷安@夏目的余波\";\n$(\"a1\").innerHTML=\"书源*288丨下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/u/%E7%BA%A2%E8%B0%B7%E6%BB%A9\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_16(){\n$(\"a0\").innerHTML=\"酷安@不是质数也不是合数\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://wwe.lanzoui.com/i7yJ0sfsm3g\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c3_17(){\n$(\"a0\").innerHTML=\"酷安@励志当肚兜\";\n$(\"a1\").innerHTML=\"🔞源丨下载\";\n$(\"a1\").href=\"https://wwa.lanzoux.com/itX2moiqw4j\";\n$(\"a2\").innerHTML=\"提取码 bjvs\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_18(){\n$(\"a0\").innerHTML=\"酷安@杞人忧天_x\";\n$(\"a1\").innerHTML=\"新丨书源下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/i3C0hs6acja\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"替换净化丨下载\";\n$(\"a3\").href=\"https://wwa.lanzoui.com/iPYvMrkqpib\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_19(){\n$(\"a0\").innerHTML=\"酷安@鸡排饭加个蛋吧\";\n$(\"a1\").innerHTML=\"精选自用源*28丨下载\";\n$(\"a1\").href=\"https://wwe.lanzoui.com/iUlnssyctqj\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c3_20(){\n$(\"a0\").innerHTML=\"酷安@该用户未设置名称\";\n$(\"a1\").innerHTML=\"轻小说文库丨下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/iCmr8szkdkb\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_21(){\n$(\"a0\").innerHTML=\"酷安@安争お\";\n$(\"a1\").innerHTML=\"8.1分享丨下载\";\n$(\"a1\").href=\"https://url91.ctfile.com/f/33061991-504407752-c64c48\";\n$(\"a2\").innerHTML=\"8011\";\n$(\"a3\").innerHTML=\"订阅*350丨下载\";\n$(\"a3\").href=\"https://url91.ctfile.com/f/33061991-505067550-f02384\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.1 .\"}\n</script><script>\nfunction c3_22(){\n$(\"a0\").innerHTML=\"酷安@kanalian\";\n$(\"a1\").innerHTML=\"书源*300⁺丨下载\";\n$(\"a1\").href=\"https://pan.bilnn.com/s/YgzGtW\";\n$(\"a2\").innerHTML=\"提取码 toubi\";\n$(\"a3\").innerHTML=\"书源*2000⁺丨下载\";\n$(\"a3\").href=\"https://pan.bilnn.com/s/NNeGSl\";\n$(\"a4\").innerHTML=\"提取码 senhora\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_23(){\n$(\"a0\").innerHTML=\"酷安@飞鸽信鸽\";\n$(\"a1\").innerHTML=\"自用源下载\";\n$(\"a1\").href=\"https://share.weiyun.com/RRkV4sLn\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_24(){\n$(\"a0\").innerHTML=\"酷安@听一曲寂寥\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://share.weiyun.com/lnwo5CDj\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c3_25(){\n$(\"a0\").innerHTML=\"酷安@鱼离不开水\";\n$(\"a1\").innerHTML=\"500源丨下载\";\n$(\"a1\").href=\"https://pan.baidu.com/s/1dTnlqXHhi5F7aR4MVY65_g\";\n$(\"a2\").innerHTML=\"提取码 x0x6\";\n$(\"a3\").innerHTML=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.? .\"}\n</script><script>\nfunction c3_26(){\n$(\"a0\").innerHTML=\"酷安@联发科牛批\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://alywp.net/5NpEQY\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c3_27(){\n$(\"a0\").innerHTML=\"酷安@太闲\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://share.weiyun.com/1y2ZlxA8\";\n$(\"a2\").innerHTML=\"提取码 gdn8iq\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c3_28(){\n$(\"a0\").innerHTML=\"酷安@逸团\";\n$(\"a1\").innerHTML=\"书源下载\";\n$(\"a1\").href=\"https://wwa.lanzoui.com/izpUBt9krni\";\n$(\"a2\").innerHTML=\"提取码 fzdq\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script>\n\n\n<script>\nfunction c4_01(){\n$(\"a0\").innerHTML=\"酷安@徽氚\";\n$(\"a1\").innerHTML=\"epub合集丨哈利波特&魔戒\";\n$(\"a1\").href=\"https://wwe.lanzoui.com/b01obivgh\";\n$(\"a2\").innerHTML=\"提取码 9tw2\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c4_02(){\n$(\"a0\").innerHTML=\"酷安@刘作鹛\";\n$(\"a1\").innerHTML=\"6G飞卢小说分享丨下载\";\n$(\"a1\").href=\"https://pan.baidu.com/wap/init?surl=RfFG2P3z_e5hjgqS4st9Cg\";\n$(\"a2\").innerHTML=\"提取码 8bu8 丨 解压码 321\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c4_03(){\n$(\"a0\").innerHTML=\"酷安@浪仙人\";\n$(\"a1\").innerHTML=\"epub丨我想吃了,你的胰脏\";\n$(\"a1\").href=\"https://pan.lanzou.com/ipy6Zsdg3yj\";\n$(\"a2\").innerHTML=\"提取码 fk7y\";\n$(\"a3\").innerHTML=\"<sup>新/</sup>epub丨青春猪头少年\";\n$(\"a3\").href=\"https://pan.lanzou.com/iuzHisswdpg\";\n$(\"a4\").innerHTML=\"提取码 6swp\";\n$(\"a5\").innerHTML=\"21.8.?? .\"}\n</script><script>\nfunction c4_04(){\n$(\"a0\").innerHTML=\"酷安@蚂蚁吃豆芽\";\n$(\"a1\").innerHTML=\"豆瓣top250图书(收藏版)\";\n$(\"a1\").href=\"https://www.aliyundrive.com/s/zmkyCQqFtUY\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"新丨中国最美的气质套装\";\n$(\"a3\").href=\"https://www.aliyundrive.com/s/d5NMbgwPTma\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"\n}\n</script>\n\n\n<script>\nfunction c5_01(){\n$(\"a0\").innerHTML=\"酷安@帝君\";\n$(\"a1\").innerHTML=\"第一版主丨复制粘贴导入\";\n$(\"a1\").href=\"https://cdn.jsdelivr.net/gh/orzend/Yuedu/dybz77.txt\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_02(){\n$(\"a0\").innerHTML=\"酷安@格致k\";\n$(\"a1\").innerHTML=\"<sup>书源/</sup>期刊杂志丨复制粘贴导入\";\n$(\"a1\").href=\"https://pasteme.cn/123473\";\n$(\"a2\").innerHTML=\"提取码 1234\";\n$(\"a3\").innerHTML=\"<sup>订阅/</sup>知乎热榜丨复制粘贴导入\";\n$(\"a3\").href=\"https://pasteme.cn/140909\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_03(){\n$(\"a0\").innerHTML=\"酷安@亡灵诗人\";\n$(\"a1\").innerHTML=\"订阅源*233丨导入\";\n$(\"a1\").href=\"yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1622713264.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"🔞丨99订阅丨导入\";\n$(\"a3\").href=\"yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1626510726.json\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_04(){\n$(\"a0\").innerHTML=\"酷安@Engels13\";\n$(\"a1\").innerHTML=\"31🔞订阅丨导入\";\n$(\"a1\").href=\"yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1619856867.json\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_05(){\n$(\"a0\").innerHTML=\"酷安@名字太难取了啊啊啊啊\";\n$(\"a1\").innerHTML=\"订阅源丨哔哩哔哩丨下载\";\n$(\"a1\").href=\"https://wwr.lanzoux.com/iBdEHoxut0b\";\n$(\"a2\").innerHTML=\"提取码 68qw\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_06(){\n$(\"a0\").innerHTML=\"??@勿埋我心\";\n$(\"a1\").innerHTML=\"书源整合\";\n$(\"a1\").href=\"https://www.qian.blue/archives/SanQianShuYuan.html\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_07(){\n$(\"a0\").innerHTML=\"酷安@苏寅 Tools\";\n$(\"a1\").innerHTML=\"书源整合\";\n$(\"a1\").href=\"https://suyin-tools.cn/d/kDyvaGLz/Tools/Android/%E9%98%85%E8%AF%BB%E7%A5%9E%E5%99%A8/%E9%98%85%E8%AF%BB\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"}\n</script><script>\nfunction c5_08(){\n$(\"a0\").innerHTML=\"酷安@寻岞\";\n$(\"a1\").innerHTML=\"iOS 类阅读软件整合\";\n$(\"a1\").href=\"https://www.coolapk.com/feed/27077424?shareKey=OTgzNWI4NmVhMWE2NjBhODUxNDY~&shareUid=4339115&shareFrom=com.coolapk.market_11.1.5.1\";\n$(\"a2\").innerHTML=\"\";\n$(\"a3\").innerHTML=\"\";\n$(\"a3\").href=\"\";\n$(\"a4\").innerHTML=\"\";\n$(\"a5\").innerHTML=\"21.?.?? .\"\n}\n</script>\n❗️1、0、结束❗️\n❗️0、1、开始❗️\n<center><h2 style=\"color:#812424\">文字相关<br><textarea style=\"width:50%;height:60%;\">\n\n移动字体(走马灯)\n<marquee>\n\n\n文字居中\n<center>\n\n\n字体加粗\n<b>\n\n\n字体加大(可叠加)\n<big>\n\n\n字体原始样式(字体减小)\n<pre>\n\n</textarea><textarea style=\"width:50%;height:60%;\" >\n\n回车(换行)[单]\n<br>\n\n\n段落\n<p>\n\n\n行\n<tr>\n\n\n字体删除线\n<s>\n\n</textarea><textarea style=\"width:100%;height:40%;\" >\n\n自定义字体大小\n<h1>\n从h1-h6 h1最大 h6最小\n\n\n自定义字体颜色 \n<font color='#value'>文字</font>\n\nsize=\"1-7\"(字体大小)\n\n\n\n\n标签,隐藏\n<details>\n<summary>标题</summary>\n内容\n</details>\n\n\ndiv(无边框,可以改宽度)\n<div style=\"width:自定义数字px;height:0px\">内容</div>\n\n\n创建一个文本框(就是现在这个)\n<textarea style=\"width:100%;height:25%;\">\n\n</textarea>链接相关<textarea style=\"width:100%;height:50%;\" >\n\n跳转链接网站\n<a href='链接'>名称</a>\n\n\n直接显示图片\n<embed type=\"image/jpg\" src=\"链接\" width=\"50\" height=\"50\">\n\n\n直接显示网页\n<iframe src='链接' width='100%'\nheight='100%'></iframe>\n\n</textarea>背景相关<textarea style=\"width:100%;height:40%;\" >\n\n自定义背景颜色\n<body bgcolor='#value'>\n\n\n自定义背景图片\n<body background='链接'>\n\n\n自定义背景音乐\n<embed src=\"链接\" autostart=\"true\" loop=\"true\" width=\"0\" height=\"0\">\n\n</textarea>一键导入<textarea style=\"width:100%;height:45%;\" >\n\n[书源]一键导入格式\n<a href=\"yuedu://booksource/importonline?src=链接\">名称</a>\n\n\n[订阅]一键导入格式\n<a href=\"yuedu://rsssource/importonline?src=链接\">名称</a>\n\n\n[替换净化]一键导入格式\n<a href=\"yuedu://replace/importonline?src=链接\">名称</a>\n\n</textarea>不会用的<textarea style=\"width:100%;height:30%;\" >\n\n视频\n<video src=\"链接\" width=\"100%\" height=\"100%\"></video>\n\n\n贴影视文件\n<img dynsrc='链接' width='100%' height='100%' start=mouseover>\n\n</textarea><body background='http://s2.zimgs.cn/ims?kt=url&at=smstruct&key=aHR0cHM6Ly9jLXNzbC5kdWl0YW5nLmNvbS91cGxvYWRzL2l0ZW0vMjAyMDAzLzI2LzIwMjAwMzI2MTEyNzA3X3V0bHNjLnRodW1iLjEwMDBfMC5qcGc=&sign=yx:V9ldJ6662lgI0dHWWIE-tqsYk-c=&tv=400_400' body\nbgproperties=fixed>\n❗️0、1、结束❗️\n❗️1、1、开始❗️\n<b><center><h3>📥丨阅读下载</h3><br><font color=\"#812424\"><big><big>3.0</big></big></font>丨<a href='https://kunfei.lanzoux.com/b0f810h4b'>测试版丨<a href='https://github.com/gedoor/legado/blob/master/app/src/main/assets/updateLog.md'>更新日志<p><br><a href='https://kunfei.lanzoux.com/b0f7pt4ja'>蓝奏云丨点击下载<p><br><a href='https://www.90pan.com/o138704'>90云盘丨点击下载<p><br><a href='https://github.com/gedoor/legado/releases'>GitHub丨点击下载</a><p><br><h3>───── 分──割──线 ─────</h3><br><font color=\"#812424\"><big><big>2.0</big></big></font>丨<a href='https://github.com/gedoor/MyBookshelf/blob/master/app/src/main/assets/updateLog.md'>更新日志<p><br><a href='https://kunfei.lanzoux.com/b0f7pt4hi'>蓝奏云丨点击下载<p><br><a href='https://www.90pan.com/o138703'>90云盘丨点击下载<p><br><a href='https://github.com/gedoor/MyBookshelf/releases'>GitHub丨点击下载\n❗️1、1、结束❗️\n❗️1、2、开始❗️\n<center><b><embed type=\"image/jpg\" src=\"http://ku.mumuceo.com/static/images/applogo/yuedu.png\" width=\"50\" height=\"50\"><br>阅读<p><a href='https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzIzMTc0NzE1MQ==&action=getalbum&album_id=1429936613618188289&scene=126#wechat_redirect'>使用教程、<a href='https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzIzMTc0NzE1MQ==&action=getalbum&album_id=1337256947799916544&scene=126#wechat_redirect'>书源分享、<a href='https://www.yuque.com/legado'>语雀官网、<a href='https://alanskycn.gitee.io/teachme'>规则描述</a><p><br><embed type=\"image/jpg\" src=\"http://mmbiz.qpic.cn/mmbiz_png/hpfMV8hEuL2eS6vnCxvTzoOiaCAibV6exBzJWq9xMic9xDg3YXAick87tsfafic0icRwkQ5ibV0bJ84JtSuxhPuEDVquA/0?wx_fmt=png\" width=\"50\" height=\"50\"><br>小说拾遗<p><a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI2MDg2NjAwMg==&action=getalbum&album_id=1319671603470581762&scene=173&subscene=91&sessionid=1619315396&enterid=1619315465&from_msgid=2247489143&from_itemidx=1&count=3&nolastread=1#wechat_redirect\">书单分享、<a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI2MDg2NjAwMg==&action=getalbum&album_id=1319666229510193155&scene=173&subscene=91&sessionid=1619315396&enterid=1619315479&from_msgid=2247489120&from_itemidx=1&count=3&nolastread=1#wechat_redirect\">潜力新书、<a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI2MDg2NjAwMg==&action=getalbum&album_id=1319668267623170050&scene=173&subscene=91&sessionid=1619315396&enterid=1619315441&from_msgid=2247489153&from_itemidx=1&count=3&nolastread=1#wechat_redirect\">完结小说、<a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?action=getalbum&album_id=1319675692849872897&__biz=MzI2MDg2NjAwMg==#wechat_redirect\">女频小说</a><p><br><embed type=\"image/jpg\" src=\"http://img.100weidu.com/weixin/head/MzI5NTA4NjgwNw==\" width=\"50\" height=\"50\"><br>赤戟的书荒救济所<p><a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI5NTA4NjgwNw==&action=getalbum&album_id=1319454340050157569&scene=173&subscene=91&sessionid=1619326853&enterid=1619327650&from_msgid=2647743292&from_itemidx=1&count=3&nolastread=1#wechat_redirect\" >网文推书、<a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI5NTA4NjgwNw==&action=getalbum&album_id=1319471313224040448&scene=173&subscene=91&sessionid=1619326853&enterid=1619326864&from_msgid=2647743197&from_itemidx=1&count=3&nolastread=1#wechat_redirect\" >澎湃精选、<a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI5NTA4NjgwNw==&action=getalbum&album_id=1526356920989712387&scene=173&subscene=91&sessionid=1619326853&enterid=1619327736&from_msgid=2647743086&from_itemidx=1&count=3&nolastread=1#wechat_redirect\" >年度盘点、<a href=\"https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI5NTA4NjgwNw==&action=getalbum&album_id=1333946780098330626&scene=173&subscene=91&sessionid=1619326853&enterid=1619327489&from_msgid=2647743307&from_itemidx=1&count=3&nolastread=1#wechat_redirect\" >网文杂谈</a><p><br><embed type=\"image/jpg\" src=\"链接\" width=\"50\" height=\"50\"><br>推书、寻书<p><a href='https://vt.sm.cn/api/novelStarReco/index?uc_param_str=dnntnwvepffrgibijbprsvdsdicheiniut#'><sup>精/</sup>星云寻书 <p><a href=\"https://quark.sm.cn/api/rest?method=Novelnew.home&format=html&schema=v2&gender=male&cate=全部&rank=rank_hot\"><sup>㊕</sup>夸克小说排行榜、<a href=\"https://www.douban.com/group/658662/discussion?start=0\"><sup>㊝</sup>豆瓣小说打分器<p><a href='https://www.yousuu.com'>优书网、<a href='https://www.tuishujun.com'>推书君、<a href='http://www.wencaijia.com'>书荒啦、<a href='https://www.basequan.com'>芭莳圈、<a href='https://www.qidiantu.com'>起点图</a><p>↓有登录需求↓<br><a href='http://www.saowen.net'>扫文小院、<a href='http://www.txtnovel.top'>书香门第、<a href='http://www.lkong.net'>龙空论坛\n❗️1、2、结束❗️\n❗️1、3、开始❗️\n<b><h3 style=\"color:#812424\" align=\"center\">📥丨朗读引擎&字体下载</h3><h4><details><summary>作者闲话</summary><br>21.4.30前找到的各朗读引擎\"最新\"版本分享整合<p>ps:除了(大声朗读)和(新大声朗读)<br>其他的引擎作者并没有体验过,不知道引擎能不能用,好不好用<p>pps:如果使用离线朗读,(讯飞相关引擎)'个人感觉'下一个<官方版本>的讯飞语记就行了<p>小爱朗读引擎据说只有小米手机才能听</details><p><br><details open><summary align=\"right\">【精品】引擎&字体</summary><center><br>Ag2S20150909<h4><a href='https://cdn.jsdelivr.net/gh/ag2s20150909/TTS@master/release'>【精】新大声朗读</a><p><br>渊呀<p><a href='https://pan.baidu.com/s/1SCxYdguzjcwUfPO1Ba-evg'>度盘: 8000字体丨点击下载</a><br>提取码 yuan<p><a href='http://m.fonts.net.cn'>网站: 字体天下<p><a href='www.zitiguanjia.com'>网站: Aa字库</a></details><p><br><details><summary>字体下载</summary><center><br>乐珣<p><a href='https://wws.lanzoux.com/b01hofuqj'>107字体丨点击下载</a><br>提取码 fgrw<p><br>人送匪号丶龙哥哥<p><a href='https://wws.lanzoux.com/iEn4ahq0s6h'>5个<font color='#812424'>拼音</font>字体丨点击下载</a><br>提取码 brcn<p><br>松屿<p><a href='https://pan.baidu.com/s/1h8j3TO3RXaZismRlpCtQ8g'>度盘: 409字体丨点击下载</a><br>提取码 wx03</details><p><br><details><summary align=\"right\">朗读引擎</summary><center><br>丨丨丨丨丨<p><a href='https://wwa.lanzoux.com/b05h5wbzg'>【精】大声朗读<br>0.8 21.4.28丨点击下载</a><br>提取码 readaloud<p><br>大雨打湿衣<p><a href='https://pan.baidu.com/s/1to6mfzpJ3CcvYjlo5k0xEw'>度盘: 谷歌&讯飞&度秘丨点击下载</a><br>提取码 9kcs</center><details><summary>Google文字转语音引擎</summary><center><br>已修改用戶名<p><a href='https://asun.lanzoux.com/tp/iMzSfn0kgva'>24.9.361717975(210316632)丨点击下载</a><p><br>亡灵诗人<p><a href='https://21sqw.lanzoux.com/ihnVvl1tn0j'>点击下载</a></details><br><details><summary>小爱语音引擎</summary><center><br>相爱不能见<p><a href='https://wwi.lanzoux.com/i7b8qo361yd'>小爱语音引擎1.2.8丨点击下载</a><p><br>亡灵诗人<p><a href='https://21sqw.lanzoux.com/iceGXkyoved'>点击下载</a></details><br><details><summary>度秘语音引擎</summary><center><br>LV老酱<p><a href='https://onecat.lanzoux.com/tp/iePPeim8gla'>3.0-1.0.15丨点击下载</a><p><br>阿卡比拉奇<p><a href='https://cloud.189.cn/t/FBRV3qArmY7r'>【下载需要登录天翼云账号】</a><br>提取码 g8j8<p><br>亡灵诗人<p><a href='https://21sqw.lanzoux.com/iUtqekyou3g'>分享1丨点击下载</a><p><a href='https://pan.baidu.com/s/1xRHwRsjDAgtLusrHvCOXUQ'>度盘: 分享2丨点击下载</a><br>提取码 xs3u</details><br><details><summary>讯飞相关引擎</summary><center><br>风雨满楼<p><a href='http://dl4.downname.com/apk/xunfeiyuji%20vip.apk'>讯飞语记 5.6.1301-会员版丨点击下载</a><p><br>云劲子<p><a href='https://cloud.189.cn/t/jqEruebUbiei'>【下载需要登录天翼云账号】</a><p><br>亡灵诗人<p><a href='https://21sqw.lanzoux.com/i2ilrcf'>讯飞语记去广告丨点击下载<p><a href='https://21sqw.lanzoux.com/iFxEqiwc1ra'>讯飞语音破解版丨点击下载<p><a href='https://21sqw.lanzoux.com/i2io1wh'>讯飞tts丨点击下载</details>\n❗️1、3、结束❗️\n❗️1、4、开始❗️\n<center><b><br>📥丨体验没那么好的下载网站整合<p><br><br><big>↓书籍下载↓</big><p><a href=\"https://m.txt8080.com\">80电子书、<a href=\"http://m.xshuyaya.cc\">YY电子书、<a href=\"https://m.xiaxs.la\">TXT小说、<a href=\"https://m.xbookben.com\">新书本<p><a href=\"https://m.kankezw.com\">奇书网、<a href=\"http://m.llskw.com\">来奇网、<a href=\"https://m.aoyetxt.com\"><sup>慢/</sup>熬夜电子书</a><p><a href=\"https://sobooks.cc\">SoBooks</a><br>下载按钮有点迷<p><a href=\"https://bks.thefuture.top\">THEFUTURE</a><br>加载慢<p><a href=\"https://m.baoshuu.com\">宝书网</a><br>和趣书网一个书库? 趣书的排版更好看<p><a href=\"http://www.jingjiaoba.com\">精校吧</a><br>不更新了丨城通网盘<p><br>↓有登录需求↓<br><a href=\"https://cloud.yuedu.pro\">阅读链、<a href=\"https://m.tianxilang.com\">添喜郎、<a href=\"http://www.1050qm.com/forum.php?forumlist=1&mobile=2\">阡陌居、<a href=\"https://www.goodepub.com\">星空书海</a><p><br>↓需要微信↓<br><a href=\"http://www.toplinks.cc\">淘链客<sup>需要扫码、<a href=\"https://www.jiumodiary.com\">鸠摩搜书<sup>需要扫码<h4><a href=\"https://ebook.huzerui.com\">熊猫搜书<sup>需要关注公众号</a><h4><br><br>↓PC端↓<br><a href=\"http://www.banshujiang.cn\">搬书匠、<a href=\"http://www.freexiaoshuo.com\">免费小说、<a href=\"http://www.pdfbook.cn\">云海图书馆<p><a href=\"http://www.haodoo.net\">好读<sup>加载慢、<a href=\"https://www.inien.com\">亿年书<sup>屏蔽移动<p><a href=\"http://www.dududog.com\">读读狗<sup>有登录需求</a><p><br>↓有付费需求↓<br><a href=\"https://www.qqszz.com\">千秋书在、<a href=\"http://www.txtnovel.top\">书香门第<sup>论坛<p><a href=\"http://fast8.com\">快吧软件<sup>PC端</sup>(早期分享的免费)</a><p><br>↓慎点: 代码跳网站↓<br><a href=\"https://m.kanbang.cc\">看帮网、<a href=\"http://m.xxqishu.com\">新奇书网、<a href=\"https://www.555x.org\">无限小说网<sup>屏蔽移动\n❗️1、4、结束❗️\n❗️1、5、开始❗️\n<center><b><br>导航&软件分组的不常用网站?<br>ps:感觉夜河&八神没啥名声就移到这了<p><br>↓导航网站整合↓<p><a href=\"http://zhiyun.han.cx/t/ca.html\"><sup>㊕ </sup>智云导航<p><a href=\"http://hao.uc.cn\">UC导航、<a href=\"http://h5.mse.360.cn\">360导航、<a href=\"http://dh.123.sogou.com\">搜狗导航<p><a href=\"http://www.016.cn\">016导航、<a href=\"https://www.24kdh.com\">24K导航、<a href=\"https://www.ak47s.cn\">AK47导航、<a href=\"https://m.bidianer.com\">笔点导航<p><a href=\"https://uz456.com\">UZ导航、<a href=\"http://m.hao123.com\">123导航、<a href=\"http://wap.1234wu.com\">123导航²、<a href='http://www.xinxiudh.com'>新秀导航</a><p><br>↓软件下载网站整合↓<p><a href=\"http://www.yehes.com/category/shouji\">夜河资源、<a href=\"http://zntx.org.cn/download/book_list.aspx?siteid=956&action=new\">八神论坛、<a href='https://domye.xyz'>软件推荐<p><a href=\"https://bbs.binmt.cc/forum.php?mod=forumdisplay&fid=52&filter=lastpost&orderby=lastpost\">MT论坛<sup>有登录及回复需求<p><a href=\"http://bbs.lieyou888.com/forum-115-0-0-1.html\">芥子空间<sup>PC端<p><a href=\"http://www.fast8.com/list/2_1.html\">快吧软件<sup>PC端</sup>有登录需求\n❗️1、5、结束❗️\n❗️1、6、开始❗️\n<center><b><br>不常用的在线工具<p><br>↓在线工具↓<p><a href=\"https://www.zixuephp.net/tool.html\">php自学、<a href=\"https://c.runoob.com\">菜鸟工具、<a href=\"https://tool.lu\">在线工具<p><a href=\"https://www.sojson.com\">SO JSON、<a href=\"http://www.jsons.cn/reg\">JSONS.CN、<a href=\"https://www.w3school.com.cn/tags/tag_a.asp\">W3school</a><p><br>↓? ? ?↓<p><a href='https://color.uisdc.com'>中国色彩、<a href='https://tool.mingdawoo.com'>近邻词汇<p><a href=\"https://lab.5ime.cn/video\">视频去水印、<a href='https://www.qyw0.com/tool/jiexi'>视频解析<p><a href=\"https://sou-yun.cn/STConvert.aspx\">繁简转换(搜韵)、<a href=\"https://www.acy.moe/sy\">兽音译者(喵呜版)</a><p><br>↓? ? ?↓<p><a href='https://music.xf1433.com'><sup>㊕</sup>音乐外链、<a href='https://search.chongbuluo.com'>资源搜索<sup>PC端<p><a href=\"http://www.gjw123.com\">123工具、<a href=\"http://tool.cccyun.cc\">彩虹工具、<a href=\"https://xhl97.cn\">小澎工具、<a href=\"https://tool.retiehe.com\">热铁盒<h4><a href=\"http://www.atoolbox.net\">一个工具箱<sup>有付费需求</a><p><br>↓网站检测↓<br><a href=\"https://gualemang.com\">网站挂了吗?(检测)、<a href=\"https://www.boce.com\">网站测速(PC端)</a><p><br>↓剪切板↓<br><a href=\"https://netcut.cn\">剪切板1、<a href=\"https://airportal.cn\">剪切板2、<a href=\"https://oc.to0l.cn\">剪切板3、<a href='https://txtpad.cn'>剪切板4</a><p><br>↓短网址↓<br><a href=\"https://4m.cn\">4M、<a href=\"https://www.ft12.com\">ft12、<a href=\"http://m.6du.in\">六度</a><p><br>↓图片相关↓<br><a href='http://www.uugai.com'>logo制作、<a href='https://ps.gaoding.com/sources/index.html'>在线PS<p><a href='https://www.sukoutu.com'>速抠图、<a href='http://matting.deeplor.com'>在线抠图<sup>PC端</a><p><br>↓图床↓<br><a href=\"https://www.hualigs.cn\">遇见、<a href=\"https://img.fghrsh.net\">Fghreh\n❗️1、6、结束❗️\n❗️1、7、开始❗️\n<center><b><br>不常用的无广影视网站<p><br>↓影视网站整合↓<br>\n<a href=\"http://www.bbbbbb.me\">思古导航</a><br>现在才三个影视网站,全安排了😘<p><a href=\"http://live.64ma.com\">CCTV:64码<p><a href=\"http://www.bimiacg.com\">哔咪动漫</a><p><br>↓各种剧↓<br><a href=\"https://m.hanjutv2020.com\">韩剧、<a href=\"https://m.taijutv.com\">泰剧、<a href=\"https://gimy.co\">gimy剧</a><p><br>↓???↓<br><a href=\"https://m.vodxc.in\">星辰、<a href=\"https://xn--tv-ks3d939o.xyz\">速影、<a href=\"https://www.novipnoad.com\">NO视频</a><p><br>↓数字影视↓<br><a href=\"https://m.88kan.com\">88影视、<a href=\"https://m.jjmeiju.com\">99美剧、<a href=\"https://329tv.net\">329影城</a><p><br>↓其他影视↓<br><a href=\"https://m.dyjihe.com\">电影集合、<a href=\"https://www.ku2000.com\">爱尚影视、<a href=\"https://www.kpkuang.com\">看片狂人、<a href=\"https://dsys.tv\">大师影视<p><a href=\"https://www.cupfox.com\">茶杯影视、<a href=\"http://m.zlyk.com\">周六影库、<a href=\"https://777tv.net\">小鸭影音、<a href=\"https://www.mayiyingshi.com\">蚂蚁影视\n❗️1、7、结束❗️\n❗️1、8、开始❗️\n<center><b><br>网盘&其他网站整合<br>ps:使用订阅会出现的网盘网站整理,加上几个分享书源的平台,一些不好分组的网站<p><br>↓网盘官网整合↓<br><a href=\"https://www.lanzoux.com\">蓝奏云、<a href=\"https:pan.baidu.com\">百度云<sup>PC端、<a href=\"https://cloud.189.cn\">天翼云<h4><a href=\"https://www.ctfile.com\">城通网盘、<a href=\"https://www.77file.com\">77file<sup>PC端、<a href=\"https://www.90pan.com\">90盘、<a href=\"https://www.wenshushu.cn\">文叔叔</a><p><br>↓书源分享平台?↓<br><a href=\"https://coding.net\">CODING、<a href=\"http://gitee.com\">Gitee</a><p><br>↓其他网站↓<br><a href=\"https://zh.wikihow.com/%E9%A6%96%E9%A1%B5\">Wiki How</a><br>基础指南<p><a href=\"https://yixi.tv/#\">一席</a><br>关于一些问题的探讨<p><a href=\"https://www.ear0.com\">EAR 聆</a><br>各种各样的声音<p><br>↓其他网站²↓<br><a href=\"https://bbs.tianya.cn/m/block.jsp?1493682600284\">天涯论坛<sup>定位尴尬<p><a href=\"https://xm.sb\">Pixiv ic<sup>加载慢、<a href=\"https://language.chinadaily.com.cn\">新闻资讯<sup>英文<p><a href=\"http://lackar.com/aa\">AnywhereAnything<sup>PC端<p><a href=\"https://oo1.win\">炫猿导航<sub>只是无法打开,网站没问题</a><p><br>↓搜索&翻译↓<p><a href=\"http://m.chinaso.com\">中国搜索、<a href=\"http://m.youdao.com\">有道翻译、<a href=\"https://translate.google.cn\">谷歌翻译、<a href=\"https://fanyi.baidu.com\">百度翻译</a><p><br>↓封面来源↓<p><a href=\"https://m.588ku.com\">千库网<p><a href=\"https://699pic.com\">摄图网<sup>手机端没有gif查看<p><a href=\"https://wap.ciweimao.com/setting/app_download_1\">刺猬猫の书籍封面<sup>点击下载\n❗️1、8、结束❗️\n❗️2、0、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@渊呀</h3><h5>链接支持长期订阅</h5><br><br><a href='yuedu://booksource/importonline?src=https://olixina.coding.net/p/yuedu/d/source/git/raw/master/bookSource.json?download=false'><marquee direction=up scrollamount=3 height=20 width=85px><center>刺猬猫<font color='#812424'>正版</font><br><br>书耽<font color='#812424'>正版</font><br><br><font color='#812424'>API</font>精品源</marquee>丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://olixina.coding.net/p/yuedu/d/source/git/raw/master/bookSource.json?download=false</details><h5 align=\"right\"><a href='https://www.coolapk.com/feed/25598515?shareKey=MTE0N2QxMjIzY2RhNjA1MmJhZGI~&shareUid=4339115&shareFrom=com.coolapk.market_11.0'>书源发布页<br>评论区有详细介绍</h5><a href='https://pan.baidu.com/s/1SCxYdguzjcwUfPO1Ba-evg'>8000字体丨点击下载</a><br>提取码 yuan\n❗️2、0、结束❗️\n❗️2、1、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@挚爱晚行</h3><h5>链接支持长期订阅</h5><br><br><a href='yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/bushixuanqi/book-source/%E5%85%A8%E7%BD%91%E9%80%9A%E7%94%A8.json'><marquee direction=up scrollamount=3 height=20 width=100px><center><font color='#812424'>全网</font>搜书<br><br><font color='#812424'>通用</font>书源</marquee>丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://cdn.jsdelivr.net/gh/bushixuanqi/book-source/%E5%85%A8%E7%BD%91%E9%80%9A%E7%94%A8.json<p></details><a href='yuedu://booksource/importonline?src=https://cdn.jsdelivr.net/gh/bushixuanqi/book-source/%E4%B9%A6%E6%BA%90%E5%90%88%E9%9B%86.json'>失效书源<font color='#812424'>修复</font>丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://cdn.jsdelivr.net/gh/bushixuanqi/book-source/%E4%B9%A6%E6%BA%90%E5%90%88%E9%9B%86.json\n❗️2、1、结束❗️\n❗️2、2、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@北半球左岸</h3><h5>链接支持长期订阅?</h5><br><br><a href='yuedu://rsssource/importonline?src=http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=819'><sup>订阅/</sup>仓库㊕㊝丨推书聚合丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=819<p></details><a href='https://wwa.lanzoui.com/b03hsmkbc'>订阅下载</a><br>提取码 tsjh<h5 align=\"right\"><a href='https://www.coolapk.com/feed/27029209?shareKey=M2YzYjI1NzQ1MjRiNjBiYjY4ODk~&shareUid=4339115&shareFrom=com.coolapk.market_11.2.3'>订阅发布页\n❗️2、2、结束❗️\n❗️2、3、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@关耳010225</h3><h5>链接支持长期订阅</h5><br><br><a href='https://b23.tv/av801826172/p1'>⭐丨书源的制作过程<sup>bilibili<h5><a href='https://guaner001125.gitee.io/html/index.html'>一个网站,一些东西</h5><br><a href='yuedu://booksource/importonline?src=https://guaner001125.coding.net/p/coding-code-guide/d/booksources/git/raw/master/sources/guaner.json'><marquee direction=up scrollamount=3 height=15 width=40px>女频<br>晋江<br>耽美</marquee>丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://guaner001125.coding.net/p/coding-code-guide/d/booksources/git/raw/master/sources/guaner.json<p></details><a href='yuedu://booksource/importonline?src=https://guaner001125.coding.net/p/coding-code-guide/d/booksources/git/raw/master/sources/guaner.txt'>旧版书源(阅读版本<21.7.7)导入<sup>不再更新</a><p><br><a href='yuedu://booksource/importonline?src=http://yck.mumuceo.com/d/17Dfg'>晋江<sup style=\"color:#812424\">API</sup>丨正版丨一键导入<p><br><a href='https://wwa.lanzoux.com/b05fs5ccd'>书源下载</a><br>提取码 guaner<p><br><a href='yuedu://rsssource/importonline?src=https://guaner001125.coding.net/p/coding-code-guide/d/booksources/git/raw/master/sources/guanerRSS.json'>一些订阅丨一键导入\n❗️2、3、结束❗️\n❗️2、4、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@haxc981</h3><h5>链接支持长期订阅</h5><br><br><a href='yuedu://booksource/importonline?src=https://haxc.coding.net/p/booksrc/d/booksrc/git/raw/master/Book3.0Source.json'>漫画源丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://haxc.coding.net/p/booksrc/d/booksrc/git/raw/master/Book3.0Source.json\n❗️2、4、结束❗️\n❗️2、5、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@破冰pobing</h3><h5>链接支持长期订阅</h5><br><br><a href='yuedu://booksource/importonline?src=https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/syhj.json'>自用源丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/syhj.json<p></details>\n<a href='yuedu://booksource/importonline?src=https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/50.json'>精选源丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/50.json<p></details>\n<a href='yuedu://booksource/importonline?src=https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/bqg.json'>笔趣阁丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/bqg.json<p></details>\n<a href='yuedu://booksource/importonline?src=https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/yshj.json'>有声源丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://pbpobing.coding.net/p/yueduyuan/d/sy/git/raw/master/yshj.json<p></details>\n<a href='yuedu://booksource/importonline?src=https://gitee.com/z507525872/book-source/raw/master/yshj.json'>有声源丨备用链接</a><details><summary align=\"right\"><h5>查看链接</summary>https://gitee.com/z507525872/book-source/raw/master/yshj.json\n❗️2、5、结束❗️\n❗️2、6、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@namoferr</h3><h5>链接支持长期订阅</h5><br><br><a href='yuedu://booksource/importonline?src=https://namofree.gitee.io/yuedu3/legado3_booksource_by_Namo.json'>精简源丨一键导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://namofree.gitee.io/yuedu3/legado3_booksource_by_Namo.json\n❗️2、6、结束❗️\n❗️2、7、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@onede</h3><p><br><br><a href='yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1626966311.json'>34精选源丨一键导入<sup>21.7.22\n❗️2、7、结束❗️\n❗️2、8、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@一程丶</h3><h5><a href='https://gitee.com/vpq/yd/blob/sy/README.md'>Gitee主页</h5><br><br><a href='yuedu://booksource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1627741986.json'>综合源*270丨导入<sup>21.7.30<p><br><a href='yuedu://rsssource/importonline?src=http://shuyuan.miaogongzi.net/shuyuan/1627682222.json'>订阅源*203丨导入<sup>21.7.30<p><br><a href='https://wwi.lanzoux.com/b05hl9sf'>书源&订阅丨下载\n❗️2、8、结束❗️\n❗️2、9、开始❗️\n<center><b><br><h3 style=\"color:#812424\">酷安@天域战歌</h3><h5>链接支持长期订阅</h5><br><br><a href='yuedu://booksource/importonline?src=https://tianyuzhange.coding.net/p/booksource/d/shuyuan/git/raw/master/2.0shuyuan.json'><big>2.0源</big>丨导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://tianyuzhange.coding.net/p/booksource/d/shuyuan/git/raw/master/2.0shuyuan.json<p></details><a href='yuedu://booksource/importonline?src=https://tianyuzhange.coding.net/p/booksource/d/shuyuan/git/raw/master/huahuo.json'><big>3.0源</big>丨导入</a><details><summary align=\"right\"><h5>查看链接</summary>https://tianyuzhange.coding.net/p/booksource/d/shuyuan/git/raw/master/huahuo.json<p></details><a href='https://tianyuzhange.lanzoui.com/iEBJgpcflyh'>1188(2.0源)丨下载<sup>21.5.23<p><br><a href='https://tianyuzhange.lanzoux.com/mimaweityzg'>🔞丨不可描述丨下载</a><br>提取码 tyzg\n❗️2、9、结束❗️\n───────── 分──割──线 ───\n{{}}\n<js>\nindex='{{$.index}}';\nif(index.match(/\\d+、\\d+、/)){\nreg=eval('/❗️'+index+'开始❗️[\\\\s\\\\S]+?❗️'+index+'结束❗️/g');\nreg2=eval('/❗️'+index+'..❗️/g');\nresult=result.match(reg)?result.match(reg)[0]:'<br/>'\nresult.replace(reg2,'')}else{result=''}\n</js>",
"ruleImage": "$.src",
"ruleLink": "$.index\n@js:\nif(!result.match(/^http/) && !result.match(/\\d+、\\d+、/)){\nresult=\"https://www.coolapk.com/link?url=\"+encodeURIComponent(result)\n}else{result=result}",
"ruleNextPage": "",
"rulePubDate": "$.intro",
"ruleTitle": "$.text",
"singleUrl": false,
"sortUrl": "📑 说明::http://www.baidu.com?wd=yuedu://rsssource/importonline?src=http://yck.mumuceo.com/yuedu/rssyuan/jsons?id=765【】《每周一不稳定更新(大概)》◎建议周二导入◎•0、0、【https://wimg.588ku.com/gif/21/03/19/41c5fc0e6c67b2228d5df88508ee909d.gif】《📑丨21.8.30》◎更新了啥?丨各种说明◎•0、1、【https://wimg.588ku.com/gif/20/05/12/d9570839ef490ff08d959625cd759e4b.gif】《💠丨玩转自定义》◎自定义扩展操作一览◎•https://m.w3cschool.cn/regex_rmjc/regex_rmjc-n5a328cn.html【】《💠丨正则表达式30分钟入门》◎◎\n\n\n📕 周更::http://www.baidu.com?wd=1、0、【https://wimg.588ku.com/gif/20/04/16/21266ce30e8c267b0b11bd6fcd0415a4.gif】《🌟丨书源整合-重构》◎ 整合向丨书源丨订阅丨其他丨周更?◎•3、0、【】《㊕ 如月流光》◎【酷安绝版】3000⁺精校源丨21.8.19◎•www.legado.top【】《🎉丨阅读官网》◎www.legado.top◎•http://yuedu.juhua.fun/tool【】《🛠️丨发现美化与正则匹配》◎http://yuedu.juhua.fun/tool◎•1、2、【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cDovL2hiaW1nLmh1YWJhbmltZy5jb20vYTE4OWYxYjdhYjlkOGFiZjg4NTA2NzczMDE1MjlhODFmNzI4ZWE1ZmUwOWE5LXkyQTJrc19mdzY1OA==&sign=yx:FvGQ7irtcKS9_L9OaBO1Wms7KVg=&tv=0_0】《📚丨推书,寻书》◎推书网站整合丨微信公众号◎•https://shouku123.com/suwako【】《📚丨小说网站整合》◎by 斯卡雷特家的一般通过妖精女仆◎\n\n\n🔎 常用::http://www.baidu.com?wd=http://www.wangdaxing.com【https://img95.699pic.com/photo/40140/9848.gif_wh860.gif】《🔎丨夸克导航》◎自带七大搜索引擎丨点击图标切换◎•https://bestming.gitee.io/search_tools/mobile.html【https://www.logoids.com/upload/2016-08/2/2016863364342115.gif】《🔎丨高级搜索》◎玩转百度引擎丨告别该死的广告◎•http://yck.mumuceo.com/yuedu/rssyuan/index.html【http://ku.mumuceo.com/static/images/applogo/yuedu.png】《🏚️丨源仓库[订阅]》◎yuedu/rssyuan/index.html◎•http://yck.mumuceo.com/yuedu/shuyuan/index.html【http://ku.mumuceo.com/static/images/applogo/yuedu.png】《🏚️丨源仓库[书源]》◎yuedu/shuyuan/index.html◎•http://yck.mumuceo.com/yuedu/theme/index.html【http://ku.mumuceo.com/static/images/applogo/yuedu.png】《🏚️丨源仓库[主题]》◎yuedu/theme/index.html◎•https://www.jianguoyun.com【https://th.bing.com/th/id/R18f5a341d646a6630dcd703a2da868a0?rik=Nw7LokW1Xwn%2ftA&riu=http%3a%2f%2fpic.baike.soso.com%2fugc%2fbaikepic2%2f27883%2f20170515133003-1667440676.jpg%2f300&ehk=0KvndMOp3VViGY48l%2f5BQVpFBfKRAijAVAzKvNd5nRs%3d&risl=&pid=ImgRaw】《☁️丨坚果 云备份》◎jianguoyun.com◎•http://mail.qq.com【https://th.bing.com/th/id/R5f68e8664922e36988ef1343a41c9089?rik=%2bT%2bLWjptKZ5cSw&riu=http%3a%2f%2fi1.qhimg.com%2fdr%2f270_500_%2ft019d84f1cf93e8c53d.png&ehk=hlFEFvp3DuZ9k%2bAYxRb%2feXDg6WTH4fWq%2fZ3mMOExeFQ%3d&risl=&pid=ImgRaw】《📭丨QQ邮箱》◎mail.qq.com◎\n\n\n📚 书源::http://www.baidu.com?wd=https://www.lanzoux.com/b0bw8jwoh【http://www.puhuajia.com/data/attachment/portal/201905/03/102949htrh3fpzwh3achff.jpg】《💠丨烏雲》◎ 替换丨净化◎•2、0、【https://wimg.588ku.com/gif/21/04/15/809b2cec0672919136ff6b1c19530acd.gif】《⭐丨渊呀》◎api精品源丨8000字体◎•2、1、【https://wimg.588ku.com/gif/20/11/11/03cabc6c6a4cb540cb2bf8d440091796.gif】《⭐丨不世玄奇》◎修复源丨全网搜书丨通用书源◎•2、2、【https://wimg.588ku.com/gif/21/04/15/09c17111ef8a7713656cd2b60de9f1c4.gif】《⭐丨北半球左岸》◎订阅源丨仓库㊕㊝丨悬浮窗の更多扩展◎•2、3、【https://img95.699pic.com/photo/40158/3822.gif_wh860.gif】《⭐丨关耳010225》◎ 女频向丨晋江丨耽美丨书源制作◎•2、4、【】《🎨丨haxc981》◎ 漫画源丨8.27更新◎•2、5、【】《🎧丨破冰6》◎ 有声源丨8.27更新◎•2、6、【】《📚丨namoferr》◎ 精简源丨主看起点丨8.30更新◎•2、7、【】《📚丨onede》◎ 精选源丨起点&晋江丨7.22更新◎•2、8、【】《📚丨一程丶》◎ 综合源丨订阅丨特殊丨7.30更新◎•2、9、【】《📚丨天域战歌》◎ 2.0源丨🔞丨1100⁺源丨7.25更新◎\n\n\n📥 下载::http://www.baidu.com?wd=1、1、【http://ku.mumuceo.com/static/images/applogo/yuedu.png】《🌟丨阅读下载》◎阅读3.0下载丨阅读2.0下载丨更新说明◎•1、3、【】《🌟丨朗读,字体》◎朗读引擎下载丨字体下载◎•1、4、【】《🌟丨其他下载》◎体验没那么好的下载网站◎•http://www.zxcs.me【】《⭐丨【精】知轩藏书》◎yyds丨屏蔽移动丨http://www.zxcs.me◎•https://m.zxcs.info【】《📥丨知轩藏书②》◎资源 77file盘丨https://m.zxcs.info◎•http://shuxiangjia.cn【】《🌏丨书享家》◎三个导航里最好用的?丨shuxiangjia.cn◎•https://bookfere.com/ebook【】《🌏丨书伴网》◎书籍下载网站导航丨bookfere.com◎•https://www.jioluo.com/9031/.html【】《🌏丨角落吧》◎书籍下载网站整合丨jioluo.com◎•https://www.iysw.net【】《📥丨万书网》◎🔞下载丨加载慢丨iysw.net◎•https://m.xiami88.com【】《📥丨虾米网》◎🔞下载丨屏蔽移动?丨和万书网一个排版,怀疑是同书库◎•https://m.qubook.net【】《📥丨趣书网》◎可能和宝书网同书库丨这个排版更好看◎•http://m.zei8.me【】《📥丨贼吧网》◎http://m.zei8.me◎•https://www.15huang.com【】《📥丨书荒网》◎https://www.15huang.com◎•https://www.shudan.vip/?btwaf=32683401&=1【】《📥丨书单网》◎https://www.shudan.vip/?btwaf=32683401&=1◎•https://pan.shudan.vip/list-1.html【】《📥丨书单网②》◎资源 城通网盘丨https://pan.shudan.vip/list-1.html◎•http://downnovel.com【】《📥丨Novel dl》◎http://downnovel.com◎•https://new.shuge.org【】《📥丨书格古籍》◎古籍丨https://new.shuge.org◎•https://cloud.189.cn/t/I7Fze2am2Azm【】《📥丨书格资源》◎资源 城通网盘丨https://cloud.189.cn/t/I7Fze2am2Azm◎•http://noveless.com【】《📥丨书荒部落》◎资源 城通网盘丨http://noveless.com◎•https://www.sxpdf.com【】《📥丨书行天下》◎https://www.sxpdf.com◎•https://m.zhijiandoukou.com【】《📥丨指尖豆蔻》◎https://m.zhijiandoukou.com◎•https://www.kgbook.com【】《📥丨苦瓜书盘》◎https://www.kgbook.com◎•http://m.44txt.com【】《📥丨思思电子书》◎http://m.44txt.com◎•https://www.aixdzs.com【】《📥丨爱下电子书》◎屏蔽移动丨下载在书籍页右上角◎•https://545c.com/dir/7823036-11625293-090948【】《📥丨图书馆资源》◎资源 城通网盘丨https://545c.com/dir/7823036-11625293-090948◎•https://cloud.189.cn/t/uAjqAjuyIzE3【】《📥丨出版社资源丨提取码 8vkr》◎资源 天翼云盘丨下载需要登录◎•https://sn9.us/dir/17192461-27868687-4e3441【】《📥丨掌阅,kindle,有声书籍》◎资源 城通网盘丨https://sn9.us◎\n\n\n🗂️ 软件::http://www.baidu.com?wd=1、5、【https://wimg.588ku.com/gif/20/12/04/be4e396db866fb261d9984d0d9ae135c.gif】《🌟丨导航,软件》◎不常用的导航&软件网站◎•https://dalao.ru【http://s2.zimgs.cn/ims?kt=url&at=smstruct&key=aHR0cHM6Ly9jLXNzbC5kdWl0YW5nLmNvbS91cGxvYWRzL2l0ZW0vMjAyMDAzLzI2LzIwMjAwMzI2MTEyNzA3X3V0bHNjLnRodW1iLjEwMDBfMC5qcGc=&sign=yx:V9ldJ6662lgI0dHWWIE-tqsYk-c=&tv=400_400】《⭐丨【精】不死鸟》◎https://iao.su丨https://dalao.ru◎•https://mailnav.cn【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cHM6Ly9pbWcuemNvb2wuY24vY29tbXVuaXR5LzAxODJhNTVkNmYyMDhhYTgwMTIxNzZkN2YxZGY4OS5qcGdAMTI4MHdfMWxfMm9fMTAwc2guanBn&sign=yx:qqfhAlJGi-HDpoNnqPqP7gWhwdU=&tv=0_0】《📬丨㊕邮箱大全》◎邮箱&网盘&域名网站导航丨mailnav.cn◎•http://guozhivip.com/rank【】《🌏丨㊕果汁排行》◎各知名平台热搜整合◎•http://m.ilxdh.com【】《🌏丨㊝龙轩导航》◎较为优秀的导航网站◎•http://nav.lazymovie.me【】《🌏丨懒人导航》◎可能需要关注公众号◎•http://lazyman.ys168.com【】《🗂️丨懒人资源》◎PC端丨需要关注公众号◎•https://axutongxue.com【】《🗂️丨阿虚同学》◎https://axutongxue.com◎•https://www.sixyin.com/mobile【】《🗂️丨六音软件》◎https://www.sixyin.com/mobile◎•http://www.yxssp.com/os/android/page/1【】《🗂️丨异星软件》◎http://www.yxssp.com/os/android/page/1◎•https://www.52pojie.cn/forum.php?mod=forumdisplay&fid=16&filter=lastpost&orderby=lastpost&typeid=232【】《🗂️丨吾爱破解》◎有登录需求丨https://www.52pojie.cn◎•https://www.ghpym.com/category/all/android【】《🗂️丨果核剥壳》◎https://www.ghpym.com/category/all/android◎\n\n\n🛠️ 工具::http://www.baidu.com?wd=1、6、【https://wimg.588ku.com/gif/21/04/27/175a5b33900bf3092d98e51d59140e45.gif】《🌟丨在线工具》◎不常用的在线工具网站◎•http://shuyuan.miaogongzi.site【https://wimg.588ku.com/gif/21/04/13/29145bc998b1a99f8b82525bc1ba14e5.gif】《🛠️丨【精】书源外链》◎单个书源/复数书源丨网络导入◎•https://pasteme.cn【https://wimg.588ku.com/gif/21/03/15/88ae1c24c59bced99fab4daab3cf898a.gif】《🛠️丨㊕PasteMe》◎单个书源丨复制粘贴导入◎•https://ykjtb.com/c【】《🛠️丨㊝一块剪切板(15分钟)》◎或许你只是需要15分钟的临时分享◎•https://www.yeyulingfeng.com【】《🛠️丨夜雨聆风》◎https://www.yeyulingfeng.com◎•https://web.woobx.cn【】《🛠️丨一个木函》◎知名网站?丨https://web.woobx.cn◎•https://uutool.cn【】《🛠️丨UU在线》◎https://uutool.cn◎•https://www.yinsiduanxin.com【】《🛠️丨短信接收》◎https://www.yinsiduanxin.com◎•https://yunduanxin.net【】《🛠️丨短信接收②》◎https://yunduanxin.net◎•http://zhiyun.han.cx/dx/index.php【】《🛠️丨短信轰炸》◎http://zhiyun.han.cx/dx/index.php◎•http://zhiyun.han.cx/sfz【】《🛠️丨随机身份证》◎随机获取一个真实身份证◎\n\n🎨 漫画::http://www.baidu.com?wd=http://www.6mh7.com【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cDovL2Itc3NsLmR1aXRhbmcuY29tL3VwbG9hZHMvaXRlbS8yMDE4MTAvMDQvMjAxODEwMDQxNTIyMzNfamFrbW0uanBn&sign=yx:cfWp5tfoFqOaLFbC40rhmVdSgsA=&tv=0_0】《🎨丨6 漫画》◎http://www.6mh7.com◎•http://qiman6.com【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cDovL2Mtc3NsLmR1aXRhbmcuY29tL3VwbG9hZHMvaXRlbS8yMDIwMDYvMDkvMjAyMDA2MDkxMDQyMjFfaXdram8udGh1bWIuMTAwMF8wLmpwZw==&sign=yx:fRerONru78K1W9BZADB9CKua6mw=&tv=0_0】《🎨丨奇漫屋》◎http://qiman6.com◎•https://m.dongmanmanhua.cn【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cDovL2Mtc3NsLmR1aXRhbmcuY29tL3VwbG9hZHMvaXRlbS8yMDE5MTAvMDUvMjAxOTEwMDUyMDE0NDRfdm1GSm4udGh1bWIuNzAwXzAuanBlZw==&sign=yx:5d7dd3jZae5ZnLkU3SdNdpPuoM8=&tv=0_0】《🎨丨咚漫漫画》◎https://m.dongmanmanhua.cn◎•http://www.migudm.cn【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cDovL2Mtc3NsLmR1aXRhbmcuY29tL3VwbG9hZHMvaXRlbS8yMDIwMDEvMDUvMjAyMDAxMDUyMTM3MjZfRnhmd2YudGh1bWIuNDAwXzAuanBlZw==&sign=yx:rPTKFpba4ps79_8iMIZuU77XmdM=&tv=0_0】《🎨丨咪咕漫画》◎http://www.migudm.cn◎•https://m.dmzj1.com【http://s2.zimgs.cn/ims?kt=url&at=ori&key=aHR0cDovL3BpYy5xaWFueWU4OC5jb20vNGtkb25nbWFuM2FjMmM2NjctNzMxMy0zOTRhLWEzZGQtODY2ODBjNzVkYzFiLmpwZw==&sign=yx:fTeigik9ZStiMJ5DGl-DpQa0bhE=&tv=0_0】《🎨丨动漫之家》◎知名网站丨注意❗代码跳网站◎•https://www.kukk.net【】《🎨丨酷看漫丨加载慢》◎https://www.kukk.net◎•http://m.damotu.com【】《🎨丨大魔兔丨加载慢》◎http://m.damotu.com◎•https://kanmanhuala.com【】《🎨丨漫画啦丨含特殊》◎https://kanmanhuala.com◎•http://www.gllmh.com【】《👻丨鬼罗丽丨灵异向》◎http://www.gllmh.com◎•http://www.biqug.org【】《🎨丨笔趣漫丨广告: A》◎http://www.biqug.org◎•https://www.qimiaomh.com【】《🎨丨奇妙漫丨广告: A⁻》◎https://www.qimiaomh.com◎•http://m.mhba123.com【】《🎨丨漫画吧丨广告: B⁺》◎http://m.mhba123.com◎\n\n📺 影视::http://www.baidu.com?wd=1、7、【https://wimg.588ku.com/gif/20/12/21/9436c6a25cceac167ab2274492748bab.gif】《🌟丨无广影视》◎不常用的无广影视网站◎•http://dev.rubaoo.com/TimeDiaryV2/s/Zzg=【】《🌏丨网址收藏》◎导航丨http://dev.rubaoo.com/TimeDiaryV2/s/Zzg◎•http://www.549.tv【】《🌏丨影视森林》◎导航丨http://www.549.tv◎•https://m.cctv.com【】《📺丨CCTV》◎官网丨https://m.cctv.com◎•http://www.yhdm.tv【】《📺丨樱花动漫》◎http://www.yhdm.tv◎•https://www.nfmovies.com【】《📺丨奈非影视》◎思古推荐丨加载广告◎•http://m.kuaikan66.com【】《📺丨快看影视》◎思古推荐丨注意广告◎•https://m.wydy8.com【】《📺丨万影网》◎思古推荐丨注意广告◎•http://www.halihali2.com【】《📺丨哈哩哈哩》◎http://www.halihali2.com◎•https://www.zhaikanys.com【】《📺丨宅看影视》◎https://www.zhaikanys.com◎\n\n\n🎧 有声::http://www.baidu.com?wd=http://zhiyun.han.cx/uc/yy.html【】《智云丨音乐频道》◎http://zhiyun.han.cx/uc/yy.html◎•https://tingbook.cc【】《🎧丨听书网》◎https://tingbook.cc◎•http://m.ychy.com【】《🎧丨海洋听书》◎http://m.ychy.com◎•http://m.ting74.com【】《🎧丨74听书丨PC端》◎http://m.ting74.com◎•https://i.y.qq.com/n2/m【】《🎶丨QQ音乐》◎榜单最全丨代码高频跳应用◎•http://m.kugou.com【】《🎶丨酷狗音乐》◎http://m.kugou.com◎•http://m.kuwo.cn【】《🎶丨酷我音乐》◎http://m.kuwo.cn◎•https://music.163.com【】《🎶丨网易云音乐》◎https://music.163.com◎\n\n🔞 特殊::http://www.baidu.com?wd=https://huaban.com/favorite/beauty【http://c1.kuangxiangit.com/uploads/allimg/c200722/22-07-20105224-92963-100187005.jpg】《🌆丨花瓣网》◎https://huaban.com/favorite/beauty◎•https://a7a7.net/meitu【http://c1.kuangxiangit.com/uploads/allimg/c201116/16-11-20175552-47532-100204645.jpg】《🌆丨阿七美图》◎https://a7a7.net/meitu◎•http://pic.sogou.com/pic/searchList.jsp?uID=&v=5&statref=index_form_1&spver=0&rcer=&keyword=%E7%BE%8E%E5%A5%B3【】《🌆丨搜狗图片》◎http://pic.sogou.com/pic◎•https://www.mh-mh.com【】《🎨丨看漫画网》◎https://www.mh-mh.com◎•https://manhua.zsh8.com【】《🎨丨芝士豪八》◎https://manhua.zsh8.com◎•https://18comic.bet【】《🎨丨禁漫天堂》◎屏蔽联通?◎•http://z.zy40.cn/z/sejso.php【】《📺丨智云视频》◎网站出了点问题丨无法观看?◎•http://lutu.me【】《📺丨鲁兔视频》◎网站出了点问题丨无法观看?◎•https://www.feixuew.com【】《📥丨飞雪娱乐(🗂️)》◎屏蔽联通◎•http://m.u9h.com/top.html【】《📥丨5G资源网(🎮)》◎http://m.u9h.com/top.html◎•http://m.121down.com/azgame/galgame【】《📥丨121手机站(🎮)》◎http://m.121down.com/azgame/galgame◎\n\n\n\n💠 其他::http://www.baidu.com?wd=1、8、【https://wimg.588ku.com/gif/21/02/22/4cce7f9a52da2a5fe4ae49d3b264d59f.gif】《🌟丨网盘,其他》◎不常用的网盘&其他网站◎•http://qk.lifves.com【https://wimg.588ku.com/gif/21/04/27/77753c90bf49d61840d7c04c904cefea.gif】《⭐丨【精】期刊杂志》◎http://qk.lifves.com◎•https://liumingye.github.io/quarkHomePage/index.html【https://img.aneeo.com/2019/04/28/5cc5a33cc4c4c.jpg】《🔎丨夸克浏览》◎〔夸克导航〕H5仿制版丨长按图标设置◎•https://www.yikm.net【】《🎮丨㊕在线游戏》◎yikm.net◎•https://dos.zczc.cz【】《🎮丨㊕在线游戏②》◎dos.zczc.cz◎•https://www.crazygames.com【】《🎮丨㊕在线游戏③》◎英文丨crazygames.com◎•http://h.4399.com/wap/xyxRank.htm【】《🎮丨㊝4399》◎h.4399.com◎•https://picrew.me【】《🎮丨画一下?丨加载慢》◎日文丨https://picrew.me◎•https://www.arealme.cn【】《💠丨小数据研究所》◎各种小测试丨https://www.arealme.cn◎•https://www.cbaigui.com【】《💠丨志异: 知妖》◎显示更新浏览器:取消→确定◎•https://quouyu.cn【】《💠丨聊天①》◎去偶遇丨【荐】正经人谁聊天氪金啊◎•https://crosst.chat/?加油【】《💠丨聊天②》◎十字街丨好像聊不了◎•http://www.nmliao.cn/randomdeskrynewj1hcwk.html?v=j1hcwk【】《💠丨聊天③》◎匿名聊天①◎•http://59.110.239.57:8889/chat?username=加油【】《💠丨聊天④》◎匿名聊天②◎",
"sourceComment": "",
"sourceGroup": "",
"sourceIcon": "http://images11.app.happyjuzi.com/5a/61/0c58b212bb72ecae6b28f188a0a1.gif!ac1.nw.gif",
"sourceName": "整合Pro⁺",
"sourceUrl": "网站整合 Pro⁺",
"style": "\n\n/*消除链接下划线*/\na{text-decoration: none;}\n\n\n/*去除details小三角及边框*/\ndetails summary::-webkit-details-marker { display:none; }\nsummary{outline:none;}\n\n\n/*div样式〔渐变〕*/\n.渐变{border: 1px solid; border-image: -webkit-linear-gradient(90deg,#6772FF, #51E2F7) 5 10;}\n\n\n/*div样式〔按钮〕*/\n.按钮{\n/*背景颜色和字体颜色*/\nbackground:#f2ecde; color:#622a1d;\n/*边框大小及颜色(上,左,右,下)*/\nborder-top:2px solid #dcdcdc;\nborder-left:2px solid #dcdcdc;\nborder-right:2px solid #a3a3a3;\nborder-bottom:2px solid #a3a3a3;\n/*阴影大小及颜色(下,右下,右)*/\nbox-shadow: 1px 0px 1px #404040;\n/*文字与边框的距离(左,右)*/\npadding-left:2px;\npadding-right:2px;\n/*圆角弧度*/\nborder-radius:10px;\n/*宽与高*/\nwidth:90%;\nheight:25px;\n/*文字居中*/\ntext-align: center;\n}\n\n\n/*div样式〔背景〕*/\n.背景{\n/*背景颜色*/\nbackground-color:#f2ecde;\n/*圆角弧度*/\nborder-radius:15px;\n/*边框大小及颜色*/\nborder:2px solid #622a1d;\n}"
},
{
"articleStyle": 0,
"customOrder": -24258,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "[email protected]",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "[email protected]@href",
"rulePubDate": "",
"ruleTitle": "[email protected]@text",
"singleUrl": false,
"sourceGroup": "📖 阅读",
"sourceIcon": "https://7nsts.w3cschool.cn/images/w3c/app-logo.png",
"sourceName": "正则表达式",
"sourceUrl": "https://www.w3cschool.cn/regex_rmjc/regex_rmjc-n5a328cn.html"
},
{
"articleStyle": 0,
"customOrder": -24257,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "class.inline1||class.articleLink2||class.navLink",
"ruleImage": "tag.img@src",
"ruleLink": "tag.a.0@href||href@js:\"https://sou-yun.cn/\"+result",
"ruleNextPage": "text.下一页@href",
"rulePubDate": "class.comment@text",
"ruleTitle": "tag.a.0@text",
"singleUrl": false,
"sortUrl": "全部类别::https://sou-yun.cn/AnalyzeCi.aspx\n诗词库::https://sou-yun.cn/PoemIndex.aspx?\n诗文观止::https://sou-yun.cn/PoemIndex.aspx?path=%e8%a9%a9%e6%96%87%e8%a7%80%e6%ad%a2\n典故::https://sou-yun.cn/PoemIndex.aspx?path=%e5%85%b8%e6%95%85\n唐诗::https://sou-yun.cn/PoemIndex.aspx?path=%e5%94%90%e8%a9%a9\n岁时::https://sou-yun.cn/PoemIndex.aspx?path=%e6%ad%b2%e6%99%82\n咏物::https://sou-yun.cn/PoemIndex.aspx?path=%e8%a9%a0%e7%89%a9\n当代::https://sou-yun.cn/PoemIndex.aspx?path=%e7%95%b6%e4%bb%a3\n人文地理::https://sou-yun.cn/PoemIndex.aspx?path=%e4%ba%ba%e6%96%87%e5%9c%b0%e7%90%86\n典故、词汇::https://sou-yun.cn/AllusionsIndex.aspx?sort=People",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://sou-yun.cn/images/publish.png",
"sourceName": "诗词",
"sourceUrl": "https://sou-yun.cn"
},
{
"articleStyle": 0,
"customOrder": -479,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "[email protected]",
"ruleContent": "<js>result</js>",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "tag.a@href",
"rulePubDate": "",
"ruleTitle": "tag.a@text",
"singleUrl": false,
"sortUrl": "【三洞真经】\n洞真上清经::http://www.daorenjia.com/c8\n洞玄灵宝经::http://www.daorenjia.com/c9\n洞神三皇经::http://www.daorenjia.com/c10\n三洞经教::http://www.daorenjia.com/c11\n【四辅真经】\n太平部诸经::http://www.daorenjia.com/c12\n太玄部经诀::http://www.daorenjia.com/c13\n正一部经籙::http://www.daorenjia.com/c14\n道德真经::http://www.daorenjia.com/c15\n四子真经::http://www.daorenjia.com/c16\n黄帝阴符经::http://www.daorenjia.com/c17\n道教易学::http://www.daorenjia.com/c18\n太清金丹经::http://www.daorenjia.com/c19\n太清摄养经::http://www.daorenjia.com/c20\n【道教论集】\n诸子文集::http://www.daorenjia.com/c21\n道学论著::http://www.daorenjia.com/c22\n全真文集::http://www.daorenjia.com/c23\n道教类书::http://www.daorenjia.com/c24\n【道法众术】\n道法诸经::http://www.daorenjia.com/c25\n道法总集::http://www.daorenjia.com/c26\n【道教科仪】\n科戒威仪::http://www.daorenjia.com/c27\n灵宝诸斋仪::http://www.daorenjia.com/c28\n灯仪法忏章表::http://www.daorenjia.com/c29\n【道史仙传】\n神仙高道传::http://www.daorenjia.com/c30\n仙境名山志::http://www.daorenjia.com/c31",
"sourceGroup": "📖 阅读",
"sourceIcon": "http://m.daorenjia.com/favicon.ico",
"sourceName": "道藏",
"sourceUrl": "http://www.daorenjia.com"
},
{
"articleStyle": 0,
"customOrder": -478,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".catalog a",
"ruleLink": "href",
"ruleTitle": "text",
"singleUrl": false,
"sortUrl": "易藏::http://www.daizhige.org/易藏/\n儒藏::http://www.daizhige.org/儒藏/\n道藏::http://www.daizhige.org/道藏/\n佛藏::http://www.daizhige.org/佛藏/\n子藏::http://www.daizhige.org/子藏/\n史藏::http://www.daizhige.org/史藏/\n诗藏::http://www.daizhige.org/诗藏/\n集藏::http://www.daizhige.org/集藏/\n医藏::http://www.daizhige.org/医藏/\n艺藏::http://www.daizhige.org/艺藏/\n🔎搜索::http://www.daizhige.org/result.php?query=",
"sourceGroup": "📖 阅读",
"sourceIcon": "http://www.daizhige.org/static/images/logo.jpeg",
"sourceName": "殆知阁",
"sourceUrl": "http://www.daizhige.org"
},
{
"articleStyle": 0,
"customOrder": -477,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "class.cat-post",
"ruleContent": "",
"ruleLink": "tag.a@href",
"ruleTitle": "tag.a@text",
"singleUrl": false,
"sortUrl": "鬼故事大全::https://www.guidaye.com/ggs/\n年级作文::https://www.guidaye.com/n/\n字数作文::https://www.guidaye.com/z/\n体裁作文::https://www.guidaye.com/t/\n话题作文::https://www.guidaye.com/h/\n命理知识::https://www.guidaye.com/ming/\n传统文化::https://www.guidaye.com/wenhua/\n故事会::https://www.guidaye.com/gsh/\n鬼吹灯::https://www.guidaye.com/guichuideng/\n盗墓笔记::https://www.guidaye.com/daomubiji/",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://p0.ssl.qhimgs1.com/dmt/80_80_/t01d23da61e324510da.jpg",
"sourceName": "鬼大爷",
"sourceUrl": "https://www.guidaye.com"
},
{
"articleStyle": 1,
"customOrder": -476,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "[email protected]",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "tag.mip-img@src",
"ruleLink": "[email protected]@href",
"ruleNextPage": "text.下一页@href",
"rulePubDate": "class.time@text",
"ruleTitle": "[email protected]@text",
"singleUrl": false,
"sortUrl": "二年级作文::http://www.yireaders.com/xiaoxue/ernianji/\n三年级作文::http://www.yireaders.com/xiaoxue/sannianji/\n四年级作文::http://www.yireaders.com/xiaoxue/sinianji/\n五年级作文::http://www.yireaders.com/xiaoxue/wunianji/\n六年级作文::http://www.yireaders.com/xiaoxue/liunianji/\n初一作文::http://www.yireaders.com/chuzhong/chuyi/\n初二作文::http://www.yireaders.com/chuzhong/chuer/\n初三作文::http://www.yireaders.com/chuzhong/chusan/\n高一作文::http://www.yireaders.com/gaozhong/gaoyi/\n高二作文::http://www.yireaders.com/gaozhong/gaoer/\n高三作文::http://www.yireaders.com/gaozhong/gaosan/\n写人作文::http://www.yireaders.com/xieren/\n写景作文::http://www.yireaders.com/xiejing/\n记叙作文::http://www.yireaders.com/jixu/\n话题作文::http://www.yireaders.com/ticai/huati/\n读后感::http://www.yireaders.com/ticai/duhougan/\n诗词鉴赏::http://www.yireaders.com/sucai/shici/\n成语释义::http://www.yireaders.com/sucai/chengyu/\n历史典故::http://www.yireaders.com/sucai/lishi/\n名人传记::http://www.yireaders.com/sucai/mingren/",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=927361823,1010673442&fm=26&gp=0.jpg",
"sourceName": "易读作文",
"sourceUrl": "http://www.yireaders.com",
"style": ""
},
{
"articleStyle": 1,
"customOrder": -475,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "class.submenu",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "[email protected]@src",
"ruleLink": "tag.a.0@href",
"ruleNextPage": "[email protected]@href",
"rulePubDate": "class.p_bz_rq@text##.+日期:",
"ruleTitle": "class.csc@text",
"singleUrl": false,
"sortUrl": "美文选粹::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=133&z=\n时文选粹::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=120&z=\n作文365::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=121&z=\n作文头条::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=119&z=\n读写计划::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=132&z=\n师说::http://www.jiaoshi100.com/index.php?m=content&c=index&a=lists&catid=122&z=",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1971586952,3598078305&fm=26&gp=0.jpg",
"sourceName": "作文指北",
"sourceUrl": "http://www.jiaoshi100.com"
},
{
"articleStyle": 0,
"customOrder": -474,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "📖 阅读",
"sourceIcon": "http://m.ndlib.cn/03/images/Defaulted_logo.png",
"sourceName": "移动阅读",
"sourceUrl": "http://m.ndlib.cn"
},
{
"articleStyle": 0,
"customOrder": -473,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "📖 阅读",
"sourceIcon": "https://m.hjgzf.com/static/ss_88wap/favicon.ico",
"sourceName": "海警学院",
"sourceUrl": "https://m.hjgzf.com"
},
{
"articleStyle": 0,
"customOrder": -472,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://www.lifves.com/favicon.ico",
"sourceName": "期刊杂志",
"sourceUrl": "http://new-qk.lifves.com",
"style": ""
},
{
"articleStyle": 0,
"customOrder": -471,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleImage": "",
"ruleLink": "",
"ruleNextPage": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://p0.ssl.qhimgs1.com/t013d5fde8baf3bf886.webp",
"sourceName": "纵观历史",
"sourceUrl": "http://m.zgls5000.net"
},
{
"articleStyle": 0,
"customOrder": -470,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".m-list li",
"ruleImage": "img@src",
"ruleLink": "a@href",
"ruleNextPage": ".next_p@href",
"rulePubDate": "dd@text",
"ruleTitle": "dt@text",
"singleUrl": true,
"sortUrl": "精选专题::https://m.gexingshuo.com/zt/\n好词好句::https://m.gexingshuo.com/haocihaoju/\n名人名言::https://m.gexingshuo.com/mingrenmingyan/\n签名大全::https://m.gexingshuo.com/qianmingdaquan/\n网名大全::https://m.gexingshuo.com/wangmingdaquan/\n十二星座::https://m.gexingshuo.com/jianzhi/\n养生知识::https://m.gexingshuo.com/chuangyexiangmu/\n说说大全::https://m.gexingshuo.com/shuoshuodaquan/\n心语大全::https://m.gexingshuo.com/xinyudaquan/\n范文大全::https://m.gexingshuo.com/fanwendaquan/\n话术大全::https://m.gexingshuo.com/huashudaquan/\n说说精选::https://m.gexingshuo.com/shuoshuojingxuan/\n作文大全::https://m.gexingshuo.com/zuowen/",
"sourceGroup": "📖 阅读",
"sourceIcon": "https://m.gexingshuo.com/favicon.ico",
"sourceName": "个性说网",
"sourceUrl": "https://m.gexingshuo.com"
},
{
"articleStyle": 0,
"customOrder": -469,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"ruleNextPage": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "📚 书单",
"sourceIcon": "https://p2.ssl.qhimgs1.com/t02051e6f5a84a25cfe.jpg",
"sourceName": "优书",
"sourceUrl": "https://www.yousuu.com"
},
{
"articleStyle": 0,
"customOrder": -468,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "dl a[href$='.html']",
"ruleContent": "<js>result</js>",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "href",
"rulePubDate": "",
"ruleTitle": "text",
"singleUrl": false,
"sourceGroup": "📚 书单",
"sourceIcon": "http://yck.mumuceo.com/favicon.ico",
"sourceName": "源仓库",
"sourceUrl": "http://yck.mumuceo.com"
},
{
"articleStyle": 0,
"customOrder": -456,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "class.tsj-book-item||class.tsj-article-summary",
"ruleContent": "",
"ruleImage": "img@data-src",
"ruleLink": "tag.a.0@href",
"rulePubDate": "{{@@tag.a.1@text}}{{@@tag.time@text}}",
"ruleTitle": "h3@text&&h2@text",
"singleUrl": false,
"sortUrl": "幼苗::https://www.tuishujun.com/newest-books\n新书::https://www.tuishujun.com/rank/newest\n连载::https://www.tuishujun.com/rank/unfinished\n完本::https://www.tuishujun.com/rank/finished\n文章::https://www.tuishujun.com/articles",
"sourceGroup": "📚 书单",
"sourceIcon": "https://m-youxiniao-com.mipcdn.com/i/s/imgo.youxiniao.com/img2019/12/4/9/2019120427733500_APP.png",
"sourceName": "推书君",
"sourceUrl": "https://www.tuishujun.com"
},
{
"articleStyle": 0,
"customOrder": -455,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleImage": "",
"ruleLink": "",
"ruleNextPage": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceComment": "//常用搜索词条\n精选\n推荐\n近期\n完本\n新书\n高分",
"sourceGroup": "📚 书单",
"sourceIcon": "http://mmbiz.qpic.cn/mmbiz_png/hpfMV8hEuL2eS6vnCxvTzoOiaCAibV6exBzJWq9xMic9xDg3YXAick87tsfafic0icRwkQ5ibV0bJ84JtSuxhPuEDVquA/0?wx_fmt=png",
"sourceName": "小说拾遗🔎搜索",
"sourceUrl": "https://data.newrank.cn/m/s.html?s=Py8yOTE5KDE4"
},
{
"articleStyle": 0,
"customOrder": -454,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "html",
"ruleContent": "",
"ruleImage": "link@href",
"ruleLink": "@js:result=baseUrl",
"rulePubDate": "@js:\n<!--自定义日期方法--!>\n<!--字符串yyyy/mm/dd转为xxxx年xx月xx日(星期x)-->\nfunction myFormat(str) {\nvar date = new Date(str);\nvar weeks = new Array(\"星期日\",\"星期一\",\"星期二\",\"星期三\",\"星期四\",\"星期五\",\"星期六\");\nvar week = weeks[date.getDay()];\r\nvar time = date.getFullYear()+\"年\"+(date.getMonth()+1)+\"月\"+date.getDate()+\"日\"+\" (\"+week+\")\"\nreturn time;\n}\n\n<!----------分割线----------->\n\nif(baseUrl.match(/vpq/)){\nvar time = \"{{@@class.contributor-description@text}}\";\nvar str = time.replace(/\\-/g,\"\\/\").match(/2.{9}/);\nresult = \"更新日期: \"+myFormat(str);\n}",
"ruleTitle": "title@text##.*·|-.*|\\s",
"singleUrl": false,
"sortUrl": "",
"sourceGroup": "📚 书单",
"sourceIcon": "http://image.coolapk.com/apk_logo/2020/0816/09/TIME688AAE59BBE20200317221959-256030-o_1efqfr9kg1r3eirb1e7p1o6r1lrgr-uid-440435@350x350.jpg",
"sourceName": "一程书源",
"sourceUrl": "https://www.gitee.com/vpq/yd/blob/sy/README.md",
"style": ""
},
{
"articleStyle": 0,
"customOrder": -453,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "📚 书单",
"sourceIcon": "https://ss3.bdstatic.com/70cFv8Sh_Q1YnxGkpoWK1HF6hhy/it/u=3355410905,1678408784&fm=26&gp=0.jpg",
"sourceName": "星云推书",
"sourceUrl": "https://vt.sm.cn/api/novelStarReco/index"
},
{
"articleStyle": 0,
"customOrder": -452,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "📚 书单",
"sourceIcon": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2437650703,2774959421&fm=26&gp=0.jpg",
"sourceName": "夸克榜单",
"sourceUrl": "https://quark.sm.cn/api/rest?method=Novelnew.home&format=html&schema=v2&gender=male&cate=%E5%85%A8%E9%83%A8&rank=rank_hot&pv=2420440"
},
{
"articleStyle": 0,
"customOrder": -451,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "📚 书单",
"sourceIcon": "https://b.bdstatic.com/searchbox/mappconsole/image/20190428/5f80011e-c126-4fd5-8d80-8f2cd3637544.png",
"sourceName": "百度榜单",
"sourceUrl": "https://m.baidu.com/sf?openapi=1&dspName=iphone&dsp=iphone&from_sf=1&pd=bookstore&resource_id=5077&type=2&card_id=5143&word=%E5%85%A8%E9%83%A8%E5%88%86%E7%B1%BB&title=%E6%9B%B4%E5%A4%9A%E6%8E%A8%E8%8D%90&tag1=%E5%85%A8%E9%83%A8%E5%88%86%E7%B1%BB&lid=11549307334103749569&referlid=11549307334103749569&ms=1&frsrcid=5143&frorder=4"
},
{
"articleStyle": 0,
"customOrder": -450,
"enableJs": false,
"enabled": true,
"loadWithBaseUrl": false,
"ruleArticles": ".listl2 li||.tj li",
"ruleContent": "",
"ruleImage": "tag.img@src",
"ruleLink": "tag.a.0@href",
"ruleNextPage": "text.下一页@href||text.后1页@href",
"rulePubDate": "{{@@tag.em@text}}{{@@textNodes}}##\\[|\\]",
"ruleTitle": "tag.a.0@text",
"singleUrl": false,
"sortUrl": "男生最新::https://m.baoshuu.com/book/recommend.asp?cid=1\n玄幻奇幻::https://www.baoshuu.com/TXT/list4_1.html\n武侠仙侠::https://www.baoshuu.com/TXT/list5_1.html\n都市重生::https://www.baoshuu.com/TXT/list6_1.html\n历史军事::https://www.baoshuu.com/TXT/list7_1.html\n恐怖推理::https://www.baoshuu.com/TXT/list8_1.html\n科幻网游::https://www.baoshuu.com/TXT/list9_1.html\n二次元::https://www.baoshuu.com/TXT/list25_1.html\n女生最新::https://m.baoshuu.com/book/recommend.asp?cid=2\n都市言情::https://www.baoshuu.com/TXT/list10_1.html\n古代言情::https://www.baoshuu.com/TXT/list11_1.html\n穿越重生::https://www.baoshuu.com/TXT/list12_1.html\n玄幻仙侠::https://www.baoshuu.com/TXT/list13_1.html\n青春同人::https://www.baoshuu.com/TXT/list14_1.html\n网游科幻::https://www.baoshuu.com/TXT/list15_1.html\n耽美最新::https://m.baoshuu.com/book/recommend.asp?cid=26\n现代耽美::https://www.baoshuu.com/TXT/list27_1.html\n古代架空::https://www.baoshuu.com/TXT/list28_1.html\n穿越重生::https://www.baoshuu.com/TXT/list29_1.html\n玄幻科幻::https://www.baoshuu.com/TXT/list30_1.html\nBL同人::https://www.baoshuu.com/TXT/list31_1.html\nGL百合::https://www.baoshuu.com/TXT/list32_1.html\n【合集】\n青春言情合集::https://www.baoshuu.com/TXT/list16_1.html\n武侠玄幻合集::https://www.baoshuu.com/TXT/list17_1.html\n恐怖推理合集::https://www.baoshuu.com/TXT/list18_1.html\n历史名著合集::https://www.baoshuu.com/TXT/list19_1.html\n耽美同人合集::https://www.baoshuu.com/TXT/list20_1.html\n其它热门合集::https://www.baoshuu.com/TXT/list22_1.html",
"sourceGroup": "📥 下载",
"sourceIcon": "https://img.7xdown.com/up/2006/202068152643.png",
"sourceName": "宝书",
"sourceUrl": "https://www.baoshuu.com"
},
{
"articleStyle": 0,
"customOrder": -440,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".cate-cms li||.xs-24",
"ruleImage": "img@data-original",
"ruleLink": "a@href",
"ruleNextPage": "[email protected]@href",
"rulePubDate": "{{@@.size@text}}·{{@@.info@text}}##\\|##·",
"ruleTitle": "h4@text||h3@text",
"singleUrl": false,
"sortUrl": "最新::https://www.15huang.com/style/new/\n推荐::https://www.15huang.com/style/5stars/\n书荒::https://www.15huang.com/shuhuang/\n玄幻奇幻::https://www.15huang.com/style/xhqh/\n武侠仙侠::https://www.15huang.com/style/wxxx/\n都市现实::https://www.15huang.com/style/dsxs/\n历史军事::https://www.15huang.com/style/lsjs/\n游戏体育::https://www.15huang.com/style/yxty/\n科幻灵异::https://www.15huang.com/style/khly\n其他类型::https://www.15huang.com/style/cyhx/\n古代言情::https://nv.15huang.com/gdyq/\n仙侠奇缘::https://nv.15huang.com/xxqy/\n现代言情::https://nv.15huang.com/xdyq/\n悬疑推理::https://nv.15huang.com/xytl/\n游戏竞技::https://nv.15huang.com/yxjj/\n科幻空间::https://nv.15huang.com/khkj/\n耽美同人::https://nv.15huang.com/dmtr/\n玄幻言情::https://nv.15huang.com/xhyq/\n浪漫青春::https://nv.15huang.com/lmqc/",
"sourceGroup": "📥 下载",
"sourceIcon": "https://www.15huang.com/favicon.ico",
"sourceName": "书荒",
"sourceUrl": "https://www.15huang.com"
},
{
"articleStyle": 0,
"customOrder": -439,
"enableJs": false,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".listtxt||h2",
"ruleContent": "",
"ruleLink": "tag.a@href",
"ruleNextPage": "text.下一页@href",
"rulePubDate": "{{@@tag.li.1@text}} {{@@tag.li.2@text}}",
"ruleTitle": "tag.a@text",
"singleUrl": false,
"sortUrl": "//在🔎搜索项“=”后面输入要找的内容,不能少于两个汉字。\n\n得分最高::https://m.iysw.net/gaofen.html\n🔎搜索::https://m.iysw.net/e/sch/index.php?keyboard=\n都市异能::https://m.iysw.net/dushi/\n言情小说::https://m.iysw.net/yq/\n穿越重生::https://m.iysw.net/mm/cy/\n乡村艳情::https://m.iysw.net/xy/\n武侠仙侠::https://m.iysw.net/wx/\n玄幻修真::https://m.iysw.net/xh/\n游戏竞技::https://m.iysw.net/wy/\n科幻末世::https://m.iysw.net/kh/\n恐怖灵异::https://m.iysw.net/kb/\n侦探推理::https://m.iysw.net/zt/\n历史军事::https://m.iysw.net/ls/\n耽美小说::https://m.iysw.net/mm/dm/\n其他类型::https://m.iysw.net/qita/\n【文学名著】\n严肃小说::https://m.iysw.net/wenxue/yansu/\n畅销图书::https://m.iysw.net/wenxue/changxiao/\n青春文学::https://m.iysw.net/wenxue/et/\n宦海官场::https://m.iysw.net/wenxue/gc/\n传记纪实::https://m.iysw.net/wenxue/zhuanji/\n现代文学::https://m.iysw.net/wenxue/xiandai/\n传统武侠::https://m.iysw.net/wenxue/wxmj/\n期刊杂志::https://m.iysw.net/wenxue/xz/\n世界名著::https://m.iysw.net/wenxue/sjmz/\n古代文学::https://m.iysw.net/wenxue/gd/\n当代文学::https://m.iysw.net/wenxue/dangdai/\n经管励志::https://m.iysw.net/wenxue/jg/\n名家言情::https://m.iysw.net/wenxue/yqxs/",
"sourceGroup": "📥 下载",
"sourceIcon": "https://m.iysw.net/favicon.ico",
"sourceName": "万书",
"sourceUrl": "https://m.iysw.net"
},
{
"articleStyle": 0,
"customOrder": -438,
"enableJs": false,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".wc3 li",
"ruleLink": "a@href",
"ruleNextPage": "text.下一页@href",
"rulePubDate": "人气:{{@@tag.span.0@text}} · 大小:{{@@tag.span.1@text}}",
"ruleTitle": "a@text",
"singleUrl": false,
"sortUrl": "东方玄幻::https://m.zei8.me/xuanhuan\n传统武侠::https://m.zei8.me/chuantongwuxia\n恐怖惊悚::https://m.zei8.me/kongbujing\n现代都市::https://m.zei8.me/xiandaidushi\n人物传记::https://m.zei8.me/renwuchuanji\n网游动漫::https://m.zei8.me/wangyoudongman\n军事历史::https://m.zei8.me/junshilishi\n热点资源::https://m.zei8.me/redianziyuan\n西方奇幻::https://m.zei8.me/xifangqihuan\n仙侠修真::https://m.zei8.me/xianxiaxiuzhen\n侦探推理::https://m.zei8.me/zhentantuili\n经典科幻::https://m.zei8.me/jingdiankehuan\n名著杂志::https://m.zei8.me/mingzhuzazhi\n历史穿越::https://m.zei8.me/lishichuanyue\n传统言情::https://m.zei8.me/chuantongyanqing\n都市社会::https://m.zei8.me/dushishehui\n幻想现言::https://m.zei8.me/huanxiangxianyan\n耽美百合::https://m.zei8.me/danmeibaihe",
"sourceGroup": "📥 下载",
"sourceIcon": "https://tse1-mm.cn.bing.net/th/id/OIP-C.-aFdxcsvUb_2C_YJK7uYHAAAAA?w=150&h=150&c=7&o=5&dpr=3&pid=1.7",
"sourceName": "贼吧",
"sourceUrl": "https://m.zei8.me"
},
{
"articleStyle": 0,
"customOrder": -437,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".sub-menu li",
"ruleImage": "",
"ruleLink": "a@href",
"ruleNextPage": "",
"rulePubDate": "",
"ruleTitle": "a@text",
"singleUrl": false,
"sortUrl": "",
"sourceGroup": "📥 下载",
"sourceIcon": "https://www.qiantxt.com/wp-content/themes/Kratos-master/images/favicon.ico",
"sourceName": "千书",
"sourceUrl": "https://www.qiantxt.com"
},
{
"articleStyle": 0,
"customOrder": -436,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": ".col-xs-6",
"ruleDescription": "",
"ruleImage": "img@data-original",
"ruleLink": "h2 a@href",
"ruleNextPage": ".next@href",
"rulePubDate": "{{@@tag.a.1@text}} · {{@@time@text}}",
"ruleTitle": "h2@text",
"singleUrl": false,
"sortUrl": "🔎搜索::https://www.jingjiaoba.com/?s=\n都市::https://www.jingjiaoba.com/du-shi-yu-le/jing-xiao-du-shi\n娱乐::https://www.jingjiaoba.com/du-shi-yu-le/jing-xiao-yu-le\n奇幻::https://www.jingjiaoba.com/qi-huan-xuan-huan/jing-xiao-qi-huan\n玄幻::https://www.jingjiaoba.com/qi-huan-xuan-huan/jing-xiao-xuan-huan\n武侠::https://www.jingjiaoba.com/wu-xia-xian-xia/jing-xiao-wu-xia\n仙侠::https://www.jingjiaoba.com/wu-xia-xian-xia/jing-xiao-xian-xia\n竞技::https://www.jingjiaoba.com/jing-ji-you-xi/jing-xiao-jing-ji\n游戏::https://www.jingjiaoba.com/jing-ji-you-xi/jing-xiao-you-xi\n科幻::https://www.jingjiaoba.com/ke-huan-ling-yi/jing-xiao-ke-huan\n灵异::https://www.jingjiaoba.com/ke-huan-ling-yi/jing-xiao-ling-yi\n历史::https://www.jingjiaoba.com/li-shi-jun-shi/jing-xiao-li-shi\n军事::https://www.jingjiaoba.com/li-shi-jun-shi/jing-xiao-jun-shi\n百合::https://www.jingjiaoba.com/bai-he-dan-mei/bai-he-xiao-shuo\n耽美::https://www.jingjiaoba.com/bai-he-dan-mei/dan-mei-xiao-shuo\n言情::https://www.jingjiaoba.com/nv-sheng-shi-ti/nv-sheng-yan-qing\n实体::https://www.jingjiaoba.com/nv-sheng-shi-ti/jing-xiao-shi-ti\n次元::https://www.jingjiaoba.com/jing-xiao-er-ci-yuan",
"sourceGroup": "📥 下载",
"sourceIcon": "https://www.jingjiaoba.com/wp-content/themes/Cute/assets/img/favicon.ico",
"sourceName": "精校吧",
"sourceUrl": "https://www.jingjiaoba.com"
},
{
"articleStyle": 0,
"customOrder": -435,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".mipui-category-list-item",
"ruleDescription": "",
"ruleImage": "mip-img@src",
"ruleLink": "h4 a@href",
"ruleNextPage": "[email protected]@href",
"rulePubDate": "span@text",
"ruleTitle": "h4@text",
"singleUrl": false,
"sortUrl": "最新::https://www.downtxts.com/\n🔎搜索::https://www.downtxts.com/search?q=\n玄幻::https://www.downtxts.com/article/xuanhuan/\n武侠::https://www.downtxts.com/article/wuxia/\n都市::https://www.downtxts.com/article/dushi/\n言情::https://www.downtxts.com/article/yanqing/\n经典::https://www.downtxts.com/article/jingdian/\n历史::https://www.downtxts.com/article/lishi/\n科幻::https://www.downtxts.com/article/kehuan/\n惊悚::https://www.downtxts.com/article/jingsong/\n网游::https://www.downtxts.com/article/wangyou/",
"sourceGroup": "📥 下载",
"sourceIcon": "https://www.downtxts.com/favicon.ico",
"sourceName": "TXT下载",
"sourceUrl": "https://www.downtxts.com"
},
{
"articleStyle": 0,
"customOrder": -434,
"enableJs": true,
"enabled": true,
"header": "{\n \"User-Agent\": \"Mozilla/5.0 (Linux; Android 8.0.0; MIX 2 Build/OPR1.170623.027) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 YaBrowser/18.9.1.2199.00 Mobile Safari/537.36\"\n}",
"loadWithBaseUrl": true,
"ruleArticles": "#m li",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "a@href",
"ruleNextPage": "#diypage@a@href||text.下一页@href",
"rulePubDate": "{{@@a@text}} · {{@@span@text}}##.*作者.",
"ruleTitle": "a@text##\\《|\\》.*",
"singleUrl": false,
"sortUrl": "//请在🔎搜索栏的“=”后面输入要找的内容\n最新::http://www.zxcs.me/\n🔎搜索::http://www.zxcs.me/?keyword=\n都市::http://www.zxcs.me/sort/23\n武侠::http://www.zxcs.me/sort/36\n仙侠::http://www.zxcs.me/sort/37\n奇幻::http://www.zxcs.me/sort/38\n玄幻::http://www.zxcs.me/sort/39\n科幻::http://www.zxcs.me/sort/40\n灵异::http://www.zxcs.me/sort/41\n历史::http://www.zxcs.me/sort/42\n军事::http://www.zxcs.me/sort/43\n竞技::http://www.zxcs.me/sort/44\n游戏::http://www.zxcs.me/sort/45\n二次::http://www.zxcs.me/sort/55",
"sourceGroup": "📥 下载",
"sourceIcon": "https://p0.ssl.qhimgs1.com/t01a23700d1ec74918a.png",
"sourceName": "知轩藏书",
"sourceUrl": "http://www.zxcs.me"
},
{
"articleStyle": 0,
"customOrder": -433,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "📥 下载",
"sourceIcon": "https://sf3-ttcdn-tos.pstatp.com/obj/labis/80479409c0f77b09a5c1855522196e7c",
"sourceName": "知轩精校",
"sourceUrl": "https://m.zxcs.info"
},
{
"articleStyle": 0,
"customOrder": -432,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "[email protected]",
"ruleContent": "",
"ruleImage": "tag.img@src",
"ruleLink": "tag.a@href",
"ruleNextPage": "id.pt_next@href",
"rulePubDate": "{{@@tag.p.1@text}} · {{@@tag.p.2@text}} · {{@@tag.p.3@text}}##作者.|大小.|更新.",
"ruleTitle": "tag.p.0@text",
"singleUrl": false,
"sortUrl": "最新::http://m.xxqishu.com/newbook/\n玄幻奇幻::http://m.xxqishu.com/xuanhuan/\n武侠仙侠::http://m.xxqishu.com/xianxia/\n女频言情::http://m.xxqishu.com/yanqing/\n现代都市::http://m.xxqishu.com/dushi/\n历史军事::http://m.xxqishu.com/lishi/\n游戏竞技::http://m.xxqishu.com/youxi/\n科幻灵异::http://m.xxqishu.com/kehuan/\n美文同人::http://m.xxqishu.com/meiwen/\n精校::http://m.xxqishu.com/jingjiao/",
"sourceGroup": "📥 下载",
"sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1034123361,3171804368&fm=26&gp=0.jpg",
"sourceName": "新奇书网",
"sourceUrl": "http://m.xxqishu.com",
"style": ""
},
{
"articleStyle": 0,
"customOrder": -431,
"enableJs": false,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": ".excerpt",
"ruleImage": "img@data-original",
"ruleLink": "h2 a@href",
"ruleNextPage": ".next-page a@href",
"rulePubDate": "",
"ruleTitle": "h2@text",
"singleUrl": false,
"sortUrl": "最新::https://noveless.com/\n🔎搜索::https://noveless.com/?s=\n玄幻奇幻::https://noveless.com/alltext/fantasy\n科幻灵异::https://noveless.com/alltext/sci-fi\n网游竞技::https://noveless.com/alltext/game\n都市娱乐::https://noveless.com/alltext/city\n历史军事::https://noveless.com/alltext/history\n重生穿越::https://noveless.com/alltext/reborn\n女生言情::https://noveless.com/alltext/%e8%a8%80%e6%83%85%e5%b0%8f%e8%af%b4",
"sourceGroup": "📥 下载",
"sourceIcon": "https://noveless.com/favicon.ico",
"sourceName": "书荒部落",
"sourceUrl": "https://noveless.com"
},
{
"articleStyle": 0,
"customOrder": -430,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": false,
"ruleArticles": "@js:var javaImport = new JavaImporter();\njavaImport.importPackage(\n Packages.java.util\n);\nwith(javaImport){\n function ss(t,k,fid,uid){\n var h=new HashMap();\nh.put('referer','https://kunfei.lanzoui.com/')\nh.put('Accept-Language','zh-CN,zh;q=0.9')\nh.put('content-type','application/x-www-form-urlencoded')\n\n var bd ='lx=2&fid='+fid+'&uid='+uid+'&pg=1&rep=0&t='+t+'&k='+k+'&up=1'\njava.log(bd)\n var js1=java.post('https://kunfei.lanzoui.com/filemoreajax.php',String(bd),h).body();\njava.log(js1);\nreturn js1\n }\n}\n\nresult=result.replace(/[\\r\\n]/g,' ');\n//java.log(result)\nvar m=result.match(/ '(\\d+)';.*?var i.*? = '(.*?)';.*?pgs/);\nvar m2=result.match(/'fid':(\\d+),.*?'uid':'(\\d+)',/)\nvar t=m[1];\nvar k=m[2]\nvar fid=m2[1]\nvar uid=m2[2]\ndata=[]\njava.log(k)\njava.log(m2)\nvar j=JSON.parse(ss(t,k,fid,uid))['text']\nfor(i=0;i<j.length;i++){\ndata.push(JSON.stringify(j[i]))\n}\ndata",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "@js:'https://kunfei.lanzoui.com/tp/'+java.getString('$.id')",
"rulePubDate": "@js:java.getString('$.time')+' '+java.getString('$.size')",
"ruleTitle": "$.name_all",
"singleUrl": false,
"sortUrl": "阅读2.0(正式版)::https://kunfei.lanzoui.com/b0f7pt4hi\n阅读3.0(正式版)::https://kunfei.lanzoui.com/b0f7pt4ja\n阅读3.0(测试版)::https://kunfei.lanzoui.com/b0f810h4b",
"sourceGroup": "📥 下载",
"sourceIcon": "http://image.coolapk.com/apk_logo/2020/0816/09/TIME688AAE59BBE20200317221959-256030-o_1efqfr9kg1r3eirb1e7p1o6r1lrgr-uid-440435@350x350.jpg",
"sourceName": "阅读下载",
"sourceUrl": "https://kunfei.lanzoui.com/b0f810h4b"
},
{
"articleStyle": 0,
"customOrder": -418,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "〽️ 创意",
"sourceIcon": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2493829930,2242002218&fm=26&gp=0.jpg",
"sourceName": "花瓣",
"sourceUrl": "https://huaban.com"
},
{
"articleStyle": 0,
"customOrder": -417,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "〽️ 创意",
"sourceIcon": "https://p.ssl.qhimg.com/dmsmflm/318_210_/ss/40_130/t01fd769330483feaa4.png",
"sourceName": "优设",
"sourceUrl": "https://www.uisdc.com"
},
{
"articleStyle": 0,
"customOrder": -416,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "〽️ 创意",
"sourceIcon": "https://pic.topys.cn/editor/20190514/870545190.png",
"sourceName": "TOPYS",
"sourceUrl": "https://m.topys.cn"
},
{
"articleStyle": 0,
"customOrder": -415,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "〽️ 创意",
"sourceIcon": "https://bkimg.cdn.bcebos.com/pic/80cb39dbb6fd5266b9277876a918972bd4073647?x-bce-process=image/resize,m_lfit,h_700,limit_1/quality,Q_80",
"sourceName": "胶片的味道",
"sourceUrl": "http://letsfilm.org"
},
{
"articleStyle": 0,
"customOrder": -410,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "✏️ 设计",
"sourceIcon": "https://c-ssl.duitang.com/uploads/people/201908/23/20190823164218_8ZA3v.png",
"sourceName": "堆糖",
"sourceUrl": "https://m.duitang.com"
},
{
"articleStyle": 0,
"customOrder": -409,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "✏️ 设计",
"sourceIcon": "https://www.shejipi.com/wp-content/themes/shejipi/favicon.png",
"sourceName": "设计癖",
"sourceUrl": "https://www.shejipi.com"
},
{
"articleStyle": 0,
"customOrder": -408,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "✏️ 设计",
"sourceIcon": "http://site.xueui.cn/wp-content/uploads/2018/08/xueui.png",
"sourceName": "学UI网",
"sourceUrl": "http://www.xueui.cn"
},
{
"articleStyle": 0,
"customOrder": -404,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"ruleNextPage": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "🌏 图文",
"sourceIcon": "http://cdn.jandan.net/static/img/icon.png",
"sourceName": "煎蛋",
"sourceUrl": "http://jandan.net/pic"
},
{
"articleStyle": 0,
"customOrder": -403,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "🌏 图文",
"sourceIcon": "https://cdn2.jianshu.io/assets/web/misc-logo-805143ddec2e594416e891df316a73a7.png",
"sourceName": "简书",
"sourceUrl": "https://www.jianshu.com"
},
{
"articleStyle": 1,
"customOrder": -402,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "class.item-issue!-1:-2@div!0:-1",
"ruleContent": "class.text-detail@html&&class.picture-detail@html@js:\"<a href=\"+baseUrl+\">原文地址<a>\"+result",
"ruleImage": "tag.img@src",
"ruleLink": "class.div-link@href",
"rulePubDate": "@js:if(String(result).match(/issue-article/)){a=String(result).match(/作者([^<]+)</);result=\"文章·\"+a[1]}else{if(String(result).match(/issue-picture/)){a=String(result).match(/class=\"date\">([^\"]+)<span class=\"issue-no\">([^\"]+)<\\/span>/);\nresult=\"图文·\"+a[1]+a[2]}else{result=\"问答\"}}",
"ruleTitle": "class.text-content-short@text||class.text-title@text##作者.*",
"singleUrl": false,
"sortUrl": "",
"sourceGroup": "🌏 图文",
"sourceIcon": "http://image.wufazhuce.com/apple-touch-icon.png",
"sourceName": "一个",
"sourceUrl": "http://m.wufazhuce.com/index"
},
{
"articleStyle": 0,
"customOrder": -401,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "🌏 图文",
"sourceIcon": "https://meiriyiwen.com/images/apple-icon.png",
"sourceName": "每日一文",
"sourceUrl": "https://meiriyiwen.com"
},
{
"articleStyle": 0,
"customOrder": -400,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "🌏 图文",
"sourceIcon": "https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=3760152525,4216272517&fm=26&gp=0.jpg",
"sourceName": "博海拾贝",
"sourceUrl": "https://bh.sb"
},
{
"articleStyle": 0,
"customOrder": -399,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "🌏 图文",
"sourceIcon": "https://tva2.sinaimg.cn/crop.0.0.1022.1022.180/86a0fb66gw1ejiypfeb9mj20sg0sgadt.jpg",
"sourceName": "中华珍宝",
"sourceUrl": "http://g2.ltfc.net"
},
{
"articleStyle": 0,
"customOrder": -392,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "🌐 新闻",
"sourceIcon": "http://47.105.79.245/netease.jpg",
"sourceName": "网易",
"sourceUrl": "https://3g.163.com/main"
},
{
"articleStyle": 0,
"customOrder": -391,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "http://www.gov.cn/govweb/xhtml/2016gov/images/public/logo.jpg",
"sourceName": "国务院",
"sourceUrl": "http://www.gov.cn"
},
{
"articleStyle": 0,
"customOrder": -390,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"ruleNextPage": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://p5.img.cctvpic.com/photoAlbum/templet/common/DEPA1604367490409644/logonew190218.jpg",
"sourceName": "央视网",
"sourceUrl": "https://m.cctv.com"
},
{
"articleStyle": 0,
"customOrder": -389,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "http://m.people.cn/img/WIRELESS/2016/06/218/images/tip-logo.png",
"sourceName": "人民网",
"sourceUrl": "http://m.people.cn"
},
{
"articleStyle": 0,
"customOrder": -388,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "http://47.105.79.245/nfw.png",
"sourceName": "南方网",
"sourceUrl": "http://www.southcn.com"
},
{
"articleStyle": 0,
"customOrder": -387,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://n.sinaimg.cn/default/80905340/20200331/sinalogo.png",
"sourceName": "新浪网",
"sourceUrl": "https://sina.cn"
},
{
"articleStyle": 0,
"customOrder": -386,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "http://47.105.79.245/guancha.jpg",
"sourceName": "观察者",
"sourceUrl": "https://m.guancha.cn"
},
{
"articleStyle": 0,
"customOrder": -385,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://p0.ssl.qhimgs1.com/t025076f8584480d390.jpg",
"sourceName": "联合国",
"sourceUrl": "https://www.un.org/zh/"
},
{
"articleStyle": 0,
"customOrder": -384,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"singleUrl": true,
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=838111592,1726027923&fm=26&gp=0.jpg",
"sourceName": "环球网",
"sourceUrl": "https://www.huanqiu.com"
},
{
"articleStyle": 0,
"customOrder": -383,
"enableJs": true,
"enabled": true,
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://file.thepaper.cn/wap/v3/img/deskicon.png",
"sourceName": "澎湃新闻",
"sourceUrl": "https://m.thepaper.cn"
},
{
"articleStyle": 0,
"customOrder": -382,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://p3.ssl.qhimgs1.com/t01b3884c2667659e59.gif",
"sourceName": "百度风云",
"sourceUrl": "http://top.baidu.com"
},
{
"articleStyle": 0,
"customOrder": -381,
"enableJs": true,
"enabled": true,
"header": "",
"loadWithBaseUrl": true,
"ruleArticles": "",
"ruleContent": "",
"ruleDescription": "",
"ruleImage": "",
"ruleLink": "",
"rulePubDate": "",
"ruleTitle": "",
"singleUrl": true,
"sortUrl": "",
"sourceGroup": "🌐 新闻",
"sourceIcon": "https://s3.bytecdn.cn/growth/fe_sdk/image/banner_toutiao_icon_bce0b302.png",
"sourceName": "今日头条",
"sourceUrl": "https://m.toutiao.com/?W2atIF=1"
},
{
"articleStyle": 0,
"customOrder": -380,
"enableJs": true,
"enabled": true,