Github Whitespace ignorable differ

This extension allows you to only see only the non-whitespace diffs.

Was ist Github Whitespace ignorable differ?

Github Whitespace ignorable differ ist eine Chrome-Erweiterung, die von Scott Youngblut entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to only see only the non-whitespace diffs.".

Erweiterungsscreenshots

screenshot

Github Whitespace ignorable differ-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Whitespace ignorable differ-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension gives you the ability to turn on white space diffing on a per-site basis using a cookie; 

It works on any github site including github enterprise!!
Tested and Everything!                    

Grundlegende Informationen zur Erweiterung

Name Github Whitespace ignorable differ Github Whitespace ignorable differ
ID klfoeihajdgibpablomibnaaaleicmjb
Offizielle URL https://chromewebstore.google.com/detail/github-whitespace-ignorab/klfoeihajdgibpablomibnaaaleicmjb
Beschreibung This extension allows you to only see only the non-whitespace diffs.
Dateigröße 17.75 KB
Installationsanzahl 16
Aktuelle Version 0.0.2
Letztes Update 2015-01-31
Veröffentlichungsdatum 2015-01-31
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Scott Youngblut
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://scottyoungblut.com/
Hilfeseite URL https://github.com/syoungblut/chrome-github-whitespace
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Whitespace ignorable differ",
    "description": "This extension allows you to only see only the non-whitespace diffs.",
    "version": "0.0.2",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "16": "resources\/icon-16.png",
        "48": "resources\/icon-48.png",
        "128": "resources\/icon-128.png"
    },
    "web_accessible_resources": [
        "page-script-link-rewriter.js",
        "resources\/icon-16.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*\/commit\/*",
                "https:\/\/*\/*\/compare\/*",
                "https:\/\/*\/*\/pull\/*"
            ],
            "js": [
                "jsuri\/jsuri-1.1.1.js",
                "cookies\/cookies-1.1.0.js",
                "content-script-cookie-api.js",
                "content-script-toggle-button.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*\/*\/commit\/*",
                "https:\/\/*\/*\/compare\/*",
                "https:\/\/*\/*\/pull\/*"
            ],
            "js": [
                "jsuri\/jsuri-1.1.1.js",
                "cookies\/cookies-1.1.0.js",
                "content-script-cookie-api.js",
                "content-script-preference-loader.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}