Manga-Scout
An extension to check for new manga chapters across multiple webpages.
Cos'è Manga-Scout?
Manga-Scout è un'estensione di Chrome sviluppata da Florian Riedel, e la sua funzione principale è "An extension to check for new manga chapters across multiple webpages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Manga-Scout
Scarica i file di estensione Manga-Scout in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Are you reading manga series that are not on a single page? Your favorite aggregator does not provide notifications? You want to support the translators by reading on their page, but its annoying to track updates across the pages of multiple translation groups? Fret not, Manga-Scout will keep track of all your favorite Mangas across a multitude of Webpages and will notify you, as soon as a new chapter is available. Currently supported: All pages that use the the Madara- or MangaStream-Theme or are built using the Genkan Reader. E.g. asurascans.com, fanfox.net, leviatanscans.com, mangadex.org, reaperscans.com, webtoons.com, zeroscans.com and at least 25 other pages. For a full list visit https://manga.fochlac.com/?pages
Informazioni di Base sull'Estensione
Nome | Manga-Scout |
ID | fdmboijadaabmpkdfikffbgpmibholfo |
URL Ufficiale | https://chromewebstore.google.com/detail/manga-scout/fdmboijadaabmpkdfikffbgpmibholfo |
Descrizione | An extension to check for new manga chapters across multiple webpages. |
Dimensione del File | 586 KB |
Conteggio Installazioni | 179 |
Versione Corrente | 1.8.4 |
Ultimo Aggiornamento | 2022-12-22 |
Data di Pubblicazione | 2021-09-15 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Florian Riedel |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://manga.fochlac.com |
URL della Pagina della Politica sulla Privacy | https://manga.fochlac.com?impressum |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manga-Scout", "version": "1.8.4", "manifest_version": 3, "description": "An extension to check for new manga chapters across multiple webpages.", "icons": { "16": "icons\/manga-16-half.png", "128": "icons\/manga-163-half.png" }, "background": { "service_worker": ".\/sw.js" }, "permissions": [ "alarms", "storage", "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "action": { "default_icon": { "19": "icons\/manga-19-half.png", "38": "icons\/manga-32-half.png" }, "default_title": "No new chapters available.", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "images\/*", "fonts\/*" ], "extension_ids": [ "fdmboijadaabmpkdfikffbgpmibholfo" ] } ] } |