GitHub File Diff

View diffs of files and directories on GitHub.

Was ist GitHub File Diff?

GitHub File Diff ist eine Chrome-Erweiterung, die von https://akr.am entwickelt wurde, und ihr Hauptmerkmal ist "View diffs of files and directories on GitHub.".

Erweiterungsscreenshots

screenshot

GitHub File Diff-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub File Diff-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
Offizielle URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
Beschreibung View diffs of files and directories on GitHub.
Dateigröße 354 KB
Installationsanzahl 153
Aktuelle Version 1.1.9
Letztes Update 2024-02-04
Veröffentlichungsdatum 2020-03-31
Entwickler https://akr.am
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/mohd-akram/github-file-diff/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}