Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

Apa itu Github Expand Diff?

Github Expand Diff adalah ekstensi Chrome yang dikembangkan oleh Michael Ridgway, dan fitur utamanya adalah "A user script for Chrome that allows you to expand the missing lines in a Github diff.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Github Expand Diff

Unduh file ekstensi Github Expand 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

                                            

Informasi Dasar Ekstensi

Nama Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
URL Resmi https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
Deskripsi A user script for Chrome that allows you to expand the missing lines in a Github diff.
Ukuran File 5.63 KB
Jumlah Instalasi 121
Versi Saat Ini 0.0.1.6
Terakhir Diperbarui 2014-06-18
Tanggal Publikasi 2014-06-18
Penilaian 3.86/5 Total 7 Penilaian
Pengembang Michael Ridgway
Tipe Pembayaran free
Situs Ekstensi https://github.com/mridgway/github-expand-diff
URL Halaman Bantuan https://github.com/mridgway/github-expand-diff/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}