Reddit Comment Collapser

A more elegant solution for collapsing reddit comment trees

Τι είναι το Reddit Comment Collapser;

Το Reddit Comment Collapser είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tomjwatson, και η κύρια λειτουργία του είναι "A more elegant solution for collapsing reddit comment trees".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reddit Comment Collapser

Λήψη αρχείων επέκτασης Reddit Comment Collapser σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
    }
}