AnimeTake Watcher

A simple extension that highlights favorited shows on AnimeTake

O que é AnimeTake Watcher?

AnimeTake Watcher é uma extensão do Chrome desenvolvida por Lunyx, e sua principal característica é "A simple extension that highlights favorited shows on AnimeTake".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AnimeTake Watcher

Baixe arquivos de extensão AnimeTake Watcher 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 extension is designed to be used on AnimeTake.com.  You can add shows to your watch list from the download page of any episode.  Shows on your watch list will have their name highlighted in yellow so that you can easily see them on the main page.  Great for keeping track of shows that you want to watch each season without having to remember the names of all of them.  For any comments or bug reports, please send them to [email protected].                    

Informações Básicas da Extensão

Nome AnimeTake Watcher AnimeTake Watcher
ID iemmmdhaohepnnibpbdbeamkgpmkoahj
URL Oficial https://chrome.google.com/webstore/detail/animetake-watcher/iemmmdhaohepnnibpbdbeamkgpmkoahj
Descrição A simple extension that highlights favorited shows on AnimeTake
Tamanho do Arquivo 169 KB
Contagem de Instalações 88
Versão Atual 1.0
Última Atualização 2014-10-11
Data de Publicação 2014-10-11
Classificação 4.40/5 Total de 5 Avaliações
Desenvolvedor Lunyx
Tipo de Pagamento free
Site da Extensão http://www.animetake.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AnimeTake Watcher",
    "description": "A simple extension that highlights favorited shows on AnimeTake",
    "version": "1.0",
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.animetake.com\/*"
            ],
            "js": [
                ".\/js\/jquery-2.0.3.min.js",
                ".\/js\/json.js",
                ".\/js\/jstorage.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "AnimeTake Watcher",
        "default_icon": "img\/at.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img\/yoko.png"
    }
}