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"
        }
    ]
}