GitHub File Diff

View diffs of files and directories on GitHub.

Co je GitHub File Diff?

GitHub File Diff je rozšíření Chrome vyvinuté https://akr.am, a jeho hlavní funkcí je „View diffs of files and directories on GitHub.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub File Diff

Stáhněte si soubory rozšíření GitHub File 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í

                        To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.                    

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

Název GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
Oficiální URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
Popis View diffs of files and directories on GitHub.
Velikost souboru 354 KB
Počet instalací 153
Aktuální Verze 1.1.9
Poslední Aktualizace 2024-02-04
Datum Vydání 2020-03-31
Vývojář https://akr.am
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/mohd-akram/github-file-diff/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub File Diff",
    "version": "1.1.9",
    "description": "View diffs of files and directories on GitHub.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png",
        "256": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "vendor.css"
            ],
            "js": [
                "vendor.js",
                "main.js"
            ]
        }
    ]
}