Reddit Top-Level Comment Scroller

Helps you scroll between top level comments on Reddit

Reddit Top-Level Comment Scrollerとは何ですか?

Reddit Top-Level Comment ScrollerはEddyによって開発されたChromeの拡張機能で、その主な機能は「Helps you scroll between top level comments on Reddit」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Reddit Top-Level Comment Scroller拡張機能のCRXファイルをダウンロード

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