Netflix block synopsis spoiling

This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.

Что такое Netflix block synopsis spoiling?

Netflix block synopsis spoiling - это расширение Chrome, разработанное Holger Kreis, и его основная функция - "This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.".

Скачать файл CRX расширения Netflix block synopsis spoiling

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

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

                        If you always try hard ignoring the next episodes synopses for not being spoiled, just enable this extension. An option setting is provided to show the teasers anyway.                    

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

Название Netflix block synopsis spoiling Netflix block synopsis spoiling
ID gibbfeoglggnkdoagdgiibllignhoofo
Официальный URL https://chromewebstore.google.com/detail/netflix-block-synopsis-sp/gibbfeoglggnkdoagdgiibllignhoofo
Описание This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.
Размер файла 48.42 KB
Количество установок 15
Текущая Версия 0.2
Последнее Обновление 2015-12-31
Дата публикации 2015-12-31
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Holger Kreis
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix block synopsis spoiling",
    "description": "This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.",
    "version": "0.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "hidesynopsis.js"
            ],
            "css": [
                "hidesynopsis.css"
            ]
        }
    ]
}