Relative Reddit
Spot great Reddit comments by adding color-coded badges that measure relative awesomeness.
Relative Reddit क्या है?
Relative Reddit tyleha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Spot great Reddit comments by adding color-coded badges that measure relative awesomeness."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Relative Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |