GitHub File Diff

View diffs of files and directories on GitHub.

Co to jest GitHub File Diff?

GitHub File Diff to rozszerzenie Chrome opracowane przez https://akr.am, a jego główną funkcją jest „View diffs of files and directories on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub File Diff

Pobierz pliki rozszerzeń GitHub File Diff w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
Oficjalny URL https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
Opis View diffs of files and directories on GitHub.
Rozmiar pliku 354 KB
Liczba instalacji 153
Aktualna Wersja 1.1.9
Ostatnia Aktualizacja 2024-02-04
Data Publikacji 2020-03-31
Deweloper https://akr.am
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/mohd-akram/github-file-diff/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}