Netflix Jump Scroll

Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.

Что такое Netflix Jump Scroll?

Netflix Jump Scroll - это расширение Chrome, разработанное Robert Kohr, и его основная функция - "Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.".

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

screenshot
screenshot

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

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

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

                        The left/right scroll on netflix is slow and it tracking it bothers some people's eyes. This extension make it so that you can click the left/right buttons and it will instead jump to the next set of movies without the slow panning. 

If you would like to help improve this, the source code is at:
https://github.com/RobKohr/netflix-jump-scroll                    

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

Название Netflix Jump Scroll Netflix Jump Scroll
ID gfocbgegaacpbclkmljbkkjidbemmieo
Официальный URL https://chromewebstore.google.com/detail/netflix-jump-scroll/gfocbgegaacpbclkmljbkkjidbemmieo
Описание Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.
Размер файла 41.66 KB
Количество установок 34
Текущая Версия 1.0
Последнее Обновление 2015-05-12
Дата публикации 2015-05-12
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Robert Kohr
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Jump Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "jquery-2.1.4.min.js",
                "main.js"
            ],
            "matches": [
                "https:\/\/netflix.com\/*",
                "http:\/\/netflix.com\/*",
                "https:\/\/www.netflix.com\/*",
                "http:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_start"
        }
    ]
}