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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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