Reddit Comment Collapser

A more elegant solution for collapsing reddit comment trees

Reddit Comment Collapser란 무엇입니까?

Reddit Comment Collapser은(는) tomjwatson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A more elegant solution for collapsing reddit comment trees"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Reddit Comment Collapser 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Collapse a comment and all of it's replies by clicking on the column of the comment you wish to collapse.

No longer get stuck in the middle of a huge comment chain - simply select the outermost column to collapse the whole top-level-comment.

Note - this extension is only compatible with old.reddit.com. You can use Old Reddit Redirect (https://chrome.google.com/webstore/detail/old-reddit-redirect/dneaehbmnbhcippjikoajpoabadpodje) to ensure you always load old.reddit.com.

Compatible with Reddit Enhancement Suite and subreddit themes.

Reddit Comment Collapser is free and open source. The code is available at  https://github.com/tom-james-watson/reddit-comment-collapser and contributions and bug reports are very welcome.                    

확장 프로그램 기본 정보

이름 Reddit Comment Collapser Reddit Comment Collapser
ID njmimaecgocggclbecipdimilidimlpl
공식 URL https://chromewebstore.google.com/detail/reddit-comment-collapser/njmimaecgocggclbecipdimilidimlpl
설명 A more elegant solution for collapsing reddit comment trees
파일 크기 176 KB
설치 횟수 5,142
현재 버전 5.1.2
최근 업데이트 2022-05-19
출시 날짜 2019-05-31
평점 4.75/5 총 73 개의 평점
개발자 tomjwatson
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/tom-james-watson/privacy-policy/blob/main/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "5.1.2",
    "applications": {
        "gecko": {
            "id": "{a5b2e636-07e5-4331-93c1-6cf4074356c8}",
            "strict_min_version": "42.0"
        }
    },
    "manifest_version": 2,
    "minimum_chrome_version": "41.0.2272.76",
    "name": "Reddit Comment Collapser",
    "description": "A more elegant solution for collapsing reddit comment trees",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*\/comments\/*",
                "https:\/\/*.reddit.com\/*\/comments\/*"
            ],
            "css": [
                "css\/comment-collapser.css"
            ],
            "js": [
                "js\/comment-collapser.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "image\/collapse.png",
        "image\/collapse-dark.png",
        "image\/expand.png",
        "image\/expand-dark.png",
        "image\/colours\/*"
    ],
    "permissions": [
        "storage",
        "https:\/\/*.reddit.com\/"
    ],
    "options_ui": {
        "page": "views\/options.html",
        "chrome_style": true
    }
}