GitHub-Diff-Whitespace

Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)

O que é GitHub-Diff-Whitespace?

GitHub-Diff-Whitespace é uma extensão do Chrome desenvolvida por jasonkarns, e sua principal característica é "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub-Diff-Whitespace

Baixe arquivos de extensão GitHub-Diff-Whitespace 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

                        Provide a UI button to toggle whitespace in GitHub diffs.                    

Informações Básicas da Extensão

Nome GitHub-Diff-Whitespace GitHub-Diff-Whitespace
ID lhbcdehjihmbiafeodkfnbndleijnnhp
URL Oficial https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp
Descrição Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
Tamanho do Arquivo 5.42 KB
Contagem de Instalações 135
Versão Atual 1.3.2
Última Atualização 2015-09-14
Data de Publicação 2015-09-14
Classificação 3.57/5 Total de 7 Avaliações
Desenvolvedor jasonkarns
Tipo de Pagamento free
Site da Extensão https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace
URL da Página de Ajuda https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub-Diff-Whitespace",
    "version": "1.3.2",
    "manifest_version": 2,
    "description": "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "github-diff-whitespace.js"
            ],
            "matches": [
                "https:\/\/github.com\/*\/commit\/*",
                "https:\/\/github.com\/*\/compare\/*",
                "https:\/\/github.com\/*\/pull\/*"
            ]
        }
    ]
}