GitHub-Diff-Whitespace

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

Cos'è GitHub-Diff-Whitespace?

GitHub-Diff-Whitespace è un'estensione di Chrome sviluppata da jasonkarns, e la sua funzione principale è "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GitHub-Diff-Whitespace

Scarica i file di estensione GitHub-Diff-Whitespace 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

                        Provide a UI button to toggle whitespace in GitHub diffs.                    

Informazioni di Base sull'Estensione

Nome GitHub-Diff-Whitespace GitHub-Diff-Whitespace
ID lhbcdehjihmbiafeodkfnbndleijnnhp
URL Ufficiale https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp
Descrizione Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
Dimensione del File 5.42 KB
Conteggio Installazioni 135
Versione Corrente 1.3.2
Ultimo Aggiornamento 2015-09-14
Data di Pubblicazione 2015-09-14
Valutazione 3.57/5 Totale 7 Valutazioni
Sviluppatore jasonkarns
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace
URL della Pagina di Aiuto https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace
Lingue Supportate 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\/*"
            ]
        }
    ]
}