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