Hide whitespaces GitHub

Always hide whitespaces in GitHub

O que é Hide whitespaces GitHub?

Hide whitespaces GitHub é uma extensão do Chrome desenvolvida por Arnaud Barré, e sua principal característica é "Always hide whitespaces in GitHub".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hide whitespaces GitHub

Baixe arquivos de extensão Hide whitespaces 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

                        When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the  "hide whitespace changes" option                    

Informações Básicas da Extensão

Nome Hide whitespaces GitHub Hide whitespaces GitHub
ID nafhbcekbgodfnjpnobmbiajjpgmibnc
URL Oficial https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc
Descrição Always hide whitespaces in GitHub
Tamanho do Arquivo 10.26 KB
Contagem de Instalações 57
Versão Atual 0.6.0
Última Atualização 2022-08-09
Data de Publicação 2020-06-08
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Arnaud Barré
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ArnaudBarre/hide-whitespaces-github
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide whitespaces GitHub",
    "version": "0.6.0",
    "description": "Always hide whitespaces in GitHub",
    "permissions": [
        "https:\/\/github.com\/**"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/**"
            ],
            "run_at": "document_start",
            "js": [
                "hide-whitespaces.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}