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.

O que é Netflix Jump Scroll?

Netflix Jump Scroll é uma extensão do Chrome desenvolvida por Robert Kohr, e sua principal característica é "Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflix Jump Scroll

Baixe arquivos de extensão Netflix Jump Scroll no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Netflix Jump Scroll Netflix Jump Scroll
ID gfocbgegaacpbclkmljbkkjidbemmieo
URL Oficial https://chromewebstore.google.com/detail/netflix-jump-scroll/gfocbgegaacpbclkmljbkkjidbemmieo
Descrição Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.
Tamanho do Arquivo 41.66 KB
Contagem de Instalações 34
Versão Atual 1.0
Última Atualização 2015-05-12
Data de Publicação 2015-05-12
Classificação 4.00/5 Total de 3 Avaliações
Desenvolvedor Robert Kohr
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}