Crunchyroll Synopsis Hider

An extension that hides the synopsis for anime episodes on Crunchyroll for the sake of hiding spoilers.

Что такое Crunchyroll Synopsis Hider?

Crunchyroll Synopsis Hider - это расширение Chrome, разработанное Zak Farmer, и его основная функция - "An extension that hides the synopsis for anime episodes on Crunchyroll for the sake of hiding spoilers.".

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

screenshot

Скачать файл CRX расширения Crunchyroll Synopsis Hider

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

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

                        An extension that hides the synopsis of anime episodes on Crunchyroll for the purpose of avoiding spoilers.                    

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

Название Crunchyroll Synopsis Hider Crunchyroll Synopsis Hider
ID knifeefpnmekmdbhcijgobndaklhclea
Официальный URL https://chromewebstore.google.com/detail/crunchyroll-synopsis-hide/knifeefpnmekmdbhcijgobndaklhclea
Описание An extension that hides the synopsis for anime episodes on Crunchyroll for the sake of hiding spoilers.
Размер файла 216 KB
Количество установок 39
Текущая Версия 1.1.0
Последнее Обновление 2016-09-24
Дата публикации 2016-09-24
Рейтинг 3.60/5 Всего 5 оценок
Разработчик Zak Farmer
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchyroll Synopsis Hider",
    "description": "An extension that hides the synopsis for anime episodes on Crunchyroll for the sake of hiding spoilers.",
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "css": [
                "crunchyroll.css"
            ],
            "matches": [
                "http:\/\/www.crunchyroll.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "http:\/\/www.crunchyroll.com\/*",
        "tabs"
    ],
    "web_accessible_resources": [
        "crunchyroll.css"
    ]
}