We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13e369 commit e553eaeCopy full SHA for e553eae
src/web/img/connectors/rokaricomics
10.4 KB
src/web/mjs/connectors/RokariComics.mjs
@@ -0,0 +1,16 @@
1
+import WordPressMangastream from "./templates/WordPressMangastream.mjs";
2
+
3
+export default class RokariComics extends WordPressMangastream {
4
+ constructor() {
5
+ super();
6
+ this.queryChapters = 'div#chapterlist ul li div.eph-num a[href]';
7
+ super.id = "rokaricomics";
8
+ super.label = "Rokari Comics";
9
+ this.tags = ["webtoon", "english"];
10
+ this.path="/manga/list-mode/";
11
+ this.url = "https://rokaricomics.com";
12
+ this.links = {
13
+ login: 'https://rokaricomics.com/login/'
14
+ };
15
+ }
16
+}
0 commit comments