Novel Updates Tracker

A chrome extension for the site https://www.novelupdates.com/

O que é Novel Updates Tracker?

Novel Updates Tracker é uma extensão do Chrome desenvolvida por redris96, e sua principal característica é "A chrome extension for the site https://www.novelupdates.com/".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Novel Updates Tracker

Baixe arquivos de extensão Novel Updates Tracker 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

                        This is an extension for novel updates website. It enables you to do the following things:
 * Search for novels directly from the extension.
 * Subscribe to novels.
 * Gives updates when new chapters come out for subscribed novels.
 * Open new chapter pages directly from the extension.
 * Manage subscriptions in the options page. 
 * Auto import novels in reading list (Just open reading list page and click on import button which pops up)                    

Informações Básicas da Extensão

Nome Novel Updates Tracker Novel Updates Tracker
ID igmmmhdfkoijidkeddoeafaldcbnmjnn
URL Oficial https://chromewebstore.google.com/detail/novel-updates-tracker/igmmmhdfkoijidkeddoeafaldcbnmjnn
Descrição A chrome extension for the site https://www.novelupdates.com/
Tamanho do Arquivo 199 KB
Contagem de Instalações 78
Versão Atual 1.1.0
Última Atualização 2018-12-26
Data de Publicação 2018-12-26
Classificação 3.80/5 Total de 5 Avaliações
Desenvolvedor redris96
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Novel Updates Tracker",
    "version": "1.1.0",
    "description": "A chrome extension for the site https:\/\/www.novelupdates.com\/",
    "minimum_chrome_version": "23",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "alarms"
    ],
    "options_page": "settings.html",
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/NU.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.novelupdates.com\/series\/*",
                "https:\/\/*.novelupdates.com\/series\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.novelupdates.com\/reading-list\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content_reading.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "images\/NU.png"
    },
    "manifest_version": 2
}