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.

Vad är Netflix Jump Scroll?

Netflix Jump Scroll är en Chrome-tillägg utvecklad av Robert Kohr, och dess huvudfunktion är "Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Netflix Jump Scroll-förlängningens CRX-fil

Ladda ner Netflix Jump Scroll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Netflix Jump Scroll Netflix Jump Scroll
ID gfocbgegaacpbclkmljbkkjidbemmieo
Officiell webbadress https://chromewebstore.google.com/detail/netflix-jump-scroll/gfocbgegaacpbclkmljbkkjidbemmieo
Beskrivning Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.
Filstorlek 41.66 KB
Antal Installationer 34
Aktuell Version 1.0
Senast Uppdaterad 2015-05-12
Publiceringsdatum 2015-05-12
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare Robert Kohr
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}