diff --git a/anime/multisrc/zorotheme/zorotheme-v0.0.4.dart b/anime/multisrc/zorotheme/zorotheme-v0.0.4.dart index b57a3245..12195cb1 100644 --- a/anime/multisrc/zorotheme/zorotheme-v0.0.4.dart +++ b/anime/multisrc/zorotheme/zorotheme-v0.0.4.dart @@ -22,9 +22,7 @@ class ZoroTheme extends MProvider { @override Future search(MSource source, String query, int page) async { - final data = { - "url": "${source.baseUrl}/search?keyword=$query&page=$page" - }; + final data = {"url": "${source.baseUrl}/search?keyword=$query&page=$page"}; final res = await http('GET', json.encode(data)); return animeElementM(res); @@ -44,7 +42,7 @@ class ZoroTheme extends MProvider { final status = xpath(res, '//*[@class="anisc-info"]/div[contains(text(),"Status:")]/span[2]/text()') .first; - + anime.status = parseStatus(status, statusList); anime.author = xpath(res, '//*[@class="anisc-info"]/div[contains(text(),"Studios:")]/span/text()') @@ -150,8 +148,7 @@ class ZoroTheme extends MProvider { }; final resE = await http('GET', json.encode(datasE)); - String epUrl = substringBefore( - substringAfter(resE, "\"link\":\""), "\""); + String epUrl = substringBefore(substringAfter(resE, "\"link\":\""), "\""); print(epUrl); List a = []; if (name.contains("Vidstreaming")) { @@ -167,11 +164,6 @@ class ZoroTheme extends MProvider { return videos; } - @override - Future> getPageList(MSource source, String url) async { - return []; - } - MPages animeElementM(String res) { List animeList = []; @@ -190,8 +182,8 @@ class ZoroTheme extends MProvider { anime.link = urls[i]; animeList.add(anime); } - final nextPage = xpath( - res, '//li[@class="page-item"]/a[@title="Next"]/@href', ""); + final nextPage = + xpath(res, '//li[@class="page-item"]/a[@title="Next"]/@href', ""); return MPages(animeList, !nextPage.isEmpty); } @@ -206,4 +198,3 @@ class ZoroTheme extends MProvider { ZoroTheme main() { return ZoroTheme(); } - diff --git a/anime/src/ar/okanime/okanime-v0.0.25.dart b/anime/src/ar/okanime/okanime-v0.0.25.dart index b91e3c6e..585eb5d0 100644 --- a/anime/src/ar/okanime/okanime-v0.0.25.dart +++ b/anime/src/ar/okanime/okanime-v0.0.25.dart @@ -94,11 +94,9 @@ class OkAnime extends MProvider { if (status.isNotEmpty) { anime.status = parseStatus(status.first, statusList); } - anime.description = - xpath(res, '//*[@class="review-content"]/text()').first; + anime.description = xpath(res, '//*[@class="review-content"]/text()').first; - anime.genre = - xpath(res, '//*[@class="review-author-info"]/a/text()'); + anime.genre = xpath(res, '//*[@class="review-author-info"]/a/text()'); final epUrls = xpath(res, '//*[contains(@class,"anime-card")]/div[@class="anime-title")]/h5/a/@href') .reversed @@ -125,8 +123,7 @@ class OkAnime extends MProvider { final res = await http('GET', json.encode({"url": url})); final urls = xpath(res, '//*[@id="streamlinks"]/a/@data-src'); - final qualities = - xpath(res, '//*[@id="streamlinks"]/a/span/text()'); + final qualities = xpath(res, '//*[@id="streamlinks"]/a/span/text()'); List videos = []; for (var i = 0; i < urls.length; i++) { @@ -172,11 +169,6 @@ class OkAnime extends MProvider { } return false; } - - @override - Future> getPageList(MSource source, String url) async { - return []; - } } OkAnime main() { diff --git a/anime/src/en/gogoanime/gogoanime-v0.0.35.dart b/anime/src/en/gogoanime/gogoanime-v0.0.35.dart index e91f98d6..a6731e88 100644 --- a/anime/src/en/gogoanime/gogoanime-v0.0.35.dart +++ b/anime/src/en/gogoanime/gogoanime-v0.0.35.dart @@ -34,8 +34,8 @@ class GogoAnime extends MProvider { final res = await http('GET', json.encode(data)); List animeList = []; - final urls = xpath( - res, '//*[@class="added_series_body popular"]/ul/li/a[1]/@href'); + final urls = + xpath(res, '//*[@class="added_series_body popular"]/ul/li/a[1]/@href'); final names = xpath( res, '//*[//*[@class="added_series_body popular"]/ul/li/a[1]/@title'); List images = []; @@ -111,8 +111,7 @@ class GogoAnime extends MProvider { final dataEp = {"url": urlEp}; final resEp = await http('GET', json.encode(dataEp)); - final epUrls = - xpath(resEp, '//*[@id="episode_related"]/li/a/@href'); + final epUrls = xpath(resEp, '//*[@id="episode_related"]/li/a/@href'); final names = xpath( resEp, '//*[@id="episode_related"]/li/a/div[@class="name"]/text()'); List episodes = []; @@ -139,8 +138,7 @@ class GogoAnime extends MProvider { final res = await http('GET', json.encode(datas)); final serverUrls = xpath(res, '//*[@class="anime_muti_link"]/ul/li/a/@data-video'); - final classNames = - xpath(res, '//*[@class="anime_muti_link"]/ul/li/@class'); + final classNames = xpath(res, '//*[@class="anime_muti_link"]/ul/li/@class'); List videos = []; for (var i = 0; i < classNames.length; i++) { final name = classNames[i]; @@ -160,11 +158,6 @@ class GogoAnime extends MProvider { return videos; } - - @override - Future> getPageList(MSource source, String url) async { - return []; - } } GogoAnime main() { diff --git a/anime/src/en/kisskh/kisskh-v0.0.25.dart b/anime/src/en/kisskh/kisskh-v0.0.25.dart index 0bda7ec4..06ee2351 100644 --- a/anime/src/en/kisskh/kisskh-v0.0.25.dart +++ b/anime/src/en/kisskh/kisskh-v0.0.25.dart @@ -126,8 +126,7 @@ class KissKh extends MProvider { final datas = {"url": url}; final res = await http('GET', json.encode(datas)); - final id = substringAfter( - substringBefore(url, ".png"), "Episode/"); + final id = substringAfter(substringBefore(url, ".png"), "Episode/"); final jsonRes = json.decode(res); final subRes = await http( @@ -160,11 +159,6 @@ class KissKh extends MProvider { }; return [video]; } - - @override - Future> getPageList(MSource source, String url) async { - return []; - } } KissKh main() { diff --git a/anime/src/fr/animesultra/animesultra-v0.0.35.dart b/anime/src/fr/animesultra/animesultra-v0.0.35.dart index db10337e..eff595f1 100644 --- a/anime/src/fr/animesultra/animesultra-v0.0.35.dart +++ b/anime/src/fr/animesultra/animesultra-v0.0.35.dart @@ -60,8 +60,7 @@ class AnimesUltra extends MProvider { List animeList = []; final urls = xpath(res, '//*[@class="film-poster"]/a/@href'); final names = xpath(res, '//*[@class="film-poster"]/a/@title'); - final images = - xpath(res, '//*[@class="film-poster"]/img/@data-src'); + final images = xpath(res, '//*[@class="film-poster"]/img/@data-src'); for (var i = 0; i < names.length; i++) { MManga anime = MManga(); @@ -86,8 +85,7 @@ class AnimesUltra extends MProvider { final res = await http('GET', json.encode(data)); MManga anime = MManga(); anime.description = - xpath(res, '//*[@class="film-description m-hide"]/text()') - .first; + xpath(res, '//*[@class="film-description m-hide"]/text()').first; final status = xpath(res, '//*[@class="item item-title" and contains(text(),"Status:")]/span[2]/text()') @@ -101,9 +99,8 @@ class AnimesUltra extends MProvider { final urlEp = url.replaceAll('.html', '/episode-1.html'); final resEpWebview = await getHtmlViaWebview(urlEp, '//*[@class="ss-list"]/a/@href'); - final epUrls = xpath(resEpWebview, '//*[@class="ss-list"]/a/@href') - .reversed - .toList(); + final epUrls = + xpath(resEpWebview, '//*[@class="ss-list"]/a/@href').reversed.toList(); final names = xpath(resEpWebview, '//*[@class="ss-list"]/a/div[@class="ssli-detail"]/div/text()') .reversed @@ -126,15 +123,14 @@ class AnimesUltra extends MProvider { final resWebview = await getHtmlViaWebview( url, '//*[@class="ps__-list"]/div/@data-server-id'); - final serverIds = xpath( - resWebview, '//*[@class="ps__-list"]/div/@data-server-id'); + final serverIds = + xpath(resWebview, '//*[@class="ps__-list"]/div/@data-server-id'); final serverNames = xpath(resWebview, '//*[@class="ps__-list"]/div/a/text()'); List serverUrls = []; for (var id in serverIds) { final serversUrls = - xpath(resWebview, '//*[@id="content_player_${id}"]/text()') - .first; + xpath(resWebview, '//*[@id="content_player_${id}"]/text()').first; serverUrls.add(serversUrls); } List videos = []; @@ -144,10 +140,8 @@ class AnimesUltra extends MProvider { List a = []; if (name.contains("Sendvid")) { - a = await sendVidExtractor( - url.replaceAll("https:////", "https://"), - json.encode({"Referer": "${source.baseUrl}/"}), - ""); + a = await sendVidExtractor(url.replaceAll("https:////", "https://"), + json.encode({"Referer": "${source.baseUrl}/"}), ""); } else if (name.contains("Sibnet")) { a = await sibnetExtractor( "https://video.sibnet.ru/shell.php?videoid=$url"); @@ -159,11 +153,6 @@ class AnimesUltra extends MProvider { return videos; } - - @override - Future> getPageList(MSource source, String url) async { - return []; - } } AnimesUltra main() { diff --git a/anime/src/fr/franime/franime-v0.0.35.dart b/anime/src/fr/franime/franime-v0.0.35.dart index c582b781..0174b04c 100644 --- a/anime/src/fr/franime/franime-v0.0.35.dart +++ b/anime/src/fr/franime/franime-v0.0.35.dart @@ -168,11 +168,6 @@ class FrAnime extends MProvider { return videos; } - @override - Future> getPageList(MSource source, String url) async { - return []; - } - MPages animeResList(String res) { final statusList = [ {"EN COURS": 0, "TERMINÉ": 1} diff --git a/anime/src/fr/otakufr/otakufr-v0.0.35.dart b/anime/src/fr/otakufr/otakufr-v0.0.35.dart index d4fb739a..bf5853e8 100644 --- a/anime/src/fr/otakufr/otakufr-v0.0.35.dart +++ b/anime/src/fr/otakufr/otakufr-v0.0.35.dart @@ -14,10 +14,10 @@ class OtakuFr extends MProvider { List animeList = []; final urls = xpath(res, '//*[@class="list"]/article/div/div/figure/a/@href'); - final names = xpath( - res, '//*[@class="list"]/article/div/div/figure/a/img/@title'); - final images = xpath( - res, '//*[@class="list"]/article/div/div/figure/a/img/@src'); + final names = + xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@title'); + final images = + xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@src'); for (var i = 0; i < names.length; i++) { MManga anime = MManga(); @@ -57,8 +57,7 @@ class OtakuFr extends MProvider { .replaceAll(' (Vf)', '') .replaceAll(' (Vostfr)', '')); } - final images = - xpath(res, '//*[@class="episode"]/div/figure/a/img/@src'); + final images = xpath(res, '//*[@class="episode"]/div/figure/a/img/@src'); for (var i = 0; i < names.length; i++) { MManga anime = MManga(); @@ -74,18 +73,17 @@ class OtakuFr extends MProvider { @override Future search(MSource source, String query, int page) async { final data = { - "url": - "${source.baseUrl}/toute-la-liste-affiches/page/$page/?q=$query" + "url": "${source.baseUrl}/toute-la-liste-affiches/page/$page/?q=$query" }; final res = await http('GET', json.encode(data)); List animeList = []; final urls = xpath(res, '//*[@class="list"]/article/div/div/figure/a/@href'); - final names = xpath( - res, '//*[@class="list"]/article/div/div/figure/a/img/@title'); - final images = xpath( - res, '//*[@class="list"]/article/div/div/figure/a/img/@src'); + final names = + xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@title'); + final images = + xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@src'); for (var i = 0; i < names.length; i++) { MManga anime = MManga(); @@ -117,10 +115,9 @@ class OtakuFr extends MProvider { res = await http('GET', json.encode(newData)); } - anime.description = - xpath(res, '//*[@class="episode fz-sm synop"]/p/text()') - .first - .replaceAll("Synopsis:", ""); + anime.description = xpath(res, '//*[@class="episode fz-sm synop"]/p/text()') + .first + .replaceAll("Synopsis:", ""); final status = xpath(res, '//*[@class="list-unstyled"]/li[contains(text(),"Statut")]/text()') .first @@ -129,12 +126,10 @@ class OtakuFr extends MProvider { anime.genre = xpath(res, '//*[@class="list-unstyled"]/li[contains(text(),"Genre")]/ul/li/a/text()'); - final epUrls = - xpath(res, '//*[@class="list-episodes list-group"]/a/@href'); - final dates = xpath( - res, '//*[@class="list-episodes list-group"]/a/span/text()'); - final names = - xpath(res, '//*[@class="list-episodes list-group"]/a/text()'); + final epUrls = xpath(res, '//*[@class="list-episodes list-group"]/a/@href'); + final dates = + xpath(res, '//*[@class="list-episodes list-group"]/a/span/text()'); + final names = xpath(res, '//*[@class="list-episodes list-group"]/a/text()'); List episodes = []; for (var i = 0; i < names.length; i++) { @@ -162,8 +157,7 @@ class OtakuFr extends MProvider { Future> getVideoList(MSource source, String url) async { final res = await http('GET', json.encode({"url": url})); - final servers = - xpath(res, '//*[@id="nav-tabContent"]/div/iframe/@src'); + final servers = xpath(res, '//*[@id="nav-tabContent"]/div/iframe/@src'); List videos = []; for (var url in servers) { final datasServer = { @@ -195,11 +189,6 @@ class OtakuFr extends MProvider { String fixUrl(String url) { return regExp(url, r"^(?:(?:https?:)?//|www\.)", 'https://', 0, 0); } - - @override - Future> getPageList(MSource source, String url) async { - return []; - } } OtakuFr main() { diff --git a/icons/mangayomi-ar-beastscans.png b/icons/mangayomi-ar-beastscans.png new file mode 100644 index 00000000..f6afbad5 Binary files /dev/null and b/icons/mangayomi-ar-beastscans.png differ diff --git a/icons/mangayomi-fr-lelmanga.png b/icons/mangayomi-fr-lelmanga.png new file mode 100644 index 00000000..2ca979d5 Binary files /dev/null and b/icons/mangayomi-fr-lelmanga.png differ diff --git a/index.json b/index.json index 265f0d0a..0d4d7376 100644 --- a/index.json +++ b/index.json @@ -1 +1 @@ -[{"name":"FR-Scan","id":669019889,"baseUrl":"https://fr-scan.com","lang":"fr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-frscan.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"AstralManga","id":1028022993,"baseUrl":"https://astral-manga.fr","lang":"fr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-astralmanga.png","dateFormat":"dd/mm/yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Akuma no Tenshi","id":556872410,"baseUrl":"https://akumanotenshi.com","lang":"pt-BR","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-akumanotenshi.png","dateFormat":"dd/MM/yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Adult Webtoon","id":772321498,"baseUrl":"https://adultwebtoon.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-adultwebtoon.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"ArazNovel","id":966932111,"baseUrl":"https://www.araznovel.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-araznovel.png","dateFormat":"d MMMM yyyy","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"BestManga","id":926276360,"baseUrl":"https://bestmanga.club","lang":"ru","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-ru-bestmanga.png","dateFormat":"dd.MM.yyyy","dateFormatLocale":"ru","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Chibi Manga","id":105430403,"baseUrl":"https://www.cmreader.info","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-chibimanga.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"EvaScans","id":439004766,"baseUrl":"https://evascans.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-evascans.png","dateFormat":"MMM d, yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Final Scans","id":477960837,"baseUrl":"https://finalscans.com","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-finalscans.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"pt-BR","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Glory Manga","id":284318957,"baseUrl":"https://glorymanga.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-glorymanga.png","dateFormat":"dd/MM/yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Its Your Right Manhua","id":71580703,"baseUrl":"https://itsyourightmanhua.com/","lang":"en","typeSource":"madara","iconUrl":"","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Kami Sama Explorer","id":797019242,"baseUrl":"https://leitor.kamisama.com.br","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-kamisamaexplorer.png","dateFormat":"dd 'de' MMMM 'de' yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KSGroupScans","id":374902680,"baseUrl":"https://ksgroupscans.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-ksgroupscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"LHTranslation","id":21247797,"baseUrl":"https://lhtranslation.net","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-lhtranslation.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Lolicon","id":526980015,"baseUrl":"https://lolicon.mobi","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-lolicon.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaVisa","id":433907810,"baseUrl":"https://mangavisa.com","lang":"en","typeSource":"madara","iconUrl":"","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga District","id":281100270,"baseUrl":"https://mangadistrict.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangadistrict.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaFreak.online","id":223793266,"baseUrl":"https://mangafreak.online","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangafreakonline.png","dateFormat":"d MMMM، yyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaGreat","id":1054806605,"baseUrl":"https://mangagreat.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangagreat.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga Read","id":256879643,"baseUrl":"https://mangaread.co","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangaread.png","dateFormat":"yyyy-MM-dd","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaRolls","id":720109919,"baseUrl":"https://mangarolls.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangarolls.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga Şehri","id":865354788,"baseUrl":"https://mangasehri.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-mangasehri.png","dateFormat":"dd/MM/yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mangasushi","id":224429716,"baseUrl":"https://mangasushi.org","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangasushi.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manhwa68","id":1002141127,"baseUrl":"https://manhwa68.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-manhwa68.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Milftoon","id":381914974,"baseUrl":"https://milftoon.xxx","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-milftoon.png","dateFormat":"d MMMM, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"NovelCrow","id":768834856,"baseUrl":"https://novelcrow.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-novelcrow.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Rio2 Manga","id":110090511,"baseUrl":"https://rio2manga.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-rio2manga.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Romantik Manga","id":944131896,"baseUrl":"https://romantikmanga.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-romantikmanga.png","dateFormat":"MMM d, yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Taurus Fansub","id":1036726988,"baseUrl":"https://taurusfansub.com","lang":"es","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-taurusfansub.png","dateFormat":"dd/MM/yyy","dateFormatLocale":"es","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Tatakae Scan","id":296744306,"baseUrl":"https://tatakaescan.com","lang":"pt-BR","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-tatakaescan.png","dateFormat":"dd 'de' MMMMM 'de' yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Tortuga Ceviri","id":294602572,"baseUrl":"https://tortuga-ceviri.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-tortugaceviri.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Yuri Verso","id":756257030,"baseUrl":"https://yuri.live","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-yuriverso.png","dateFormat":"dd/MM/yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Zero Scan","id":637786379,"baseUrl":"https://zeroscan.com.br","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-zeroscan.png","dateFormat":"dd/MM/yyyy","dateFormatLocale":"pt-BR","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":370890607,"baseUrl":"https://comick.app","lang":"all","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":955190069,"baseUrl":"https://comick.app","lang":"en","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":494197461,"baseUrl":"https://comick.app","lang":"pt-br","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":1050814052,"baseUrl":"https://comick.app","lang":"ru","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":380505196,"baseUrl":"https://comick.app","lang":"fr","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":296390197,"baseUrl":"https://comick.app","lang":"es-419","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":242913014,"baseUrl":"https://comick.app","lang":"pl","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":507059585,"baseUrl":"https://comick.app","lang":"tr","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":851891714,"baseUrl":"https://comick.app","lang":"it","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":115169439,"baseUrl":"https://comick.app","lang":"es","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":719269008,"baseUrl":"https://comick.app","lang":"id","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":719759654,"baseUrl":"https://comick.app","lang":"hu","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":301477894,"baseUrl":"https://comick.app","lang":"vi","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":113594984,"baseUrl":"https://comick.app","lang":"zh-hk","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":602472856,"baseUrl":"https://comick.app","lang":"ar","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":401493183,"baseUrl":"https://comick.app","lang":"de","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":752155292,"baseUrl":"https://comick.app","lang":"zh","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":1069764002,"baseUrl":"https://comick.app","lang":"ca","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":678531099,"baseUrl":"https://comick.app","lang":"bg","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":311480598,"baseUrl":"https://comick.app","lang":"th","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":141560456,"baseUrl":"https://comick.app","lang":"fa","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":8261465,"baseUrl":"https://comick.app","lang":"uk","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":565474938,"baseUrl":"https://comick.app","lang":"mn","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":533803532,"baseUrl":"https://comick.app","lang":"ro","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":459976450,"baseUrl":"https://comick.app","lang":"he","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":375702775,"baseUrl":"https://comick.app","lang":"ms","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":737984097,"baseUrl":"https://comick.app","lang":"tl","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":796489006,"baseUrl":"https://comick.app","lang":"ja","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":683471552,"baseUrl":"https://comick.app","lang":"hi","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":778623467,"baseUrl":"https://comick.app","lang":"my","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":1065236294,"baseUrl":"https://comick.app","lang":"ko","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":422767524,"baseUrl":"https://comick.app","lang":"cs","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":678647945,"baseUrl":"https://comick.app","lang":"pt","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":698202010,"baseUrl":"https://comick.app","lang":"nl","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":359879447,"baseUrl":"https://comick.app","lang":"sv","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":532878423,"baseUrl":"https://comick.app","lang":"bn","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":481504622,"baseUrl":"https://comick.app","lang":"no","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":112887841,"baseUrl":"https://comick.app","lang":"lt","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":824905526,"baseUrl":"https://comick.app","lang":"el","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":373675453,"baseUrl":"https://comick.app","lang":"sr","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":574420905,"baseUrl":"https://comick.app","lang":"da","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":202373705,"baseUrl":"https://mangadex.org","lang":"ar","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":860658373,"baseUrl":"https://mangadex.org","lang":"bn","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":722270529,"baseUrl":"https://mangadex.org","lang":"bg","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":978675083,"baseUrl":"https://mangadex.org","lang":"my","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":689496451,"baseUrl":"https://mangadex.org","lang":"ca","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":593575397,"baseUrl":"https://mangadex.org","lang":"zh","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":115179159,"baseUrl":"https://mangadex.org","lang":"zh-hk","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":869144666,"baseUrl":"https://mangadex.org","lang":"cs","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":846142909,"baseUrl":"https://mangadex.org","lang":"da","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":841149659,"baseUrl":"https://mangadex.org","lang":"nl","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":810342358,"baseUrl":"https://mangadex.org","lang":"en","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":309024312,"baseUrl":"https://mangadex.org","lang":"tl","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":164642544,"baseUrl":"https://mangadex.org","lang":"fi","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":545017689,"baseUrl":"https://mangadex.org","lang":"fr","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":110023605,"baseUrl":"https://mangadex.org","lang":"de","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":767687578,"baseUrl":"https://mangadex.org","lang":"el","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":511907642,"baseUrl":"https://mangadex.org","lang":"he","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":986826068,"baseUrl":"https://mangadex.org","lang":"hi","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":128441350,"baseUrl":"https://mangadex.org","lang":"hu","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":183977130,"baseUrl":"https://mangadex.org","lang":"id","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":127887438,"baseUrl":"https://mangadex.org","lang":"it","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":204112007,"baseUrl":"https://mangadex.org","lang":"ja","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":1063442064,"baseUrl":"https://mangadex.org","lang":"kk","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":898061477,"baseUrl":"https://mangadex.org","lang":"ko","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":387646759,"baseUrl":"https://mangadex.org","lang":"la","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":270482698,"baseUrl":"https://mangadex.org","lang":"lt","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":284400542,"baseUrl":"https://mangadex.org","lang":"ms","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":525041874,"baseUrl":"https://mangadex.org","lang":"mn","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":613632949,"baseUrl":"https://mangadex.org","lang":"ne","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":441032670,"baseUrl":"https://mangadex.org","lang":"no","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":693311514,"baseUrl":"https://mangadex.org","lang":"fa","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":683661227,"baseUrl":"https://mangadex.org","lang":"pl","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":417850874,"baseUrl":"https://mangadex.org","lang":"pt-br","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":1027115198,"baseUrl":"https://mangadex.org","lang":"pt","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":399589398,"baseUrl":"https://mangadex.org","lang":"ro","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":367421943,"baseUrl":"https://mangadex.org","lang":"ru","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":254140838,"baseUrl":"https://mangadex.org","lang":"sh","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":823535267,"baseUrl":"https://mangadex.org","lang":"es-419","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":736630443,"baseUrl":"https://mangadex.org","lang":"es","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":146351677,"baseUrl":"https://mangadex.org","lang":"sv","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":739930809,"baseUrl":"https://mangadex.org","lang":"ta","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":385031783,"baseUrl":"https://mangadex.org","lang":"th","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":1008587213,"baseUrl":"https://mangadex.org","lang":"tr","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":778357609,"baseUrl":"https://mangadex.org","lang":"uk","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":88174952,"baseUrl":"https://mangadex.org","lang":"vi","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Asura Scans","id":524070078,"baseUrl":"https://asuratoon.com/","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-asurascans.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KomikLab Scans","id":932554594,"baseUrl":"https://komiklab.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-komiklab.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Azure Scans","id":316512590,"baseUrl":"https://azuremanga.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-azurescans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Cosmic Scans","id":938687459,"baseUrl":"https://cosmicscans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-cosmicscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"CosmicScans.id","id":1053293978,"baseUrl":"https://cosmicscans.id","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-cosmicscansid.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Dojing.net","id":725568407,"baseUrl":"https://dojing.net","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-dojingnet.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"DuniaKomik.id","id":326969052,"baseUrl":"https://duniakomik.id","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-duniakomikid.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Gecenin Lordu","id":622207049,"baseUrl":"https://geceninlordu.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-geceninlordu.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Infernal Void Scans","id":460393112,"baseUrl":"https://void-scans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-infernalvoidscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KataKomik","id":61302571,"baseUrl":"https://katakomik.online","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-katakomik.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Kanzenin","id":729954705,"baseUrl":"https://kanzenin.xyz","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-kanzenin.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Komik Station","id":866615506,"baseUrl":"https://komikstation.co","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikstation.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":true,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KomikMama","id":148959602,"baseUrl":"https://komikmama.co","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikmama.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KumaPoi","id":855502386,"baseUrl":"https://kumapoi.club","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-kumapoi.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":true,"hasCloudflare":true,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Komiku.com","id":869906392,"baseUrl":"https://komiku.com","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikucom.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Legacy Scans","id":310973833,"baseUrl":"https://legacy-scans.com","lang":"fr","typeSource":"","iconUrl":"","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Magus Manga","id":487156426,"baseUrl":"https://magusmanga.com","lang":"ar","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-ar-magusmanga.png","dateFormat":"MMMMM d, yyyy","dateFormatLocale":"ar","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga Indo.me","id":425166803,"baseUrl":"https://mangaindo.me","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-mangaindome.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mangacim","id":642410916,"baseUrl":"https://www.mangacim.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-mangacim.png","dateFormat":"MMM d, yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaTale","id":343986734,"baseUrl":"https://mangatale.co","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-mangatale.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaWT","id":1014190199,"baseUrl":"https://mangawt.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-mangawt.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manhwax","id":188130307,"baseUrl":"https://manhwax.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-manhwax.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MELOKOMIK","id":532392938,"baseUrl":"https://melokomik.xyz","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-melokomik.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mihentai","id":59058359,"baseUrl":"https://mihentai.com","lang":"all","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mihentai.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mundo Mangá-Kun","id":870058031,"baseUrl":"https://mundomangakun.com.br","lang":"pt-br","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-mundomangakun.png","dateFormat":"MMMMM dd, yyyy","dateFormatLocale":"pt-BR","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Origami Orpheans","id":261849744,"baseUrl":"https://origami-orpheans.com.br","lang":"pt-br","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-origamiorpheans.png","dateFormat":"MMMMM dd, yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"PhenixScans","id":984162065,"baseUrl":"https://phenixscans.fr","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-phenixscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Pi Scans","id":548699583,"baseUrl":"https://piscans.in","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-piscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Raiki Scan","id":550138305,"baseUrl":"https://raikiscan.com","lang":"es","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-raikiscan.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Raven Scans","id":299682436,"baseUrl":"https://ravenscans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-ravenscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Shadow Mangas","id":229424731,"baseUrl":"https://shadowmangas.com","lang":"es","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-shadowmangas.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"es","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Surya Scans","id":935389321,"baseUrl":"https://suryascans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-suryascans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Sushi-Scans","id":1036140988,"baseUrl":"https://sushiscan.fr","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-sushiscans.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Sushi-Scan","id":972784612,"baseUrl":"https://sushiscan.net","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-sushiscan.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":true,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Tarot Scans","id":347606260,"baseUrl":"https://www.tarotscans.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-tarotscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"TukangKomik","id":884904192,"baseUrl":"https://tukangkomik.id","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-tukangkomik.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"TurkToon","id":579681001,"baseUrl":"https://turktoon.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-turktoon.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Uzay Manga","id":762273201,"baseUrl":"https://uzaymanga.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-uzaymanga.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"xCaliBR Scans","id":699314250,"baseUrl":"https://xcalibrscans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-xcalibrscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Scan VF","id":929253523,"baseUrl":"https://www.scan-vf.net","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-scanvf.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Komikid","id":400330220,"baseUrl":"https://www.komikid.com","lang":"id","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikid.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaID","id":181458486,"baseUrl":"https://mangaid.click","lang":"id","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-mangaid.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Jpmangas","id":1009609900,"baseUrl":"https://jpmangas.cc","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-jpmangas.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"مانجا اون لاين","id":19018595,"baseUrl":"https://onma.top","lang":"ar","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-ar-onma.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Read Comics Online","id":1021546729,"baseUrl":"https://readcomicsonline.ru","lang":"en","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-readcomicsonline.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Lelscan-VF","id":529915550,"baseUrl":"https://www.lelscanvf.cc/","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-lelscanvf.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga-FR","id":410779276,"baseUrl":"https://manga-fr.me","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-mangafr.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"YugenMangas","id":719565854,"baseUrl":"https://yugenmangas.lat","lang":"es","typeSource":"heancms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-yugenmangas.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v0.0.35.dart","apiUrl":"https://api.yugenmangas.net","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"OmegaScans","id":555665028,"baseUrl":"https://omegascans.org","lang":"en","typeSource":"heancms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-omegascans.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v0.0.35.dart","apiUrl":"https://api.omegascans.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Perf Scan","id":452473272,"baseUrl":"https://perf-scan.fr","lang":"fr","typeSource":"heancms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-perfscan.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v0.0.35.dart","apiUrl":"https://api.perf-scan.fr","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaHere","id":434984458,"baseUrl":"http://www.mangahere.cc","lang":"en","typeSource":"single","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangahere.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/en/mangahere/mangahere-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":108983442,"baseUrl":"https://bato.to","lang":"all","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":219967156,"baseUrl":"https://bato.to","lang":"en","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":946539390,"baseUrl":"https://bato.to","lang":"ar","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1009090494,"baseUrl":"https://bato.to","lang":"bg","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":49344864,"baseUrl":"https://bato.to","lang":"zh","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":413792936,"baseUrl":"https://bato.to","lang":"cs","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":127120581,"baseUrl":"https://bato.to","lang":"da","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":897709680,"baseUrl":"https://bato.to","lang":"nl","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":454148350,"baseUrl":"https://bato.to","lang":"fil","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":174179665,"baseUrl":"https://bato.to","lang":"fi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":318824497,"baseUrl":"https://bato.to","lang":"fr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1030715262,"baseUrl":"https://bato.to","lang":"de","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":395270492,"baseUrl":"https://bato.to","lang":"el","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":714199973,"baseUrl":"https://bato.to","lang":"he","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":596730405,"baseUrl":"https://bato.to","lang":"hi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1062815490,"baseUrl":"https://bato.to","lang":"hu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":551583074,"baseUrl":"https://bato.to","lang":"id","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":627608115,"baseUrl":"https://bato.to","lang":"it","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":709143604,"baseUrl":"https://bato.to","lang":"ja","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":42724933,"baseUrl":"https://bato.to","lang":"ko","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":900155911,"baseUrl":"https://bato.to","lang":"ms","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":945309998,"baseUrl":"https://bato.to","lang":"pl","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":791127366,"baseUrl":"https://bato.to","lang":"pt","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":364027455,"baseUrl":"https://bato.to","lang":"pt-br","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":604327151,"baseUrl":"https://bato.to","lang":"ro","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1057708733,"baseUrl":"https://bato.to","lang":"ru","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":106846058,"baseUrl":"https://bato.to","lang":"es","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":994364326,"baseUrl":"https://bato.to","lang":"es-419","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":214830540,"baseUrl":"https://bato.to","lang":"sv","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":375150025,"baseUrl":"https://bato.to","lang":"th","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":975805389,"baseUrl":"https://bato.to","lang":"tr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":159356975,"baseUrl":"https://bato.to","lang":"uk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":719702196,"baseUrl":"https://bato.to","lang":"vi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":605330389,"baseUrl":"https://bato.to","lang":"af","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":500354556,"baseUrl":"https://bato.to","lang":"sq","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":364708326,"baseUrl":"https://bato.to","lang":"am","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":579132190,"baseUrl":"https://bato.to","lang":"hy","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":704228914,"baseUrl":"https://bato.to","lang":"az","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":465187235,"baseUrl":"https://bato.to","lang":"be","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":996023306,"baseUrl":"https://bato.to","lang":"bn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":240943151,"baseUrl":"https://bato.to","lang":"bs","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":716816408,"baseUrl":"https://bato.to","lang":"my","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":539580717,"baseUrl":"https://bato.to","lang":"km","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":227037230,"baseUrl":"https://bato.to","lang":"ca","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":179733992,"baseUrl":"https://bato.to","lang":"ceb","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":419966767,"baseUrl":"https://bato.to","lang":"zh-hk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":775604375,"baseUrl":"https://bato.to","lang":"zh-tw","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":741957110,"baseUrl":"https://bato.to","lang":"hr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":65918010,"baseUrl":"https://bato.to","lang":"en-us","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":48306365,"baseUrl":"https://bato.to","lang":"eo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":591213520,"baseUrl":"https://bato.to","lang":"et","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":208056920,"baseUrl":"https://bato.to","lang":"fo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":304199459,"baseUrl":"https://bato.to","lang":"ka","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":281640882,"baseUrl":"https://bato.to","lang":"gn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":94882230,"baseUrl":"https://bato.to","lang":"gu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":218756163,"baseUrl":"https://bato.to","lang":"ht","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":683264032,"baseUrl":"https://bato.to","lang":"ha","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":461776450,"baseUrl":"https://bato.to","lang":"is","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":508086706,"baseUrl":"https://bato.to","lang":"ig","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":73117126,"baseUrl":"https://bato.to","lang":"ga","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":930639709,"baseUrl":"https://bato.to","lang":"jv","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":530409414,"baseUrl":"https://bato.to","lang":"kn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":998225990,"baseUrl":"https://bato.to","lang":"kk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1041723980,"baseUrl":"https://bato.to","lang":"ku","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":126099954,"baseUrl":"https://bato.to","lang":"ky","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":887942732,"baseUrl":"https://bato.to","lang":"lo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":842729597,"baseUrl":"https://bato.to","lang":"lv","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":634440809,"baseUrl":"https://bato.to","lang":"lt","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":180153330,"baseUrl":"https://bato.to","lang":"lb","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":954223541,"baseUrl":"https://bato.to","lang":"mk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":90956400,"baseUrl":"https://bato.to","lang":"mg","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":495467192,"baseUrl":"https://bato.to","lang":"ml","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":543265972,"baseUrl":"https://bato.to","lang":"mt","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":707155829,"baseUrl":"https://bato.to","lang":"mi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":707060384,"baseUrl":"https://bato.to","lang":"mr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":284683165,"baseUrl":"https://bato.to","lang":"mn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":984326467,"baseUrl":"https://bato.to","lang":"ne","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":131491491,"baseUrl":"https://bato.to","lang":"no","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":778635885,"baseUrl":"https://bato.to","lang":"ny","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":963992548,"baseUrl":"https://bato.to","lang":"ps","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":679819356,"baseUrl":"https://bato.to","lang":"fa","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":661882861,"baseUrl":"https://bato.to","lang":"rm","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":48526565,"baseUrl":"https://bato.to","lang":"sm","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":175814547,"baseUrl":"https://bato.to","lang":"sr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":45175594,"baseUrl":"https://bato.to","lang":"sh","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1066078403,"baseUrl":"https://bato.to","lang":"st","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":314138671,"baseUrl":"https://bato.to","lang":"sn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1034525411,"baseUrl":"https://bato.to","lang":"sd","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":756819764,"baseUrl":"https://bato.to","lang":"si","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1009716343,"baseUrl":"https://bato.to","lang":"sk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":468154856,"baseUrl":"https://bato.to","lang":"sl","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":601076648,"baseUrl":"https://bato.to","lang":"so","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":713165767,"baseUrl":"https://bato.to","lang":"sw","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":999603530,"baseUrl":"https://bato.to","lang":"tg","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":215668101,"baseUrl":"https://bato.to","lang":"ta","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":349639462,"baseUrl":"https://bato.to","lang":"ti","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":101342233,"baseUrl":"https://bato.to","lang":"to","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":308642475,"baseUrl":"https://bato.to","lang":"tk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":49360269,"baseUrl":"https://bato.to","lang":"ur","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":110209479,"baseUrl":"https://bato.to","lang":"uz","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":335757198,"baseUrl":"https://bato.to","lang":"yo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":955608975,"baseUrl":"https://bato.to","lang":"zu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":98386892,"baseUrl":"https://bato.to","lang":"eu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":664604703,"baseUrl":"https://bato.to","lang":"pt-PT","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaSee","id":531216751,"baseUrl":"https://mangasee123.com","lang":"en","typeSource":"nepnep","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangasee.png","dateFormat":"yyyy-MM-dd HH:mm:ss","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v0.0.25.dart","apiUrl":"","version":"0.0.25","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaLife","id":434747478,"baseUrl":"https://manga4life.com","lang":"en","typeSource":"nepnep","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangalife.png","dateFormat":"yyyy-MM-dd HH:mm:ss","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v0.0.25.dart","apiUrl":"","version":"0.0.25","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"}] \ No newline at end of file +[{"name":"FR-Scan","id":669019889,"baseUrl":"https://fr-scan.com","lang":"fr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-frscan.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"AstralManga","id":1028022993,"baseUrl":"https://astral-manga.fr","lang":"fr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-astralmanga.png","dateFormat":"dd/mm/yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Akuma no Tenshi","id":556872410,"baseUrl":"https://akumanotenshi.com","lang":"pt-BR","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-akumanotenshi.png","dateFormat":"dd/MM/yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Adult Webtoon","id":772321498,"baseUrl":"https://adultwebtoon.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-adultwebtoon.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"ArazNovel","id":966932111,"baseUrl":"https://www.araznovel.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-araznovel.png","dateFormat":"d MMMM yyyy","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"BestManga","id":926276360,"baseUrl":"https://bestmanga.club","lang":"ru","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-ru-bestmanga.png","dateFormat":"dd.MM.yyyy","dateFormatLocale":"ru","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Chibi Manga","id":105430403,"baseUrl":"https://www.cmreader.info","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-chibimanga.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"EvaScans","id":439004766,"baseUrl":"https://evascans.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-evascans.png","dateFormat":"MMM d, yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Final Scans","id":477960837,"baseUrl":"https://finalscans.com","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-finalscans.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"pt-BR","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Glory Manga","id":284318957,"baseUrl":"https://glorymanga.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-glorymanga.png","dateFormat":"dd/MM/yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Its Your Right Manhua","id":71580703,"baseUrl":"https://itsyourightmanhua.com/","lang":"en","typeSource":"madara","iconUrl":"","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Kami Sama Explorer","id":797019242,"baseUrl":"https://leitor.kamisama.com.br","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-kamisamaexplorer.png","dateFormat":"dd 'de' MMMM 'de' yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KSGroupScans","id":374902680,"baseUrl":"https://ksgroupscans.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-ksgroupscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"LHTranslation","id":21247797,"baseUrl":"https://lhtranslation.net","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-lhtranslation.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Lolicon","id":526980015,"baseUrl":"https://lolicon.mobi","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-lolicon.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaVisa","id":433907810,"baseUrl":"https://mangavisa.com","lang":"en","typeSource":"madara","iconUrl":"","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga District","id":281100270,"baseUrl":"https://mangadistrict.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangadistrict.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaFreak.online","id":223793266,"baseUrl":"https://mangafreak.online","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangafreakonline.png","dateFormat":"d MMMM، yyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaGreat","id":1054806605,"baseUrl":"https://mangagreat.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangagreat.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga Read","id":256879643,"baseUrl":"https://mangaread.co","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangaread.png","dateFormat":"yyyy-MM-dd","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaRolls","id":720109919,"baseUrl":"https://mangarolls.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangarolls.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga Şehri","id":865354788,"baseUrl":"https://mangasehri.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-mangasehri.png","dateFormat":"dd/MM/yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mangasushi","id":224429716,"baseUrl":"https://mangasushi.org","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangasushi.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manhwa68","id":1002141127,"baseUrl":"https://manhwa68.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-manhwa68.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Milftoon","id":381914974,"baseUrl":"https://milftoon.xxx","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-milftoon.png","dateFormat":"d MMMM, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"NovelCrow","id":768834856,"baseUrl":"https://novelcrow.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-novelcrow.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Rio2 Manga","id":110090511,"baseUrl":"https://rio2manga.com","lang":"en","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-rio2manga.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Romantik Manga","id":944131896,"baseUrl":"https://romantikmanga.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-romantikmanga.png","dateFormat":"MMM d, yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Taurus Fansub","id":1036726988,"baseUrl":"https://taurusfansub.com","lang":"es","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-taurusfansub.png","dateFormat":"dd/MM/yyy","dateFormatLocale":"es","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Tatakae Scan","id":296744306,"baseUrl":"https://tatakaescan.com","lang":"pt-BR","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-tatakaescan.png","dateFormat":"dd 'de' MMMMM 'de' yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Tortuga Ceviri","id":294602572,"baseUrl":"https://tortuga-ceviri.com","lang":"tr","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-tortugaceviri.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Yuri Verso","id":756257030,"baseUrl":"https://yuri.live","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-yuriverso.png","dateFormat":"dd/MM/yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Zero Scan","id":637786379,"baseUrl":"https://zeroscan.com.br","lang":"pt-br","typeSource":"madara","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-zeroscan.png","dateFormat":"dd/MM/yyyy","dateFormatLocale":"pt-BR","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/madara-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":370890607,"baseUrl":"https://comick.app","lang":"all","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":955190069,"baseUrl":"https://comick.app","lang":"en","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":494197461,"baseUrl":"https://comick.app","lang":"pt-br","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":1050814052,"baseUrl":"https://comick.app","lang":"ru","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":380505196,"baseUrl":"https://comick.app","lang":"fr","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":296390197,"baseUrl":"https://comick.app","lang":"es-419","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":242913014,"baseUrl":"https://comick.app","lang":"pl","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":507059585,"baseUrl":"https://comick.app","lang":"tr","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":851891714,"baseUrl":"https://comick.app","lang":"it","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":115169439,"baseUrl":"https://comick.app","lang":"es","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":719269008,"baseUrl":"https://comick.app","lang":"id","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":719759654,"baseUrl":"https://comick.app","lang":"hu","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":301477894,"baseUrl":"https://comick.app","lang":"vi","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":113594984,"baseUrl":"https://comick.app","lang":"zh-hk","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":602472856,"baseUrl":"https://comick.app","lang":"ar","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":401493183,"baseUrl":"https://comick.app","lang":"de","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":752155292,"baseUrl":"https://comick.app","lang":"zh","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":1069764002,"baseUrl":"https://comick.app","lang":"ca","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":678531099,"baseUrl":"https://comick.app","lang":"bg","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":311480598,"baseUrl":"https://comick.app","lang":"th","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":141560456,"baseUrl":"https://comick.app","lang":"fa","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":8261465,"baseUrl":"https://comick.app","lang":"uk","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":565474938,"baseUrl":"https://comick.app","lang":"mn","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":533803532,"baseUrl":"https://comick.app","lang":"ro","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":459976450,"baseUrl":"https://comick.app","lang":"he","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":375702775,"baseUrl":"https://comick.app","lang":"ms","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":737984097,"baseUrl":"https://comick.app","lang":"tl","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":796489006,"baseUrl":"https://comick.app","lang":"ja","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":683471552,"baseUrl":"https://comick.app","lang":"hi","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":778623467,"baseUrl":"https://comick.app","lang":"my","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":1065236294,"baseUrl":"https://comick.app","lang":"ko","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":422767524,"baseUrl":"https://comick.app","lang":"cs","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":678647945,"baseUrl":"https://comick.app","lang":"pt","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":698202010,"baseUrl":"https://comick.app","lang":"nl","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":359879447,"baseUrl":"https://comick.app","lang":"sv","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":532878423,"baseUrl":"https://comick.app","lang":"bn","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":481504622,"baseUrl":"https://comick.app","lang":"no","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":112887841,"baseUrl":"https://comick.app","lang":"lt","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":824905526,"baseUrl":"https://comick.app","lang":"el","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":373675453,"baseUrl":"https://comick.app","lang":"sr","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Comick","id":574420905,"baseUrl":"https://comick.app","lang":"da","typeSource":"comick","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-comickfun.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss'Z'","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/comick/comick-v0.0.35.dart","apiUrl":"https://api.comick.fun","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":202373705,"baseUrl":"https://mangadex.org","lang":"ar","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":860658373,"baseUrl":"https://mangadex.org","lang":"bn","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":722270529,"baseUrl":"https://mangadex.org","lang":"bg","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":978675083,"baseUrl":"https://mangadex.org","lang":"my","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":689496451,"baseUrl":"https://mangadex.org","lang":"ca","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":593575397,"baseUrl":"https://mangadex.org","lang":"zh","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":115179159,"baseUrl":"https://mangadex.org","lang":"zh-hk","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":869144666,"baseUrl":"https://mangadex.org","lang":"cs","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":846142909,"baseUrl":"https://mangadex.org","lang":"da","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":841149659,"baseUrl":"https://mangadex.org","lang":"nl","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":810342358,"baseUrl":"https://mangadex.org","lang":"en","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":309024312,"baseUrl":"https://mangadex.org","lang":"tl","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":164642544,"baseUrl":"https://mangadex.org","lang":"fi","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":545017689,"baseUrl":"https://mangadex.org","lang":"fr","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":110023605,"baseUrl":"https://mangadex.org","lang":"de","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":767687578,"baseUrl":"https://mangadex.org","lang":"el","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":511907642,"baseUrl":"https://mangadex.org","lang":"he","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":986826068,"baseUrl":"https://mangadex.org","lang":"hi","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":128441350,"baseUrl":"https://mangadex.org","lang":"hu","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":183977130,"baseUrl":"https://mangadex.org","lang":"id","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":127887438,"baseUrl":"https://mangadex.org","lang":"it","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":204112007,"baseUrl":"https://mangadex.org","lang":"ja","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":1063442064,"baseUrl":"https://mangadex.org","lang":"kk","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":898061477,"baseUrl":"https://mangadex.org","lang":"ko","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":387646759,"baseUrl":"https://mangadex.org","lang":"la","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":270482698,"baseUrl":"https://mangadex.org","lang":"lt","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":284400542,"baseUrl":"https://mangadex.org","lang":"ms","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":525041874,"baseUrl":"https://mangadex.org","lang":"mn","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":613632949,"baseUrl":"https://mangadex.org","lang":"ne","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":441032670,"baseUrl":"https://mangadex.org","lang":"no","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":693311514,"baseUrl":"https://mangadex.org","lang":"fa","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":683661227,"baseUrl":"https://mangadex.org","lang":"pl","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":417850874,"baseUrl":"https://mangadex.org","lang":"pt-br","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":1027115198,"baseUrl":"https://mangadex.org","lang":"pt","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":399589398,"baseUrl":"https://mangadex.org","lang":"ro","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":367421943,"baseUrl":"https://mangadex.org","lang":"ru","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":254140838,"baseUrl":"https://mangadex.org","lang":"sh","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":823535267,"baseUrl":"https://mangadex.org","lang":"es-419","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":736630443,"baseUrl":"https://mangadex.org","lang":"es","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":146351677,"baseUrl":"https://mangadex.org","lang":"sv","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":739930809,"baseUrl":"https://mangadex.org","lang":"ta","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":385031783,"baseUrl":"https://mangadex.org","lang":"th","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":1008587213,"baseUrl":"https://mangadex.org","lang":"tr","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":778357609,"baseUrl":"https://mangadex.org","lang":"uk","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaDex","id":88174952,"baseUrl":"https://mangadex.org","lang":"vi","typeSource":"mangadex","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mangadex.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss+SSS","dateFormatLocale":"en_Us","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/mangadex/mangadex-v0.0.35.dart","apiUrl":"https://api.mangadex.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Beast Scans","id":1051043161,"baseUrl":"https://beast-scans.com","lang":"ar","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-asurascans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"ar","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Lelmanga","id":35877276,"baseUrl":"https://www.lelmanga.com","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-lelmanga.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Asura Scans","id":524070078,"baseUrl":"https://asuratoon.com/","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-asurascans.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KomikLab Scans","id":932554594,"baseUrl":"https://komiklab.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-komiklab.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Azure Scans","id":316512590,"baseUrl":"https://azuremanga.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-azurescans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Cosmic Scans","id":938687459,"baseUrl":"https://cosmicscans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-cosmicscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"CosmicScans.id","id":1053293978,"baseUrl":"https://cosmicscans.id","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-cosmicscansid.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Dojing.net","id":725568407,"baseUrl":"https://dojing.net","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-dojingnet.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"DuniaKomik.id","id":326969052,"baseUrl":"https://duniakomik.id","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-duniakomikid.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Gecenin Lordu","id":622207049,"baseUrl":"https://geceninlordu.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-geceninlordu.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Infernal Void Scans","id":460393112,"baseUrl":"https://void-scans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-infernalvoidscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KataKomik","id":61302571,"baseUrl":"https://katakomik.online","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-katakomik.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Kanzenin","id":729954705,"baseUrl":"https://kanzenin.xyz","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-kanzenin.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Komik Station","id":866615506,"baseUrl":"https://komikstation.co","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikstation.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":true,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KomikMama","id":148959602,"baseUrl":"https://komikmama.co","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikmama.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"KumaPoi","id":855502386,"baseUrl":"https://kumapoi.club","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-kumapoi.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":true,"hasCloudflare":true,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Komiku.com","id":869906392,"baseUrl":"https://komiku.com","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikucom.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Legacy Scans","id":310973833,"baseUrl":"https://legacy-scans.com","lang":"fr","typeSource":"","iconUrl":"","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Magus Manga","id":487156426,"baseUrl":"https://magusmanga.com","lang":"ar","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-ar-magusmanga.png","dateFormat":"MMMMM d, yyyy","dateFormatLocale":"ar","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga Indo.me","id":425166803,"baseUrl":"https://mangaindo.me","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-mangaindome.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mangacim","id":642410916,"baseUrl":"https://www.mangacim.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-mangacim.png","dateFormat":"MMM d, yyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaTale","id":343986734,"baseUrl":"https://mangatale.co","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-mangatale.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaWT","id":1014190199,"baseUrl":"https://mangawt.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-mangawt.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manhwax","id":188130307,"baseUrl":"https://manhwax.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-manhwax.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MELOKOMIK","id":532392938,"baseUrl":"https://melokomik.xyz","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-melokomik.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"id","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mihentai","id":59058359,"baseUrl":"https://mihentai.com","lang":"all","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-mihentai.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Mundo Mangá-Kun","id":870058031,"baseUrl":"https://mundomangakun.com.br","lang":"pt-br","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-mundomangakun.png","dateFormat":"MMMMM dd, yyyy","dateFormatLocale":"pt-BR","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Origami Orpheans","id":261849744,"baseUrl":"https://origami-orpheans.com.br","lang":"pt-br","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-pt-origamiorpheans.png","dateFormat":"MMMMM dd, yyyy","dateFormatLocale":"pt-BR","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"PhenixScans","id":984162065,"baseUrl":"https://phenixscans.fr","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-phenixscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Pi Scans","id":548699583,"baseUrl":"https://piscans.in","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-piscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Raiki Scan","id":550138305,"baseUrl":"https://raikiscan.com","lang":"es","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-raikiscan.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Raven Scans","id":299682436,"baseUrl":"https://ravenscans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-ravenscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Shadow Mangas","id":229424731,"baseUrl":"https://shadowmangas.com","lang":"es","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-shadowmangas.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"es","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Surya Scans","id":935389321,"baseUrl":"https://suryascans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-suryascans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Sushi-Scans","id":1036140988,"baseUrl":"https://sushiscan.fr","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-sushiscans.png","dateFormat":"MMMM d, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Sushi-Scan","id":972784612,"baseUrl":"https://sushiscan.net","lang":"fr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-sushiscan.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"fr","isNsfw":false,"hasCloudflare":true,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Tarot Scans","id":347606260,"baseUrl":"https://www.tarotscans.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-tarotscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"TukangKomik","id":884904192,"baseUrl":"https://tukangkomik.id","lang":"id","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-tukangkomik.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"TurkToon","id":579681001,"baseUrl":"https://turktoon.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-turktoon.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Uzay Manga","id":762273201,"baseUrl":"https://uzaymanga.com","lang":"tr","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-tr-uzaymanga.png","dateFormat":"MMM d, yyyy","dateFormatLocale":"tr","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"xCaliBR Scans","id":699314250,"baseUrl":"https://xcalibrscans.com","lang":"en","typeSource":"","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-xcalibrscans.png","dateFormat":"MMMM dd, yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mangareader/mangareader-v0.0.45.dart","apiUrl":"","version":"0.0.45","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Scan VF","id":929253523,"baseUrl":"https://www.scan-vf.net","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-scanvf.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Komikid","id":400330220,"baseUrl":"https://www.komikid.com","lang":"id","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-komikid.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaID","id":181458486,"baseUrl":"https://mangaid.click","lang":"id","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-id-mangaid.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Jpmangas","id":1009609900,"baseUrl":"https://jpmangas.cc","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-jpmangas.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"مانجا اون لاين","id":19018595,"baseUrl":"https://onma.top","lang":"ar","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-ar-onma.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Read Comics Online","id":1021546729,"baseUrl":"https://readcomicsonline.ru","lang":"en","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-readcomicsonline.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Lelscan-VF","id":529915550,"baseUrl":"https://www.lelscanvf.cc/","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-lelscanvf.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Manga-FR","id":410779276,"baseUrl":"https://manga-fr.me","lang":"fr","typeSource":"mmrcms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-mangafr.png","dateFormat":"d MMM. yyyy","dateFormatLocale":"en_US","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"YugenMangas","id":719565854,"baseUrl":"https://yugenmangas.lat","lang":"es","typeSource":"heancms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-es-yugenmangas.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v0.0.35.dart","apiUrl":"https://api.yugenmangas.net","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"OmegaScans","id":555665028,"baseUrl":"https://omegascans.org","lang":"en","typeSource":"heancms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-omegascans.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v0.0.35.dart","apiUrl":"https://api.omegascans.org","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Perf Scan","id":452473272,"baseUrl":"https://perf-scan.fr","lang":"fr","typeSource":"heancms","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-fr-perfscan.png","dateFormat":"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v0.0.35.dart","apiUrl":"https://api.perf-scan.fr","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaHere","id":434984458,"baseUrl":"http://www.mangahere.cc","lang":"en","typeSource":"single","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangahere.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/en/mangahere/mangahere-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":108983442,"baseUrl":"https://bato.to","lang":"all","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":219967156,"baseUrl":"https://bato.to","lang":"en","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":946539390,"baseUrl":"https://bato.to","lang":"ar","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1009090494,"baseUrl":"https://bato.to","lang":"bg","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":49344864,"baseUrl":"https://bato.to","lang":"zh","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":413792936,"baseUrl":"https://bato.to","lang":"cs","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":127120581,"baseUrl":"https://bato.to","lang":"da","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":897709680,"baseUrl":"https://bato.to","lang":"nl","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":454148350,"baseUrl":"https://bato.to","lang":"fil","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":174179665,"baseUrl":"https://bato.to","lang":"fi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":318824497,"baseUrl":"https://bato.to","lang":"fr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1030715262,"baseUrl":"https://bato.to","lang":"de","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":395270492,"baseUrl":"https://bato.to","lang":"el","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":714199973,"baseUrl":"https://bato.to","lang":"he","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":596730405,"baseUrl":"https://bato.to","lang":"hi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1062815490,"baseUrl":"https://bato.to","lang":"hu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":551583074,"baseUrl":"https://bato.to","lang":"id","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":627608115,"baseUrl":"https://bato.to","lang":"it","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":709143604,"baseUrl":"https://bato.to","lang":"ja","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":42724933,"baseUrl":"https://bato.to","lang":"ko","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":900155911,"baseUrl":"https://bato.to","lang":"ms","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":945309998,"baseUrl":"https://bato.to","lang":"pl","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":791127366,"baseUrl":"https://bato.to","lang":"pt","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":364027455,"baseUrl":"https://bato.to","lang":"pt-br","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":604327151,"baseUrl":"https://bato.to","lang":"ro","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1057708733,"baseUrl":"https://bato.to","lang":"ru","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":106846058,"baseUrl":"https://bato.to","lang":"es","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":994364326,"baseUrl":"https://bato.to","lang":"es-419","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":214830540,"baseUrl":"https://bato.to","lang":"sv","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":375150025,"baseUrl":"https://bato.to","lang":"th","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":975805389,"baseUrl":"https://bato.to","lang":"tr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":159356975,"baseUrl":"https://bato.to","lang":"uk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":719702196,"baseUrl":"https://bato.to","lang":"vi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":605330389,"baseUrl":"https://bato.to","lang":"af","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":500354556,"baseUrl":"https://bato.to","lang":"sq","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":364708326,"baseUrl":"https://bato.to","lang":"am","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":579132190,"baseUrl":"https://bato.to","lang":"hy","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":704228914,"baseUrl":"https://bato.to","lang":"az","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":465187235,"baseUrl":"https://bato.to","lang":"be","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":996023306,"baseUrl":"https://bato.to","lang":"bn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":240943151,"baseUrl":"https://bato.to","lang":"bs","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":716816408,"baseUrl":"https://bato.to","lang":"my","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":539580717,"baseUrl":"https://bato.to","lang":"km","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":227037230,"baseUrl":"https://bato.to","lang":"ca","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":179733992,"baseUrl":"https://bato.to","lang":"ceb","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":419966767,"baseUrl":"https://bato.to","lang":"zh-hk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":775604375,"baseUrl":"https://bato.to","lang":"zh-tw","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":741957110,"baseUrl":"https://bato.to","lang":"hr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":65918010,"baseUrl":"https://bato.to","lang":"en-us","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":48306365,"baseUrl":"https://bato.to","lang":"eo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":591213520,"baseUrl":"https://bato.to","lang":"et","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":208056920,"baseUrl":"https://bato.to","lang":"fo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":304199459,"baseUrl":"https://bato.to","lang":"ka","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":281640882,"baseUrl":"https://bato.to","lang":"gn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":94882230,"baseUrl":"https://bato.to","lang":"gu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":218756163,"baseUrl":"https://bato.to","lang":"ht","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":683264032,"baseUrl":"https://bato.to","lang":"ha","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":461776450,"baseUrl":"https://bato.to","lang":"is","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":508086706,"baseUrl":"https://bato.to","lang":"ig","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":73117126,"baseUrl":"https://bato.to","lang":"ga","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":930639709,"baseUrl":"https://bato.to","lang":"jv","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":530409414,"baseUrl":"https://bato.to","lang":"kn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":998225990,"baseUrl":"https://bato.to","lang":"kk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1041723980,"baseUrl":"https://bato.to","lang":"ku","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":126099954,"baseUrl":"https://bato.to","lang":"ky","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":887942732,"baseUrl":"https://bato.to","lang":"lo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":842729597,"baseUrl":"https://bato.to","lang":"lv","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":634440809,"baseUrl":"https://bato.to","lang":"lt","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":180153330,"baseUrl":"https://bato.to","lang":"lb","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":954223541,"baseUrl":"https://bato.to","lang":"mk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":90956400,"baseUrl":"https://bato.to","lang":"mg","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":495467192,"baseUrl":"https://bato.to","lang":"ml","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":543265972,"baseUrl":"https://bato.to","lang":"mt","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":707155829,"baseUrl":"https://bato.to","lang":"mi","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":707060384,"baseUrl":"https://bato.to","lang":"mr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":284683165,"baseUrl":"https://bato.to","lang":"mn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":984326467,"baseUrl":"https://bato.to","lang":"ne","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":131491491,"baseUrl":"https://bato.to","lang":"no","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":778635885,"baseUrl":"https://bato.to","lang":"ny","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":963992548,"baseUrl":"https://bato.to","lang":"ps","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":679819356,"baseUrl":"https://bato.to","lang":"fa","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":661882861,"baseUrl":"https://bato.to","lang":"rm","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":48526565,"baseUrl":"https://bato.to","lang":"sm","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":175814547,"baseUrl":"https://bato.to","lang":"sr","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":45175594,"baseUrl":"https://bato.to","lang":"sh","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1066078403,"baseUrl":"https://bato.to","lang":"st","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":314138671,"baseUrl":"https://bato.to","lang":"sn","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1034525411,"baseUrl":"https://bato.to","lang":"sd","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":756819764,"baseUrl":"https://bato.to","lang":"si","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":1009716343,"baseUrl":"https://bato.to","lang":"sk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":468154856,"baseUrl":"https://bato.to","lang":"sl","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":601076648,"baseUrl":"https://bato.to","lang":"so","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":713165767,"baseUrl":"https://bato.to","lang":"sw","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":999603530,"baseUrl":"https://bato.to","lang":"tg","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":215668101,"baseUrl":"https://bato.to","lang":"ta","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":349639462,"baseUrl":"https://bato.to","lang":"ti","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":101342233,"baseUrl":"https://bato.to","lang":"to","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":308642475,"baseUrl":"https://bato.to","lang":"tk","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":49360269,"baseUrl":"https://bato.to","lang":"ur","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":110209479,"baseUrl":"https://bato.to","lang":"uz","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":335757198,"baseUrl":"https://bato.to","lang":"yo","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":955608975,"baseUrl":"https://bato.to","lang":"zu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":98386892,"baseUrl":"https://bato.to","lang":"eu","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"Bato.to","id":664604703,"baseUrl":"https://bato.to","lang":"pt-PT","typeSource":"bato.to","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-all-batoto.png","dateFormat":"MMM dd,yyyy","dateFormatLocale":"en","isNsfw":true,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/src/all/batoto/batoto-v0.0.35.dart","apiUrl":"","version":"0.0.35","isManga":true,"isFullData":false,"appMinVerReq":"0.0.6"},{"name":"MangaSee","id":531216751,"baseUrl":"https://mangasee123.com","lang":"en","typeSource":"nepnep","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangasee.png","dateFormat":"yyyy-MM-dd HH:mm:ss","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v0.0.25.dart","apiUrl":"","version":"0.0.25","isManga":true,"isFullData":true,"appMinVerReq":"0.0.6"},{"name":"MangaLife","id":434747478,"baseUrl":"https://manga4life.com","lang":"en","typeSource":"nepnep","iconUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icons/mangayomi-en-mangalife.png","dateFormat":"yyyy-MM-dd HH:mm:ss","dateFormatLocale":"en","isNsfw":false,"hasCloudflare":false,"sourceCodeUrl":"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v0.0.25.dart","apiUrl":"","version":"0.0.25","isManga":true,"isFullData":true,"appMinVerReq":"0.0.6"}] \ No newline at end of file diff --git a/manga/multisrc/heancms/heancms-v0.0.35.dart b/manga/multisrc/heancms/heancms-v0.0.35.dart index ce59e591..bd5440fe 100644 --- a/manga/multisrc/heancms/heancms-v0.0.35.dart +++ b/manga/multisrc/heancms/heancms-v0.0.35.dart @@ -224,11 +224,6 @@ class HeanCms extends MProvider { List sources = ["YugenMangas", "Reaper Scans", "Perf Scan"]; return sources.contains(sourceName); } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } Map getHeader(String url) { diff --git a/manga/multisrc/madara/madara-v0.0.35.dart b/manga/multisrc/madara/madara-v0.0.35.dart index c08ad65e..c9fa5175 100644 --- a/manga/multisrc/madara/madara-v0.0.35.dart +++ b/manga/multisrc/madara/madara-v0.0.35.dart @@ -15,8 +15,7 @@ class Madara extends MProvider { final names = xpath(res, '//*[@id^="manga-item"]/a/@title'); var images = xpath(res, '//*[@id^="manga-item"]/a/img/@data-src'); if (images.isEmpty) { - images = - xpath(res, '//*[@id^="manga-item"]/a/img/@data-lazy-src'); + images = xpath(res, '//*[@id^="manga-item"]/a/img/@data-lazy-src'); if (images.isEmpty) { images = xpath(res, '//*[@id^="manga-item"]/a/img/@srcset'); if (images.isEmpty) { @@ -47,8 +46,7 @@ class Madara extends MProvider { final names = xpath(res, '//*[@id^="manga-item"]/a/@title'); var images = xpath(res, '//*[@id^="manga-item"]/a/img/@data-src'); if (images.isEmpty) { - images = - xpath(res, '//*[@id^="manga-item"]/a/img/@data-lazy-src'); + images = xpath(res, '//*[@id^="manga-item"]/a/img/@data-lazy-src'); if (images.isEmpty) { images = xpath(res, '//*[@id^="manga-item"]/a/img/@srcset'); if (images.isEmpty) { @@ -77,21 +75,19 @@ class Madara extends MProvider { final res = await http('GET', json.encode(data)); List mangaList = []; - final urls = - xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/@href'); - final names = - xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/@title'); - var images = xpath( - res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@data-src'); + final urls = xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/@href'); + final names = xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/@title'); + var images = + xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@data-src'); if (images.isEmpty) { images = xpath( res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@data-lazy-src'); if (images.isEmpty) { - images = xpath( - res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@srcset'); + images = + xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@srcset'); if (images.isEmpty) { - images = xpath( - res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@src'); + images = + xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@src'); } } } @@ -158,39 +154,45 @@ class Madara extends MProvider { final datas = {"url": url, "sourceId": source.id}; res = await http('GET', json.encode(datas)); - manga.author = querySelectorAll(res, - selector: "div.author-content > a", - typeElement: 0, - attributes: "", - typeRegExp: 0) - .first; - manga.description = querySelectorAll(res, - selector: - "div.description-summary div.summary__content, div.summary_content div.post-content_item > h5 + div, div.summary_content div.manga-excerpt, div.sinopsis div.contenedor, .description-summary > p", - typeElement: 0, - attributes: "", - typeRegExp: 0) - .first; - manga.imageUrl = querySelectorAll(res, - selector: "div.summary_image img", - typeElement: 2, - attributes: "", - typeRegExp: 2) - .first; + final author = querySelectorAll(res, + selector: "div.author-content > a", + typeElement: 0, + attributes: "", + typeRegExp: 0); + if (author.isNotEmpty) { + manga.author = author.first; + } + final description = querySelectorAll(res, + selector: + "div.description-summary div.summary__content, div.summary_content div.post-content_item > h5 + div, div.summary_content div.manga-excerpt, div.sinopsis div.contenedor, .description-summary > p", + typeElement: 0, + attributes: "", + typeRegExp: 0); + if (description.isNotEmpty) { + manga.description = description.first; + } + final imageUrl = querySelectorAll(res, + selector: "div.summary_image img", + typeElement: 2, + attributes: "", + typeRegExp: 2); + if (imageUrl.isNotEmpty) { + manga.imageUrl = imageUrl.first; + } final mangaId = querySelectorAll(res, selector: "div[id^=manga-chapters-holder]", typeElement: 3, attributes: "data-id", typeRegExp: 0) .first; - manga.status = parseStatus( - querySelectorAll(res, - selector: "div.summary-content", - typeElement: 0, - attributes: "", - typeRegExp: 0) - .last, - statusList); + final status = querySelectorAll(res, + selector: "div.summary-content", + typeElement: 0, + attributes: "", + typeRegExp: 0); + if (status.isNotEmpty) { + manga.status = parseStatus(status.last, statusList); + } manga.genre = querySelectorAll(res, selector: "div.genres-content a", @@ -208,13 +210,9 @@ class Madara extends MProvider { "${baseUrl}wp-admin/admin-ajax.php?action=manga_get_chapters&manga=$mangaId"; final datasP = {"url": urll, "headers": headers, "sourceId": source.id}; res = await http('POST', json.encode(datasP)); - if (res == "400") { + if (res == "error") { final urlP = "${url}ajax/chapters"; - final datasP = { - "url": urlP, - "headers": headers, - "sourceId": source.id - }; + final datasP = {"url": urlP, "headers": headers, "sourceId": source.id}; res = await http('POST', json.encode(datasP)); } @@ -231,8 +229,8 @@ class Madara extends MProvider { dateF = xpath(resWebview, "//*[@id='manga-chapters-holder']/div[2]/div/ul/li/span/i/text()"); } - var dateUploads = parseDates( - dateF, source.dateFormat, source.dateFormatLocale); + var dateUploads = + parseDates(dateF, source.dateFormat, source.dateFormatLocale); if (dateF.length < chaptersNames.length) { final length = chaptersNames.length - dateF.length; String date = "${DateTime.now().millisecondsSinceEpoch}"; @@ -240,8 +238,8 @@ class Madara extends MProvider { date += "--..${DateTime.now().millisecondsSinceEpoch}"; } - final dateFF = parseDates( - dateF, source.dateFormat, source.dateFormatLocale); + final dateFF = + parseDates(dateF, source.dateFormat, source.dateFormatLocale); List chapterDate = date.split('--..'); for (var date in dateFF) { @@ -314,11 +312,6 @@ class Madara extends MProvider { } return pageUrls; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } Madara main() { diff --git a/manga/multisrc/mangareader/mangareader-v0.0.45.dart b/manga/multisrc/mangareader/mangareader-v0.0.45.dart index 6fcedd25..8450733c 100644 --- a/manga/multisrc/mangareader/mangareader-v0.0.45.dart +++ b/manga/multisrc/mangareader/mangareader-v0.0.45.dart @@ -92,33 +92,41 @@ class MangaReader extends MProvider { final datas = {"url": url, "sourceId": source.id}; final res = await http('GET', json.encode(datas)); - manga.author = xpath( - res, - '//*[@class="imptdt" and contains(text(), "Author") or @class="infotable" and contains(text(), "Author") or @class="infotable" and contains(text(), "Auteur") or @class="fmed" and contains(text(), "Auteur") or @class="infotable" and contains(text(), "Autor")]/text()', - '') - .first - .replaceAll("Autor", "") - .replaceAll("Author", "") - .replaceAll("Auteur", "") - .replaceAll("[Add, ]", ""); + final author = xpath( + res, + '//*[@class="imptdt" and contains(text(), "Author") or @class="infotable" and contains(text(), "Author") or @class="infotable" and contains(text(), "Auteur") or @class="fmed" and contains(text(), "Auteur") or @class="infotable" and contains(text(), "Autor")]/text()', + ''); - manga.description = querySelectorAll(res, - selector: ".desc, .entry-content[itemprop=description]", - typeElement: 0, - attributes: "", - typeRegExp: 0) - .first; + if (author.isNotEmpty) { + manga.author = author.first + .replaceAll("Autor", "") + .replaceAll("Author", "") + .replaceAll("Auteur", "") + .replaceAll("[Add, ]", ""); + } + + final description = querySelectorAll(res, + selector: ".desc, .entry-content[itemprop=description]", + typeElement: 0, + attributes: "", + typeRegExp: 0); + if (description.isNotEmpty) { + manga.description = description.first; + } final status = xpath( - res, - '//*[@class="imptdt" and contains(text(), "Status") or @class="imptdt" and contains(text(), "Estado") or @class="infotable" and contains(text(), "Status") or @class="infotable" and contains(text(), "Statut") or @class="imptdt" and contains(text(), "Statut")]/text()', - '') - .first - .replaceAll("Status", "") - .replaceAll("Estado", "") - .replaceAll("Statut", ""); + res, + '//*[@class="imptdt" and contains(text(), "Status") or @class="imptdt" and contains(text(), "Estado") or @class="infotable" and contains(text(), "Status") or @class="infotable" and contains(text(), "Statut") or @class="imptdt" and contains(text(), "Statut")]/text()', + ''); - manga.status = parseStatus(status, statusList); + if (status.isNotEmpty) { + manga.status = parseStatus( + status.first + .replaceAll("Status", "") + .replaceAll("Estado", "") + .replaceAll("Statut", ""), + statusList); + } manga.genre = xpath(res, '//*[@class="gnr" or @class="mgen" or @class="seriestugenre" ]/a/text()'); @@ -130,8 +138,8 @@ class MangaReader extends MProvider { var chapterDates = xpath(res, '//*[@class="bxcl" or @class="cl" or @class="chbox" or @class="eph-num" or @id="chapterlist"]/div/a/span[@class="chapterdate" and not(text()="{{date}}")]/text()'); - var dateUploads = parseDates( - chapterDates, source.dateFormat, source.dateFormatLocale); + var dateUploads = + parseDates(chapterDates, source.dateFormat, source.dateFormatLocale); List? chaptersList = []; for (var i = 0; i < chaptersNames.length; i++) { @@ -157,8 +165,7 @@ class MangaReader extends MProvider { pages = xpath(res, '//*[@id="readerarea"]/img/@src'); } if (pages.isEmpty || pages.length == 1) { - final images = - regExp(res, "\"images\"\\s*:\\s*(\\[.*?])", "", 1, 1); + final images = regExp(res, "\"images\"\\s*:\\s*(\\[.*?])", "", 1, 1); final pages = json.decode(images) as List; for (var page in pages) { pagesUrl.add(page); @@ -172,12 +179,10 @@ class MangaReader extends MProvider { MPages mangaRes(String res) { List mangaList = []; - final urls = - xpath(res, '//*[ @class="imgu" or @class="bsx"]/a/@href'); - final names = - xpath(res, '//*[ @class="imgu" or @class="bsx"]/a/@title'); - final images = xpath( - res, '//*[ @class="imgu" or @class="bsx"]/a/div[1]/img/@src'); + final urls = xpath(res, '//*[ @class="imgu" or @class="bsx"]/a/@href'); + final names = xpath(res, '//*[ @class="imgu" or @class="bsx"]/a/@title'); + final images = + xpath(res, '//*[ @class="imgu" or @class="bsx"]/a/div[1]/img/@src'); for (var i = 0; i < names.length; i++) { MManga manga = MManga(); @@ -196,11 +201,6 @@ class MangaReader extends MProvider { } return "/manga"; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } MangaReader main() { diff --git a/manga/multisrc/mangareader/sources.dart b/manga/multisrc/mangareader/sources.dart index 7a76b1d6..d0d0ab48 100644 --- a/manga/multisrc/mangareader/sources.dart +++ b/manga/multisrc/mangareader/sources.dart @@ -9,6 +9,24 @@ const defaultDateFormatLocale = "en_US"; List get mangareaderSourcesList => _mangareaderSourcesList; List _mangareaderSourcesList = [ + Source( + name: "Beast Scans", + baseUrl: "https://beast-scans.com", + lang: "ar", + iconUrl: getIconUrl("asurascans", "en"), + dateFormat: "MMMM dd, yyyy", + dateFormatLocale: "ar", + version: mangareaderVersion, + sourceCodeUrl: mangareaderSourceCodeUrl), + Source( + name: "Lelmanga", + baseUrl: "https://www.lelmanga.com", + lang: "fr", + iconUrl: getIconUrl("lelmanga", "fr"), + dateFormat: "MMMM d, yyyy", + dateFormatLocale: "en", + version: mangareaderVersion, + sourceCodeUrl: mangareaderSourceCodeUrl), Source( name: "Asura Scans", baseUrl: "https://asuratoon.com/", diff --git a/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart b/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart index 4fb1882b..77899ec6 100644 --- a/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart +++ b/manga/multisrc/mmrcms/mmrcms-v0.0.35.dart @@ -1,8 +1,8 @@ import 'package:mangayomi/bridge_lib.dart'; import 'dart:convert'; -class MMCRCms extends MProvider { - MMCRCms(); +class MMRCMS extends MProvider { + MMRCMS(); @override Future getPopular(MSource source, int page) async { @@ -131,35 +131,33 @@ class MMCRCms extends MProvider { final datas = {"url": url, "sourceId": source.id}; final res = await http('GET', json.encode(datas)); - manga.author = xpath(res, - '//*[@class="dl-horizontal"]/dt[contains(text(), "Auteur(s)") or contains(text(), "Author(s)") or contains(text(), "Autor(es)") or contains(text(), "Yazar(lar) or contains(text(), "Mangaka(lar)")]//following-sibling::dd[1]/text()') - .first; + final author = xpath(res, + '//*[@class="dl-horizontal"]/dt[contains(text(), "Auteur(s)") or contains(text(), "Author(s)") or contains(text(), "Autor(es)") or contains(text(), "Yazar(lar) or contains(text(), "Mangaka(lar)")]//following-sibling::dd[1]/text()'); + if (author.isNotEmpty) { + manga.author = author.first; + } final status = xpath(res, - '//*[@class="dl-horizontal"]/dt[contains(text(), "Statut") or contains(text(), "Status") or contains(text(), "Estado") or contains(text(), "Durum")]/following-sibling::dd[1]/text()') - .first; - manga.status = parseStatus(status, statusList); - manga.description = - xpath(res, '//*[@class="well" or @class="manga well"]/p/text()') - .first; + '//*[@class="dl-horizontal"]/dt[contains(text(), "Statut") or contains(text(), "Status") or contains(text(), "Estado") or contains(text(), "Durum")]/following-sibling::dd[1]/text()'); + if (status.isNotEmpty) { + manga.status = parseStatus(status.first, statusList); + } + + final description = + xpath(res, '//*[@class="well" or @class="manga well"]/p/text()'); + if (description.isNotEmpty) { + manga.description = description.first; + } + manga.genre = xpath(res, '//*[@class="dl-horizontal"]/dt[contains(text(), "Categories") or contains(text(), "Categorias") or contains(text(), "Categorías") or contains(text(), "Catégories") or contains(text(), "Kategoriler" or contains(text(), "Kategorie") or contains(text(), "Kategori") or contains(text(), "Tagi"))]/following-sibling::dd[1]/text()'); - final baseUrl = "${source.baseUrl}/"; - final headers = { - "Referer": baseUrl, - "Content-Type": "application/x-www-form-urlencoded", - "X-Requested-With": "XMLHttpRequest" - }; - - var chapUrls = - xpath(res, '//*[@class="chapter-title-rtl"]/a/@href'); - var chaptersNames = - xpath(res, '//*[@class="chapter-title-rtl"]/a/text()'); + var chapUrls = xpath(res, '//*[@class="chapter-title-rtl"]/a/@href'); + var chaptersNames = xpath(res, '//*[@class="chapter-title-rtl"]/a/text()'); var chaptersDates = xpath(res, '//*[@class="date-chapter-title-rtl"]/text()'); - var dateUploads = parseDates( - chaptersDates, source.dateFormat, source.dateFormatLocale); + var dateUploads = + parseDates(chaptersDates, source.dateFormat, source.dateFormatLocale); List? chaptersList = []; for (var i = 0; i < chaptersNames.length; i++) { @@ -179,8 +177,8 @@ class MMCRCms extends MProvider { final res = await http('GET', json.encode(datas)); List pagesUrl = []; - final pages = xpath( - res, '//*[@id="all"]/img[@class="img-responsive"]/@data-src'); + final pages = + xpath(res, '//*[@id="all"]/img[@class="img-responsive"]/@data-src'); for (var page in pages) { if (page.startsWith('//')) { pagesUrl.add(page.replaceAll('//', 'https://')); @@ -191,13 +189,8 @@ class MMCRCms extends MProvider { return pagesUrl; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } -MMCRCms main() { - return MMCRCms(); +MMRCMS main() { + return MMRCMS(); } diff --git a/manga/multisrc/nepnep/nepnep-v0.0.25.dart b/manga/multisrc/nepnep/nepnep-v0.0.25.dart index 61f50ade..f7493bcc 100644 --- a/manga/multisrc/nepnep/nepnep-v0.0.25.dart +++ b/manga/multisrc/nepnep/nepnep-v0.0.25.dart @@ -70,22 +70,7 @@ class NepNep extends MProvider { final vmChapters = substringBefore(substringAfter(script, "vm.Chapters = "), ";"); final chapters = json.decode(vmChapters) as List; - var chapUrls = chapters - .map((ch) => - '/read-online/${substringAfter(url, "/manga/")}${chapterURLEncode(ch['Chapter'])}') - .toList(); - var chaptersNames = chapters.map((ch) { - String name = ch['ChapterName'] ?? ""; - String indexChapter = ch['Chapter']; - if (name.isEmpty) { - name = '${ch['Type']} ${chapterImage(indexChapter, true)}'; - } - return name; - }).toList(); - var chaptersDates = chapters.map((ch) => ch['Date']).toList(); - var dateUploads = - parseDates(chaptersDates, source.dateFormat, source.dateFormatLocale); List chaptersList = []; for (var ch in chapters) { @@ -219,11 +204,6 @@ class NepNep extends MProvider { return '-chapter-$n$suffix$index.html'; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } Map getHeader(String url) { diff --git a/manga/multisrc/nepnep/sources.dart b/manga/multisrc/nepnep/sources.dart index af9b4246..548c4726 100644 --- a/manga/multisrc/nepnep/sources.dart +++ b/manga/multisrc/nepnep/sources.dart @@ -15,6 +15,7 @@ List _nepnepSourcesList = [ lang: "en", typeSource: "nepnep", iconUrl: getIconUrl("mangasee", "en"), + isFullData: true, dateFormat: defaultDateFormat, dateFormatLocale: defaultDateFormatLocale, version: nepnepVersion, @@ -26,6 +27,7 @@ List _nepnepSourcesList = [ lang: "en", typeSource: "nepnep", iconUrl: getIconUrl("mangalife", "en"), + isFullData: true, dateFormat: defaultDateFormat, dateFormatLocale: defaultDateFormatLocale, version: nepnepVersion, diff --git a/manga/src/all/batoto/batoto-v0.0.35.dart b/manga/src/all/batoto/batoto-v0.0.35.dart index 961a1955..9f192913 100644 --- a/manga/src/all/batoto/batoto-v0.0.35.dart +++ b/manga/src/all/batoto/batoto-v0.0.35.dart @@ -189,11 +189,6 @@ class Batoto extends MProvider { } return "langs=$lang"; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } Map getMirrorPref() { diff --git a/manga/src/all/comick/comick-v0.0.35.dart b/manga/src/all/comick/comick-v0.0.35.dart index f1f273d8..de315509 100644 --- a/manga/src/all/comick/comick-v0.0.35.dart +++ b/manga/src/all/comick/comick-v0.0.35.dart @@ -166,11 +166,6 @@ class ComickFun extends MProvider { return result; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } Map getHeader(String url) { diff --git a/manga/src/all/mangadex/mangadex-v0.0.35.dart b/manga/src/all/mangadex/mangadex-v0.0.35.dart index e4fb8d97..68f2cb5d 100644 --- a/manga/src/all/mangadex/mangadex-v0.0.35.dart +++ b/manga/src/all/mangadex/mangadex-v0.0.35.dart @@ -57,15 +57,10 @@ class MangaDex extends MProvider { res, r'$..data.relationships[*].attributes.name', ', '); String expressionDescriptionA = r'$..data.attributes.description.en'; - String expressionDescription = regExp( - r'$..data.attributes.description[a]', - r'\[a\]', - ".${source.lang}", - 0, - 1); + String expressionDescription = regExp(r'$..data.attributes.description[a]', + r'\[a\]', ".${source.lang}", 0, 1); - String description = - jsonPathToString(res, expressionDescription, ''); + String description = jsonPathToString(res, expressionDescription, ''); if (description.isEmpty) { description = jsonPathToString(res, expressionDescriptionA, ''); } @@ -81,29 +76,27 @@ class MangaDex extends MProvider { if (contentRating != "safe") { genres.add(contentRating); } - String publicationDemographic = jsonPathToString( - res, r'$..data.attributes.publicationDemographic', ''); + String publicationDemographic = + jsonPathToString(res, r'$..data.attributes.publicationDemographic', ''); if (publicationDemographic == "null") { } else { genres.add(publicationDemographic); } manga.genre = genres; - String statusRes = - jsonPathToString(res, r'$..data.attributes.status', ''); + String statusRes = jsonPathToString(res, r'$..data.attributes.status', ''); manga.status = parseStatus(statusRes, statusList); final mangaId = url.split('/').last; final paginatedChapterList = await paginatedChapterListRequest(mangaId, 0, source.lang); final chapterList = - jsonPathToString(paginatedChapterList, r'$.data[*]', '_.') - .split('_.'); - int limit = int.parse( - jsonPathToString(paginatedChapterList, r'$.limit', '')); - int offset = int.parse( - jsonPathToString(paginatedChapterList, r'$.offset', '')); - int total = int.parse( - jsonPathToString(paginatedChapterList, r'$.total', '')); + jsonPathToString(paginatedChapterList, r'$.data[*]', '_.').split('_.'); + int limit = + int.parse(jsonPathToString(paginatedChapterList, r'$.limit', '')); + int offset = + int.parse(jsonPathToString(paginatedChapterList, r'$.offset', '')); + int total = + int.parse(jsonPathToString(paginatedChapterList, r'$.total', '')); List chapterListA = []; final list = @@ -115,8 +108,7 @@ class MangaDex extends MProvider { offset += limit; var newRequest = await paginatedChapterListRequest(mangaId, offset, source.lang); - int total = - int.parse(jsonPathToString(newRequest, r'$.total', '')); + int total = int.parse(jsonPathToString(newRequest, r'$.total', '')); final chapterList = jsonPathToString(paginatedChapterList, r'$.data[*]', '_.') .split('_.'); @@ -159,8 +151,7 @@ class MangaDex extends MProvider { List getChapters(int length, String paginatedChapterListA) { List chaptersList = []; String paginatedChapterList = paginatedChapterListA.toString(); - final dataList = - jsonPathToList(paginatedChapterList, r'$.data[*]', 0); + final dataList = jsonPathToList(paginatedChapterList, r'$.data[*]', 0); for (var res in dataList) { String scan = "".toString(); final groups = jsonPathToList(res, @@ -215,9 +206,8 @@ class MangaDex extends MProvider { chapterr.name = chapName; chapterr.url = id; chapterr.scanlator = scan; - chapterr.dateUpload = parseDates( - [date], "yyyy-MM-dd'T'HH:mm:ss+SSS", "en_US") - .first; + chapterr.dateUpload = + parseDates([date], "yyyy-MM-dd'T'HH:mm:ss+SSS", "en_US").first; chaptersList.add(chapterr); } } @@ -268,11 +258,6 @@ class MangaDex extends MProvider { } return coverFileName; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } MangaDex main() { diff --git a/manga/src/en/mangahere/mangahere-v0.0.35.dart b/manga/src/en/mangahere/mangahere-v0.0.35.dart index 5416fe00..ffcb8c17 100644 --- a/manga/src/en/mangahere/mangahere-v0.0.35.dart +++ b/manga/src/en/mangahere/mangahere-v0.0.35.dart @@ -13,12 +13,12 @@ class MangaHere extends MProvider { final res = await http('POST', json.encode(data)); List mangaList = []; - final names = xpath( - res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@title'); + final names = + xpath(res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@title'); final images = xpath(res, '//*[ contains(@class, "manga-list-1-list")]/li/a/img[@class="manga-list-1-cover"]/@src'); - final urls = xpath( - res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@href'); + final urls = + xpath(res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@href'); for (var i = 0; i < names.length; i++) { MManga manga = MManga(); @@ -40,12 +40,12 @@ class MangaHere extends MProvider { final res = await http('POST', json.encode(data)); List mangaList = []; - final names = xpath( - res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@title'); + final names = + xpath(res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@title'); final images = xpath(res, '//*[ contains(@class, "manga-list-1-list")]/li/a/img[@class="manga-list-1-cover"]/@src'); - final urls = xpath( - res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@href'); + final urls = + xpath(res, '//*[ contains(@class, "manga-list-1-list")]/li/a/@href'); for (var i = 0; i < names.length; i++) { MManga manga = MManga(); @@ -67,12 +67,12 @@ class MangaHere extends MProvider { final res = await http('POST', json.encode(data)); List mangaList = []; - final names = xpath( - res, '//*[contains(@class, "manga-list-4-list")]/li/a/@title'); + final names = + xpath(res, '//*[contains(@class, "manga-list-4-list")]/li/a/@title'); final images = xpath(res, '//*[contains(@class, "manga-list-4-list")]/li/a/img[@class="manga-list-4-cover"]/@src'); - final urls = xpath( - res, '//*[contains(@class, "manga-list-4-list")]/li/a/@href'); + final urls = + xpath(res, '//*[contains(@class, "manga-list-4-list")]/li/a/@href'); for (var i = 0; i < names.length; i++) { MManga manga = MManga(); @@ -95,25 +95,21 @@ class MangaHere extends MProvider { final res = await http('GET', json.encode(data)); MManga manga = MManga(); manga.author = - xpath(res, '//*[@class="detail-info-right-say"]/a/text()') - .first; - manga.description = - xpath(res, '//*[@class="fullcontent"]/text()').first; + xpath(res, '//*[@class="detail-info-right-say"]/a/text()').first; + manga.description = xpath(res, '//*[@class="fullcontent"]/text()').first; final status = - xpath(res, '//*[@class="detail-info-right-title-tip"]/text()') - .first; + xpath(res, '//*[@class="detail-info-right-title-tip"]/text()').first; manga.status = parseStatus(status, statusList); manga.genre = xpath(res, '//*[@class="detail-info-right-tag-list"]/a/text()'); - var chapUrls = - xpath(res, '//*[@class="detail-main-list"]/li/a/@href'); + var chapUrls = xpath(res, '//*[@class="detail-main-list"]/li/a/@href'); var chaptersNames = xpath(res, '//*[@class="detail-main-list"]/li/a/div/p[@class="title3"]/text()'); final chapterDates = xpath(res, '//*[@class="detail-main-list"]/li/a/div/p[@class="title2"]/text()'); - var dateUploads = parseDates( - chapterDates, source.dateFormat, source.dateFormatLocale); + var dateUploads = + parseDates(chapterDates, source.dateFormat, source.dateFormatLocale); List? chaptersList = []; for (var i = 0; i < chaptersNames.length; i++) { @@ -190,8 +186,7 @@ class MangaHere extends MProvider { } } } - String deobfuscatedScript = - evalJs(responseText.replaceAll("eval", "")); + String deobfuscatedScript = evalJs(responseText.replaceAll("eval", "")); int baseLinkStartPos = deobfuscatedScript.indexOf("pix=") + 5; int baseLinkEndPos = @@ -210,11 +205,6 @@ class MangaHere extends MProvider { return pageUrls; } - - @override - Future> getVideoList(MSource source, String url) async { - return []; - } } Map getHeader(String url) {