GitHub-Diff-Whitespace

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

Wat is GitHub-Diff-Whitespace?

GitHub-Diff-Whitespace is een Chrome-extensie ontwikkeld door jasonkarns, en de belangrijkste functie is "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie GitHub-Diff-Whitespace

Download GitHub-Diff-Whitespace-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Provide a UI button to toggle whitespace in GitHub diffs.                    

Basisinformatie over de Extensie

Naam GitHub-Diff-Whitespace GitHub-Diff-Whitespace
ID lhbcdehjihmbiafeodkfnbndleijnnhp
Officiële URL https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp
Beschrijving Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
Bestandsgrootte 5.42 KB
Aantal Installaties 135
Huidige Versie 1.3.2
Laatst Bijgewerkt 2015-09-14
Publicatiedatum 2015-09-14
Beoordeling 3.57/5 Totaal 7 Beoordelingen
Ontwikkelaar jasonkarns
Betalingswijze free
Extensiewebsite https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace
Help Pagina-URL https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}