Manga-Scout

An extension to check for new manga chapters across multiple webpages.

O que é Manga-Scout?

Manga-Scout é uma extensão do Chrome desenvolvida por Florian Riedel, e sua principal característica é "An extension to check for new manga chapters across multiple webpages.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Manga-Scout

Baixe arquivos de extensão Manga-Scout no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Manga-Scout Manga-Scout
ID fdmboijadaabmpkdfikffbgpmibholfo
URL Oficial https://chromewebstore.google.com/detail/manga-scout/fdmboijadaabmpkdfikffbgpmibholfo
Descrição An extension to check for new manga chapters across multiple webpages.
Tamanho do Arquivo 586 KB
Contagem de Instalações 179
Versão Atual 1.8.4
Última Atualização 2022-12-22
Data de Publicação 2021-09-15
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor Florian Riedel
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://manga.fochlac.com
URL da Página de Política de Privacidade https://manga.fochlac.com?impressum
Idiomas Suportados 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"
            ]
        }
    ]
}