GitHub File Diff

View diffs of files and directories on GitHub.

Apa itu GitHub File Diff?

GitHub File Diff adalah ekstensi Chrome yang dikembangkan oleh https://akr.am, dan fitur utamanya adalah "View diffs of files and directories on GitHub.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GitHub File Diff

Unduh file ekstensi GitHub File Diff dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GitHub File Diff GitHub File Diff
ID lmhbkinmjbfihpkihjdhcagnigpklinh
URL Resmi https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh
Deskripsi View diffs of files and directories on GitHub.
Ukuran File 354 KB
Jumlah Instalasi 153
Versi Saat Ini 1.1.9
Terakhir Diperbarui 2024-02-04
Tanggal Publikasi 2020-03-31
Pengembang https://akr.am
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/mohd-akram/github-file-diff/issues
Bahasa yang Didukung 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"
            ]
        }
    ]
}