GitHub Custom Tab Size

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

Cos'è GitHub Custom Tab Size?

GitHub Custom Tab Size è un'estensione di Chrome sviluppata da lukechilds, e la sua funzione principale è "Make tab indented code more readable by allowing you to set a custom tab size".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GitHub Custom Tab Size

Scarica i file di estensione GitHub Custom Tab Size in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
URL Ufficiale https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe
Descrizione Make tab indented code more readable by allowing you to set a custom tab size
Dimensione del File 22.35 KB
Conteggio Installazioni 557
Versione Corrente 1.1.0
Ultimo Aggiornamento 2019-05-06
Data di Pubblicazione 2019-05-06
Valutazione 4.30/5 Totale 10 Valutazioni
Sviluppatore lukechilds
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lukechilds/github-custom-tab-size
Lingue Supportate 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"
            ]
        }
    ]
}