Gitlab Whitespaces remover

Removes whitespaces in individual lines in a Gitlab merge requests

Cos'è Gitlab Whitespaces remover?

Gitlab Whitespaces remover è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Removes whitespaces in individual lines in a Gitlab merge requests".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gitlab Whitespaces remover

Scarica i file di estensione Gitlab Whitespaces remover in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Gitlab Whitespaces remover Gitlab Whitespaces remover
ID aecfmhagamhgoojkjhjhjfbblgpdeojj
URL Ufficiale https://chromewebstore.google.com/detail/gitlab-whitespaces-remove/aecfmhagamhgoojkjhjhjfbblgpdeojj
Descrizione Removes whitespaces in individual lines in a Gitlab merge requests
Dimensione del File 125 KB
Conteggio Installazioni 18
Versione Corrente 0.0.1
Ultimo Aggiornamento 2017-12-22
Data di Pubblicazione 2017-12-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}