Tab Size on GitHub

Make tab indented code more readable by forcing the tab size to 4 instead of 8

Τι είναι το Tab Size on GitHub;

Το Tab Size on GitHub είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sindre Sorhus, και η κύρια λειτουργία του είναι "Make tab indented code more readable by forcing the tab size to 4 instead of 8".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tab Size on GitHub

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

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

                        Update: GitHub now has a tab size setting: https://github.blog/changelog/2021-09-21-tab-size-rendering-preference/

By default, in browsers, the tab character takes up 8 spaces in width. This makes tab-indented code hard to read. GitHub could have easily overridden this with a more reasonable number like 4, but they have chosen not to. Hence why this extension exists. It sets the tab width to 4.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
Επίσημο URL https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Περιγραφή Make tab indented code more readable by forcing the tab size to 4 instead of 8
Μέγεθος Αρχείου 5.09 KB
Αριθμός Εγκαταστάσεων 2,002
Τρέχουσα Έκδοση 1.2.0
Τελευταία Ενημέρωση 2021-09-26
Ημερομηνία Δημοσίευσης 2018-09-24
Αξιολόγηση 4.96/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής Sindre Sorhus
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sindresorhus/tab-size-on-github
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sindresorhus/tab-size-on-github/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Size on GitHub",
    "version": "1.2.0",
    "description": "Make tab indented code more readable by forcing the tab size to 4 instead of 8",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/tab-size-on-github",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "https:\/\/gist.github.com\/*\/*",
        "https:\/\/raw.githubusercontent.com\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*",
                "https:\/\/raw.githubusercontent.com\/*\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}