Manga Subscriber

This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.

O que é Manga Subscriber?

Manga Subscriber é uma extensão do Chrome desenvolvida por jasonshao8, e sua principal característica é "This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Manga Subscriber

Baixe arquivos de extensão Manga Subscriber 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

                        Have you ever browsed mangareader.net or mangapanda.com and realized how annoying it was to find new updates for all your favorite chapters? Well, now Manga Subscriber allows you to subscribe to manga so that all the updates you care about will be shown first.

Manga Subscriber also includes other hot features such as keeping track of already read chapters. You'll never have to worry about remembering where you left off.                    

Informações Básicas da Extensão

Nome Manga Subscriber Manga Subscriber
ID ipmfeedmdlannjnlfkonkgkhjmmmfllp
URL Oficial https://chrome.google.com/webstore/detail/manga-subscriber/ipmfeedmdlannjnlfkonkgkhjmmmfllp
Descrição This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.
Tamanho do Arquivo 2.34 MB
Contagem de Instalações 33
Versão Atual 1.2
Última Atualização 2015-11-04
Data de Publicação 2015-11-04
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor jasonshao8
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Manga Subscriber",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "description": "This allows users to see updates of their manga series on the homepage. It also keeps track which chapters have been read.",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.mangareader.net\/*",
                "http:\/\/www.mangapanda.com\/*"
            ],
            "js": [
                "Manga_Subscriber.user.js"
            ]
        }
    ]
}