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.

Was ist Netflix Jump Scroll?

Netflix Jump Scroll ist eine Chrome-Erweiterung, die von Robert Kohr entwickelt wurde, und ihr Hauptmerkmal ist "Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.".

Erweiterungsscreenshots

screenshot
screenshot

Netflix Jump Scroll-Erweiterungs-CRX-Datei herunterladen

Laden Sie Netflix Jump Scroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Netflix Jump Scroll Netflix Jump Scroll
ID gfocbgegaacpbclkmljbkkjidbemmieo
Offizielle URL https://chromewebstore.google.com/detail/netflix-jump-scroll/gfocbgegaacpbclkmljbkkjidbemmieo
Beschreibung Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.
Dateigröße 41.66 KB
Installationsanzahl 34
Aktuelle Version 1.0
Letztes Update 2015-05-12
Veröffentlichungsdatum 2015-05-12
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler Robert Kohr
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}