Tab Size on GitHub

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

¿Qué es Tab Size on GitHub?

Tab Size on GitHub es una extensión de Chrome desarrollada por Sindre Sorhus, y su función principal es "Make tab indented code more readable by forcing the tab size to 4 instead of 8".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tab Size on GitHub

Descarga archivos de extensión Tab Size on GitHub en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
URL Oficial https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Descripción Make tab indented code more readable by forcing the tab size to 4 instead of 8
Tamaño del Archivo 5.09 KB
Cantidad de Instalaciones 2,002
Versión Actual 1.2.0
Última Actualización 2021-09-26
Fecha de Publicación 2018-09-24
Calificación 4.96/5 Total de 23 Calificaciones
Desarrollador Sindre Sorhus
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/sindresorhus/tab-size-on-github
URL de la Página de Ayuda https://github.com/sindresorhus/tab-size-on-github/issues
URL de la Página de Política de Privacidad https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Idiomas Soportados 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"
            ]
        }
    ]
}