Github diff helper

When you have too many files in one github diff, this extension helps you filter out the noise

Wat is Github diff helper?

Github diff helper is een Chrome-extensie ontwikkeld door https://alexw.me, en de belangrijkste functie is "When you have too many files in one github diff, this extension helps you filter out the noise".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Github diff helper

Download Github diff helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        ★★★★★
Updated to work with the new github async loading files
★★★★★

Github's diff views are terrific, they let you code review easily, but sometimes there's too much to go over!

This extension lets you filter out the noise. 

Adding a small button in the Github diff view, you can select which file types you want to hide.

Especially useful when you compile your css with SCSS/LESS, and you don't want to go over tons of generated css files.

Or when you write CofeeScript and don't want to go over the generated js files.

The extension also helps multiple code reviewers, when you are only in charge of code reviewing a small portion of a large diff.

Let me know what you think, issues can be posted here : https://github.com/altryne/Github-diff-extension/issues                    

Basisinformatie over de Extensie

Naam Github diff helper Github diff helper
ID dhggdgaoccikibijlbocggphcomehbih
Officiële URL https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih
Beschrijving When you have too many files in one github diff, this extension helps you filter out the noise
Bestandsgrootte 137 KB
Aantal Installaties 203
Huidige Versie 0.1.1
Laatst Bijgewerkt 2017-04-14
Publicatiedatum 2017-04-14
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar https://alexw.me
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/altryne/Github-diff-extension
Help Pagina-URL https://github.com/altryne/Github-diff-extension/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github diff helper",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "When you have too many files in one github diff, this extension helps you filter out the noise",
    "homepage_url": "http:\/\/extensionizr.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon128.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/jquery\/dist\/jquery.min.js",
                "js\/underscore.min.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}