Gitlab Whitespaces remover

Removes whitespaces in individual lines in a Gitlab merge requests

O que é Gitlab Whitespaces remover?

Gitlab Whitespaces remover é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Removes whitespaces in individual lines in a Gitlab merge requests".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gitlab Whitespaces remover

Baixe arquivos de extensão Gitlab Whitespaces remover 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

                        Removes whitespaces in words in a merge request. Works only in Side By Side mode.
Source code - github.com/abhinavsingi/gitlab-remove-whitespaces

Click on the icon after a merge request is loaded in Changes tab                    

Informações Básicas da Extensão

Nome Gitlab Whitespaces remover Gitlab Whitespaces remover
ID aecfmhagamhgoojkjhjhjfbblgpdeojj
URL Oficial https://chromewebstore.google.com/detail/gitlab-whitespaces-remove/aecfmhagamhgoojkjhjhjfbblgpdeojj
Descrição Removes whitespaces in individual lines in a Gitlab merge requests
Tamanho do Arquivo 125 KB
Contagem de Instalações 18
Versão Atual 0.0.1
Última Atualização 2017-12-22
Data de Publicação 2017-12-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gitlab Whitespaces remover",
    "version": "0.0.1",
    "description": "Removes whitespaces in individual lines in a Gitlab merge requests",
    "browser_action": {
        "icon": "icon.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}