Relative Reddit

Spot great Reddit comments by adding color-coded badges that measure relative awesomeness.

Relative Reddit란 무엇입니까?

Relative Reddit은(는) tyleha에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Spot great Reddit comments by adding color-coded badges that measure relative awesomeness."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Reddit comment threads are hard to read. Relative Reddit makes great comments easy to spot within a thread by adding a color-coded badge next to each comment's score. The brighter the color, the better the comment.

Relative Reddit works by comparing a comment's score to the score of the comment it's responding to. A typical comment receives about half the upvotes that its parent did, as Redditors stop reading a thread and thus stop upvoting. Take the following example:

* (1,000 upvotes) 
    * (500 upvotes) 
        * (800 upvotes) 

In this example, whatever was posted in comment three is worth reading because it got 1.6x the number of upvotes that its parent comment got! For whatever reason, people love this comment. Relative Reddit makes it easy to spot such a comment when it comes along with a color-coded badge.                    

확장 프로그램 기본 정보

이름 Relative Reddit Relative Reddit
ID lkkanogkeefbgmcjihgjmcginkjamkfp
공식 URL https://chrome.google.com/webstore/detail/relative-reddit/lkkanogkeefbgmcjihgjmcginkjamkfp
설명 Spot great Reddit comments by adding color-coded badges that measure relative awesomeness.
파일 크기 30.32 KB
설치 횟수 144
현재 버전 2.0.4
최근 업데이트 2021-01-04
출시 날짜 2016-12-26
평점 5.00/5 총 4 개의 평점
개발자 tyleha
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tyleha/relativereddit
도움말 페이지 URL https://github.com/tyleha/relativereddit/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relative Reddit",
    "short_name": "Relative",
    "description": "Spot great Reddit comments by adding color-coded badges that measure relative awesomeness.",
    "version": "2.0.4",
    "browser_action": {
        "default_icon": "Chevron Up-48.png",
        "default_popup": "relative.html",
        "default_title": "Relative Reddit"
    },
    "icons": {
        "48": "Chevron Up-48.png",
        "128": "Chevron Up-128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/www.reddit.com\/*",
        "https:\/\/reddit.com\/*",
        "http:\/\/reddit.com\/*",
        "http:\/\/www.reddit.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "relative.js"
            ],
            "css": [
                "relative.css"
            ],
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ]
        }
    ]
}