Skip to content

Commit

Permalink
feat(ShojoScans): create connector (#7244)
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanWasTaken authored and ronny1982 committed Jul 27, 2024
1 parent bb2a170 commit a84b41e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Binary file added src/web/img/connectors/shojoscans
Binary file not shown.
14 changes: 14 additions & 0 deletions src/web/mjs/connectors/ShojoScans.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import WordPressMangastream from './templates/WordPressMangastream.mjs';

export default class ShojoScans extends WordPressMangastream {
constructor() {
super();
super.id = 'shojoscans';
super.label = 'ShojoScans';
this.tags = [ 'manga', 'english', 'scanlation' ];
this.url = 'https://shojoscans.com';
this.path = '/comics/list-mode/';

this.queryChapters = 'div#chapterlist ul li a';
}
}

0 comments on commit a84b41e

Please sign in to comment.