GitHub File Diff

View diffs of files and directories on GitHub.

Vad är GitHub File Diff?

GitHub File Diff är en Chrome-tillägg utvecklad av https://akr.am, och dess huvudfunktion är "View diffs of files and directories on GitHub.".

Tilläggsskärmbilder

screenshot

Ladda ner GitHub File Diff-förlängningens CRX-fil

Ladda ner GitHub File Diff-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
Officiell webbadress https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
Beskrivning View diffs of files and directories on GitHub.
Filstorlek 354 KB
Antal Installationer 153
Aktuell Version 1.1.9
Senast Uppdaterad 2024-02-04
Publiceringsdatum 2020-03-31
Utvecklare https://akr.am
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/mohd-akram/github-file-diff/issues
Stödda Språk 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"
            ]
        }
    ]
}