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.

Cos'è Netflix Jump Scroll?

Netflix Jump Scroll è un'estensione di Chrome sviluppata da Robert Kohr, e la sua funzione principale è "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 dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Netflix Jump Scroll

Scarica i file di estensione Netflix Jump Scroll in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Netflix Jump Scroll Netflix Jump Scroll
ID gfocbgegaacpbclkmljbkkjidbemmieo
URL Ufficiale https://chromewebstore.google.com/detail/netflix-jump-scroll/gfocbgegaacpbclkmljbkkjidbemmieo
Descrizione Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.
Dimensione del File 41.66 KB
Conteggio Installazioni 34
Versione Corrente 1.0
Ultimo Aggiornamento 2015-05-12
Data di Pubblicazione 2015-05-12
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore Robert Kohr
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}