Render Whitespace on GitHub

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

O que é Render Whitespace on GitHub?

Render Whitespace on GitHub é uma extensão do Chrome desenvolvida por glebm, e sua principal característica é "Renders spaces as · and tabs as → in all the code on GitHub.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Render Whitespace on GitHub

Baixe arquivos de extensão Render Whitespace on GitHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Add this extension to see the whitespace on GitHub.                    

Informações Básicas da Extensão

Nome Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
URL Oficial https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Descrição Renders spaces as · and tabs as → in all the code on GitHub.
Tamanho do Arquivo 9.93 KB
Contagem de Instalações 586
Versão Atual 1.3.12
Última Atualização 2018-08-25
Data de Publicação 2018-08-25
Classificação 4.00/5 Total de 6 Avaliações
Desenvolvedor glebm
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/glebm/render-whitespace-on-github
Idiomas Suportados 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"
    }
}