AnimeTake Watcher

A simple extension that highlights favorited shows on AnimeTake

Что такое AnimeTake Watcher?

AnimeTake Watcher - это расширение Chrome, разработанное Lunyx, и его основная функция - "A simple extension that highlights favorited shows on AnimeTake".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения AnimeTake Watcher

Скачайте файлы расширений AnimeTake Watcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название AnimeTake Watcher AnimeTake Watcher
ID iemmmdhaohepnnibpbdbeamkgpmkoahj
Официальный URL https://chrome.google.com/webstore/detail/animetake-watcher/iemmmdhaohepnnibpbdbeamkgpmkoahj
Описание A simple extension that highlights favorited shows on AnimeTake
Размер файла 169 KB
Количество установок 88
Текущая Версия 1.0
Последнее Обновление 2014-10-11
Дата публикации 2014-10-11
Рейтинг 4.40/5 Всего 5 оценок
Разработчик Lunyx
Тип оплаты free
Официальный сайт расширения http://www.animetake.com
Поддерживаемые языки 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"
    }
}