Render Whitespace on GitHub

Renders spaces as · and tabs as → in all the code on GitHub.

¿Qué es Render Whitespace on GitHub?

Render Whitespace on GitHub es una extensión de Chrome desarrollada por glebm, y su función principal es "Renders spaces as · and tabs as → in all the code on GitHub.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Render Whitespace on GitHub

Descarga archivos de extensión Render Whitespace 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

                        Are they tabs? Are they spaces? How many?
Never wonder again!

Add this extension to see the whitespace on GitHub.                    

Información Básica de la Extensión

Nombre Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
URL Oficial https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Descripción Renders spaces as · and tabs as → in all the code on GitHub.
Tamaño del Archivo 9.93 KB
Cantidad de Instalaciones 586
Versión Actual 1.3.12
Última Actualización 2018-08-25
Fecha de Publicación 2018-08-25
Calificación 4.00/5 Total de 6 Calificaciones
Desarrollador glebm
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/glebm/render-whitespace-on-github
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Render Whitespace on GitHub",
    "version": "1.3.12",
    "author": "Gleb Mazovetskiy",
    "content_scripts": [
        {
            "js": [
                "RenderWhitespaceOnGithub.user.js"
            ],
            "matches": [
                "https:\/\/gist.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/github.com\/glebm\/render-whitespace-on-github",
    "description": "Renders spaces as \u00b7 and tabs as \u2192 in all the code on GitHub.",
    "icons": {
        "128": "icon128.png"
    }
}