AnimeTake Watcher

A simple extension that highlights favorited shows on AnimeTake

¿Qué es AnimeTake Watcher?

AnimeTake Watcher es una extensión de Chrome desarrollada por Lunyx, y su función principal es "A simple extension that highlights favorited shows on AnimeTake".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión AnimeTake Watcher

Descarga archivos de extensión AnimeTake Watcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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].                    

Información Básica de la Extensión

Nombre AnimeTake Watcher AnimeTake Watcher
ID iemmmdhaohepnnibpbdbeamkgpmkoahj
URL Oficial https://chrome.google.com/webstore/detail/animetake-watcher/iemmmdhaohepnnibpbdbeamkgpmkoahj
Descripción A simple extension that highlights favorited shows on AnimeTake
Tamaño del Archivo 169 KB
Cantidad de Instalaciones 88
Versión Actual 1.0
Última Actualización 2014-10-11
Fecha de Publicación 2014-10-11
Calificación 4.40/5 Total de 5 Calificaciones
Desarrollador Lunyx
Tipo de Pago free
Sitio Web de la Extensión http://www.animetake.com
Idiomas Soportados 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"
    }
}