diff --git a/src/it/zeurelscan/AndroidManifest.xml b/src/it/zeurelscan/AndroidManifest.xml
new file mode 100644
index 000000000..30deb7f79
--- /dev/null
+++ b/src/it/zeurelscan/AndroidManifest.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/src/it/zeurelscan/build.gradle b/src/it/zeurelscan/build.gradle
new file mode 100644
index 000000000..91fa1e008
--- /dev/null
+++ b/src/it/zeurelscan/build.gradle
@@ -0,0 +1,12 @@
+apply plugin: 'com.android.application'
+apply plugin: 'kotlin-android'
+
+ext {
+ extName = 'ZeurelScan'
+ pkgNameSuffix = 'it.zeurelscan'
+ extClass = '.ZeurelScan'
+ extVersionCode = 1
+ libVersion = '1.2'
+}
+
+apply from: "$rootDir/common.gradle"
diff --git a/src/it/zeurelscan/res/mipmap-hdpi/ic_launcher.png b/src/it/zeurelscan/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 000000000..718d38d77
Binary files /dev/null and b/src/it/zeurelscan/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/src/it/zeurelscan/res/mipmap-mdpi/ic_launcher.png b/src/it/zeurelscan/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 000000000..b1716c6bf
Binary files /dev/null and b/src/it/zeurelscan/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/src/it/zeurelscan/res/mipmap-xhdpi/ic_launcher.png b/src/it/zeurelscan/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 000000000..26ac55c8b
Binary files /dev/null and b/src/it/zeurelscan/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/src/it/zeurelscan/res/mipmap-xxhdpi/ic_launcher.png b/src/it/zeurelscan/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 000000000..86b51043a
Binary files /dev/null and b/src/it/zeurelscan/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/src/it/zeurelscan/res/mipmap-xxxhdpi/ic_launcher.png b/src/it/zeurelscan/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 000000000..4aea4dc9d
Binary files /dev/null and b/src/it/zeurelscan/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/src/it/zeurelscan/res/web_hi_res_512.png b/src/it/zeurelscan/res/web_hi_res_512.png
new file mode 100644
index 000000000..bad2be94a
Binary files /dev/null and b/src/it/zeurelscan/res/web_hi_res_512.png differ
diff --git a/src/it/zeurelscan/src/eu/kanade/tachiyomi/extension/it/zeurelscan/ZeurelScan.kt b/src/it/zeurelscan/src/eu/kanade/tachiyomi/extension/it/zeurelscan/ZeurelScan.kt
new file mode 100644
index 000000000..fd892cc85
--- /dev/null
+++ b/src/it/zeurelscan/src/eu/kanade/tachiyomi/extension/it/zeurelscan/ZeurelScan.kt
@@ -0,0 +1,130 @@
+package eu.kanade.tachiyomi.extension.it.zeurelscan
+
+import eu.kanade.tachiyomi.network.GET
+import eu.kanade.tachiyomi.source.model.FilterList
+import eu.kanade.tachiyomi.source.model.MangasPage
+import eu.kanade.tachiyomi.source.model.Page
+import eu.kanade.tachiyomi.source.model.SChapter
+import eu.kanade.tachiyomi.source.model.SManga
+import eu.kanade.tachiyomi.source.online.HttpSource
+import eu.kanade.tachiyomi.util.asJsoup
+import okhttp3.Request
+import okhttp3.Response
+import rx.Observable
+import java.text.ParseException
+import java.text.SimpleDateFormat
+import java.util.Locale
+
+class ZeurelScan : HttpSource() {
+
+ override val name = "ZeurelScan"
+
+ override val baseUrl = "https://www.zeurelscan.com"
+
+ override val lang = "it"
+
+ override val supportsLatest = true
+
+ // Caching results for search
+ private val mangaList: MutableList = mutableListOf()
+
+ // Popular (not actually sorted as site has no such functionality)
+
+ override fun popularMangaRequest(page: Int): Request = GET(baseUrl, headers)
+
+ override fun popularMangaParse(response: Response): MangasPage {
+ mangaList.clear()
+ response.asJsoup().select("a.titoliSerie").forEach {
+ val manga = SManga.create().apply {
+ setUrlWithoutDomain(it.attr("href"))
+ title = it.text()
+ }
+ mangaList.add(manga)
+ }
+ return MangasPage(mangaList, false)
+ }
+
+ // Latest
+
+ override fun latestUpdatesRequest(page: Int): Request = popularMangaRequest(page)
+
+ override fun latestUpdatesParse(response: Response): MangasPage {
+ val document = response.asJsoup()
+ // The titles of all unique manga in the latest section
+ val titles = document.select("div.capitoli_mini").distinctBy {
+ it.selectFirst("div:not(:has(img))").text()
+ }.map { it.selectFirst("div:not(:has(img))").text() }
+
+ // Gets manga link from dropdown menu as latest section links directly to chapter
+ val latestManga = document.select("a.titoliSerie").mapNotNull { element ->
+ if (titles.any { title -> title.contains(element.text()) }) {
+ SManga.create().apply {
+ setUrlWithoutDomain(element.attr("href"))
+ title = element.text()
+ }
+ } else {
+ null
+ }
+ }
+ return MangasPage(latestManga, false)
+ }
+
+ // Search from results retrieved by popularMangaRequest
+
+ override fun fetchSearchManga(page: Int, query: String, filters: FilterList): Observable = Observable.just(
+ MangasPage(mangaList.filter { it.title.contains(query, true) }, false)
+ )
+
+ override fun searchMangaParse(response: Response): MangasPage = throw UnsupportedOperationException("Not used")
+ override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request = throw UnsupportedOperationException("Not used")
+
+ // Details
+
+ override fun mangaDetailsParse(response: Response) = SManga.create().apply {
+ val document = response.asJsoup()
+ val info = document.selectFirst("div.testo")
+
+ title = info.selectFirst("div.intestazione:contains(Titolo)").nextElementSibling().text()
+ author = info.selectFirst("div.intestazione:contains(Autore)").nextElementSibling().text()
+ artist = info.selectFirst("div.intestazione:contains(Artista)").nextElementSibling().text()
+ genre = info.selectFirst("div.intestazione:contains(Genere)").nextElementSibling().text()
+ description = info.selectFirst("div.intestazione:contains(Trama)").nextElementSibling().text()
+ thumbnail_url = document.select("div.immagine > img").attr("abs:src")
+
+ status = parseStatus(info.selectFirst("div.intestazione:contains(Stato)").nextElementSibling().text())
+ }
+
+ private fun parseStatus(status: String) = when {
+ status.contains("In Corso", true) -> SManga.ONGOING
+ status.contains("Completa", true) -> SManga.COMPLETED
+ else -> SManga.UNKNOWN
+ }
+
+ // Chapters
+
+ override fun chapterListParse(response: Response): List {
+ val list = response.asJsoup().select("div.rigaCap")
+ return list.map {
+ SChapter.create().apply {
+ setUrlWithoutDomain(it.selectFirst("a").attr("abs:href"))
+ name = it.selectFirst("div.titolo").text()
+ date_upload = parseChapterDate(it.selectFirst("div.data").text())
+ chapter_number = it.selectFirst("div.numCap").text().substringAfter("#").toFloatOrNull() ?: 0f
+ }
+ }
+ }
+
+ private fun parseChapterDate(date: String): Long =
+ try {
+ SimpleDateFormat("d MMM yyyy", Locale.ITALIAN).parse(date)?.time ?: 0L
+ } catch (e: ParseException) {
+ 0L
+ }
+
+ override fun pageListParse(response: Response): List =
+ response.asJsoup().select("div.Immag img").mapIndexed { i, element ->
+ Page(i, "", element.attr("abs:src"))
+ }
+
+ override fun imageUrlParse(response: Response): String = throw UnsupportedOperationException("Not used")
+}