Reddit Top-Level Comment Scroller

Helps you scroll between top level comments on Reddit

Co je Reddit Top-Level Comment Scroller?

Reddit Top-Level Comment Scroller je rozšíření Chrome vyvinuté Eddy, a jeho hlavní funkcí je „Helps you scroll between top level comments on Reddit“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Reddit Top-Level Comment Scroller

Stáhněte si soubory rozšíření Reddit Top-Level Comment Scroller ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název Reddit Top-Level Comment Scroller Reddit Top-Level Comment Scroller
ID eijkojfjamombpgmepnneefgcakogimc
Oficiální URL https://chromewebstore.google.com/detail/reddit-top-level-comment/eijkojfjamombpgmepnneefgcakogimc
Popis Helps you scroll between top level comments on Reddit
Velikost souboru 77.54 KB
Počet instalací 177
Aktuální Verze 1.9
Poslední Aktualizace 2016-06-11
Datum Vydání 2016-06-11
Hodnocení 4.57/5 Celkem 28 Hodnocení
Vývojář Eddy
Typ Platby free
Webové stránky Rozšíření https://github.com/ghedsouza/reddit-top-level-comment-scroller
Podporované Jazyky 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"
}