Netflix Shortcuts

Custom shortcuts for Netflix

Что такое Netflix Shortcuts?

Netflix Shortcuts - это расширение Chrome, разработанное Unknown, и его основная функция - "Custom shortcuts for Netflix".

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

screenshot

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

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

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

                        This extension allows you to control Netflix using only your keyboard, no more mouse needed.

It currently supports:
- "Skip Intro" (hit the "s" key)
- "Next Episode" (hit the "n" key).

More coming soon...                    

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

Название Netflix Shortcuts Netflix Shortcuts
ID pplbkfmlmhipnhgjbdmlpkicnbkalhdp
Официальный URL https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp
Описание Custom shortcuts for Netflix
Размер файла 6.79 KB
Количество установок 246
Текущая Версия 1.0
Последнее Обновление 2018-10-06
Дата публикации 2018-10-06
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/foxou33/netflix-shortcuts
URL страницы помощи https://github.com/foxou33/netflix-shortcuts/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Shortcuts",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Custom shortcuts for Netflix",
    "icons": {
        "64": "img\/icon_grey.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "img\/icon_red.png"
    },
    "permissions": [
        "declarativeContent"
    ]
}