Reddit Comment Collapser
A more elegant solution for collapsing reddit comment trees
Reddit Comment Collapser क्या है?
Reddit Comment Collapser tomjwatson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A more elegant solution for collapsing reddit comment trees"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Comment Collapser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } } |