Github Diffs

Collapse/expand diff files for easier reviews

Vad är Github Diffs?

Github Diffs är en Chrome-tillägg utvecklad av kamranahmed.se, och dess huvudfunktion är "Collapse/expand diff files for easier reviews".

Tilläggsskärmbilder

screenshot

Ladda ner Github Diffs-förlängningens CRX-fil

Ladda ner Github Diffs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Github Diffs Github Diffs
ID dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
Officiell webbadress https://chromewebstore.google.com/detail/github-diffs/dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
Beskrivning Collapse/expand diff files for easier reviews
Filstorlek 12.99 KB
Antal Installationer 85
Aktuell Version 1.0.3
Senast Uppdaterad 2017-08-11
Publiceringsdatum 2017-08-11
Utvecklare kamranahmed.se
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}