Relative Reddit

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

Qu'est-ce que Relative Reddit ?

Relative Reddit est une extension Chrome développée par tyleha, et sa fonction principale est "Spot great Reddit comments by adding color-coded badges that measure relative awesomeness.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Relative Reddit

Téléchargez les fichiers d'extension Relative Reddit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Relative Reddit Relative Reddit
ID lkkanogkeefbgmcjihgjmcginkjamkfp
URL Officiel https://chrome.google.com/webstore/detail/relative-reddit/lkkanogkeefbgmcjihgjmcginkjamkfp
Description Spot great Reddit comments by adding color-coded badges that measure relative awesomeness.
Taille du Fichier 30.32 KB
Nombre d'Installations 144
Version Actuelle 2.0.4
Dernière Mise à Jour 2021-01-04
Date de Publication 2016-12-26
Évaluation 5.00/5 Total 4 Évaluations
Développeur tyleha
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tyleha/relativereddit
URL de la Page d'Aide https://github.com/tyleha/relativereddit/issues
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}