Skip to content

Commit

Permalink
在息壤中文解析的基础上增加了有毒小说的解析
Browse files Browse the repository at this point in the history
  • Loading branch information
Seraphoenixy authored and yingziwu committed Jul 18, 2023
1 parent b4965aa commit 5347bb3
Show file tree
Hide file tree
Showing 4 changed files with 516 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ EPUB 文件请使用相应阅读器阅读。
| [寒武纪年原创网](https://www.hanwujinian.com/) ||| |
| [哔哩哔哩漫画](https://manga.bilibili.com/) ||| |
| [息壤中文网](https://www.xrzww.com/) ||| |
| [有毒小说网](https://www.youdubook.com/) ||| |
| [独阅读](https://www.duread.cn/) ||| |
| [轻之文库轻小说](https://www.linovel.net/) ||| VIP 章节仅支持 APP 查看 |
| [纵横中文网](http://www.zongheng.com/) ||| |
Expand Down
2 changes: 2 additions & 0 deletions src/header.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@
"*://www.bixia3.com/txt/*/",
"*://www.xiaoshuowu.com/html/*/*/",
"*://www.xrzww.com/bookdetail/*",
"*://www.youdubook.com/bookdetail/*",
"*://colorful-fantasybooks.com/module/novel/info.php?*",
"*://www.dizishu.com/*/*/",
"*://www.ibiquge.la/*/*/",
Expand Down Expand Up @@ -336,6 +337,7 @@
"aixdzs.com",
"b5200.net",
"xrzww.com",
"youdubook.com",
"akatsuki-novels.com",
"alphapolis.co.jp",
"cdn.shucdn.com",
Expand Down
5 changes: 5 additions & 0 deletions src/router/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ export async function getRule(): Promise<BaseRuleClass> {
ruleClass = Xrzww;
break;
}
case "www.youdubook.com": {
const { Youdubook } = await import("../rules/special/original/youdubook");
ruleClass = Youdubook;
break;
}
case "new-read.readmoo.com": {
const { Readmoo } = await import("../rules/special/original/readmoo");
ruleClass = Readmoo;
Expand Down
Loading

0 comments on commit 5347bb3

Please sign in to comment.