Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
See: #1105
  • Loading branch information
dteviot committed Dec 7, 2023
1 parent e6fbc9d commit 3ad2f8e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions plugin/js/parsers/ManhwadenParser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"use strict";

parserFactory.register("manhwaden.com", () => new ManhwadenParser());

class ManhwadenParser extends MadaraParser{
constructor() {
super();
}

preprocessRawDom(webPageDom) {
util.removeChildElementsMatchingCss(webPageDom, "img:not([src])");
}
}
1 change: 1 addition & 0 deletions plugin/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ <h3>Instructions</h3>
<script src="js/parsers/ManganovParser.js"></script>
<script src="js/parsers/MangaHereParser.js"></script>
<script src="js/parsers/MangaReadParser.js"></script>
<script src="js/parsers/ManhwadenParser.js"></script>
<script src="js/parsers/ManhwatopParser.js"></script>
<script src="js/parsers/Marx2maoParser.js"></script>
<script src="js/parsers/MayanovelParser.js"></script>
Expand Down

0 comments on commit 3ad2f8e

Please sign in to comment.