Tab Size on GitHub

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

Cos'è Tab Size on GitHub?

Tab Size on GitHub è un'estensione di Chrome sviluppata da Sindre Sorhus, e la sua funzione principale è "Make tab indented code more readable by forcing the tab size to 4 instead of 8".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tab Size on GitHub

Scarica i file di estensione Tab Size on GitHub 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
URL Ufficiale https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Descrizione Make tab indented code more readable by forcing the tab size to 4 instead of 8
Dimensione del File 5.09 KB
Conteggio Installazioni 2,002
Versione Corrente 1.2.0
Ultimo Aggiornamento 2021-09-26
Data di Pubblicazione 2018-09-24
Valutazione 4.96/5 Totale 23 Valutazioni
Sviluppatore Sindre Sorhus
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sindresorhus/tab-size-on-github
URL della Pagina di Aiuto https://github.com/sindresorhus/tab-size-on-github/issues
URL della Pagina della Politica sulla Privacy https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Lingue Supportate 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"
            ]
        }
    ]
}