Tab Size on GitHub

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

Was ist Tab Size on GitHub?

Tab Size on GitHub ist eine Chrome-Erweiterung, die von Sindre Sorhus entwickelt wurde, und ihr Hauptmerkmal ist "Make tab indented code more readable by forcing the tab size to 4 instead of 8".

Erweiterungsscreenshots

screenshot
screenshot

Tab Size on GitHub-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Size on GitHub-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
Offizielle URL https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Beschreibung Make tab indented code more readable by forcing the tab size to 4 instead of 8
Dateigröße 5.09 KB
Installationsanzahl 2,002
Aktuelle Version 1.2.0
Letztes Update 2021-09-26
Veröffentlichungsdatum 2018-09-24
Bewertung 4.96/5 Insgesamt 23 Bewertungen
Entwickler Sindre Sorhus
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sindresorhus/tab-size-on-github
Hilfeseite URL https://github.com/sindresorhus/tab-size-on-github/issues
URL der Datenschutzrichtlinien-Seite https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Unterstützte Sprachen 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"
            ]
        }
    ]
}