Reddit Top-Level Comment Scroller

Helps you scroll between top level comments on Reddit

Τι είναι το Reddit Top-Level Comment Scroller;

Το Reddit Top-Level Comment Scroller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eddy, και η κύρια λειτουργία του είναι "Helps you scroll between top level comments on Reddit".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reddit Top-Level Comment Scroller

Λήψη αρχείων επέκτασης Reddit Top-Level Comment Scroller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Keyboard and mouse wheel navigation for comments. Useful for reading large discussions.

Use Shift+Up or Shift+Down to jump between top-level comments.

Or, place your mouse over the box placed in the bottom-right corner and scroll between top-level comments using your mouse wheel. (The box can be disabled in the options.)

Note: all code is released under the WTFPL

Contributers:
Matt Livezey (sitetable fix)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Reddit Top-Level Comment Scroller Reddit Top-Level Comment Scroller
ID eijkojfjamombpgmepnneefgcakogimc
Επίσημο URL https://chromewebstore.google.com/detail/reddit-top-level-comment/eijkojfjamombpgmepnneefgcakogimc
Περιγραφή Helps you scroll between top level comments on Reddit
Μέγεθος Αρχείου 77.54 KB
Αριθμός Εγκαταστάσεων 177
Τρέχουσα Έκδοση 1.9
Τελευταία Ενημέρωση 2016-06-11
Ημερομηνία Δημοσίευσης 2016-06-11
Αξιολόγηση 4.57/5 Συνολικά 28 Αξιολογήσεις
Προγραμματιστής Eddy
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ghedsouza/reddit-top-level-comment-scroller
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Top-Level Comment Scroller",
    "version": "1.9",
    "manifest_version": 2,
    "description": "Helps you scroll between top level comments on Reddit",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "lib\/prototype.js",
                "lib\/scriptaculous.js",
                "lib\/builder.js",
                "lib\/effects.js",
                "lib\/dragdrop.js",
                "lib\/slider.js",
                "lib\/controls.js",
                "scroll.js"
            ],
            "matches": [
                "https:\/\/www.reddit.com\/*\/comments\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html"
}