GitHub File Diff

View diffs of files and directories on GitHub.

Wat is GitHub File Diff?

GitHub File Diff is een Chrome-extensie ontwikkeld door https://akr.am, en de belangrijkste functie is "View diffs of files and directories on GitHub.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GitHub File Diff

Download GitHub File Diff-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

                        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.                    

Basisinformatie over de Extensie

Naam GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
Officiële URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
Beschrijving View diffs of files and directories on GitHub.
Bestandsgrootte 354 KB
Aantal Installaties 153
Huidige Versie 1.1.9
Laatst Bijgewerkt 2024-02-04
Publicatiedatum 2020-03-31
Ontwikkelaar https://akr.am
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/mohd-akram/github-file-diff/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}