Github Diffs

Collapse/expand diff files for easier reviews

Apa itu Github Diffs?

Github Diffs adalah ekstensi Chrome yang dikembangkan oleh kamranahmed.se, dan fitur utamanya adalah "Collapse/expand diff files for easier reviews".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Github Diffs

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

                        Collapse/expand diff files for easier reviews

When there is a large number of files in a pull request it becomes difficult to get an overview or to find some specific files with all the files stacked upon each other. This extension allows collapsing and expanding files so that you do not have to pound the innocent scrollbar.

It adds buttons to `Collapse all Diffs` or `Show all Diffs` and makes `file headers clickable` to toggle the diff for some specific file                    

Informasi Dasar Ekstensi

Nama Github Diffs Github Diffs
ID dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
URL Resmi https://chromewebstore.google.com/detail/github-diffs/dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
Deskripsi Collapse/expand diff files for easier reviews
Ukuran File 12.99 KB
Jumlah Instalasi 85
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2017-08-11
Tanggal Publikasi 2017-08-11
Pengembang kamranahmed.se
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Diffs",
    "short_name": "github-diffs",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Collapse\/expand diff files for easier reviews",
    "homepage_url": "http:\/\/github.com\/kamranahmedse\/github-diffs",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "GithubDiff.js"
            ]
        }
    ]
}