Reddit Top-Level Comment Scroller

Helps you scroll between top level comments on Reddit

Apa itu Reddit Top-Level Comment Scroller?

Reddit Top-Level Comment Scroller adalah ekstensi Chrome yang dikembangkan oleh Eddy, dan fitur utamanya adalah "Helps you scroll between top level comments on Reddit".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Reddit Top-Level Comment Scroller

Unduh file ekstensi Reddit Top-Level Comment Scroller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama Reddit Top-Level Comment Scroller Reddit Top-Level Comment Scroller
ID eijkojfjamombpgmepnneefgcakogimc
URL Resmi https://chromewebstore.google.com/detail/reddit-top-level-comment/eijkojfjamombpgmepnneefgcakogimc
Deskripsi Helps you scroll between top level comments on Reddit
Ukuran File 77.54 KB
Jumlah Instalasi 177
Versi Saat Ini 1.9
Terakhir Diperbarui 2016-06-11
Tanggal Publikasi 2016-06-11
Penilaian 4.57/5 Total 28 Penilaian
Pengembang Eddy
Tipe Pembayaran free
Situs Ekstensi https://github.com/ghedsouza/reddit-top-level-comment-scroller
Bahasa yang Didukung 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"
}