Tab Size on GitHub

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

Qu'est-ce que Tab Size on GitHub ?

Tab Size on GitHub est une extension Chrome développée par Sindre Sorhus, et sa fonction principale est "Make tab indented code more readable by forcing the tab size to 4 instead of 8".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab Size on GitHub

Téléchargez les fichiers d'extension Tab Size on GitHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
URL Officiel https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Description Make tab indented code more readable by forcing the tab size to 4 instead of 8
Taille du Fichier 5.09 KB
Nombre d'Installations 2,002
Version Actuelle 1.2.0
Dernière Mise à Jour 2021-09-26
Date de Publication 2018-09-24
Évaluation 4.96/5 Total 23 Évaluations
Développeur Sindre Sorhus
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sindresorhus/tab-size-on-github
URL de la Page d'Aide https://github.com/sindresorhus/tab-size-on-github/issues
URL de la Page de Politique de Confidentialité https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Langues Prises en Charge 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"
            ]
        }
    ]
}