Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

Co je Github Expand Diff?

Github Expand Diff je rozšíření Chrome vyvinuté Michael Ridgway, a jeho hlavní funkcí je „A user script for Chrome that allows you to expand the missing lines in a Github diff.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Github Expand Diff

Stáhněte si soubory rozšíření Github Expand Diff ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                                            

Základní Informace o Rozšíření

Název Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
Oficiální URL https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
Popis A user script for Chrome that allows you to expand the missing lines in a Github diff.
Velikost souboru 5.63 KB
Počet instalací 121
Aktuální Verze 0.0.1.6
Poslední Aktualizace 2014-06-18
Datum Vydání 2014-06-18
Hodnocení 3.86/5 Celkem 7 Hodnocení
Vývojář Michael Ridgway
Typ Platby free
Webové stránky Rozšíření https://github.com/mridgway/github-expand-diff
URL Stránky Nápovědy https://github.com/mridgway/github-expand-diff/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}