Github Diffs

Collapse/expand diff files for easier reviews

Cos'è Github Diffs?

Github Diffs è un'estensione di Chrome sviluppata da kamranahmed.se, e la sua funzione principale è "Collapse/expand diff files for easier reviews".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github Diffs

Scarica i file di estensione Github Diffs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Github Diffs Github Diffs
ID dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
URL Ufficiale https://chromewebstore.google.com/detail/github-diffs/dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
Descrizione Collapse/expand diff files for easier reviews
Dimensione del File 12.99 KB
Conteggio Installazioni 85
Versione Corrente 1.0.3
Ultimo Aggiornamento 2017-08-11
Data di Pubblicazione 2017-08-11
Sviluppatore kamranahmed.se
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}