GitHub Custom Tab Size

Make tab indented code more readable by allowing you to set a custom tab size

Qu'est-ce que GitHub Custom Tab Size ?

GitHub Custom Tab Size est une extension Chrome développée par lukechilds, et sa fonction principale est "Make tab indented code more readable by allowing you to set a custom tab size".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension GitHub Custom Tab Size 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

                        Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.                    

Informations de Base sur l'Extension

Nom GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
URL Officiel https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe
Description Make tab indented code more readable by allowing you to set a custom tab size
Taille du Fichier 22.35 KB
Nombre d'Installations 557
Version Actuelle 1.1.0
Dernière Mise à Jour 2019-05-06
Date de Publication 2019-05-06
Évaluation 4.30/5 Total 10 Évaluations
Développeur lukechilds
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lukechilds/github-custom-tab-size
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Custom Tab Size",
    "version": "1.1.0",
    "icons": {
        "256": "icon.png"
    },
    "description": "Make tab indented code more readable by allowing you to set a custom tab size",
    "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ]
}