Github diff helper

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

Qu'est-ce que Github diff helper ?

Github diff helper est une extension Chrome développée par https://alexw.me, et sa fonction principale est "When you have too many files in one github diff, this extension helps you filter out the noise".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Github diff helper

Téléchargez les fichiers d'extension Github diff helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ★★★★★
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                    

Informations de Base sur l'Extension

Nom Github diff helper Github diff helper
ID dhggdgaoccikibijlbocggphcomehbih
URL Officiel https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih
Description When you have too many files in one github diff, this extension helps you filter out the noise
Taille du Fichier 137 KB
Nombre d'Installations 203
Version Actuelle 0.1.1
Dernière Mise à Jour 2017-04-14
Date de Publication 2017-04-14
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://alexw.me
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/altryne/Github-diff-extension
URL de la Page d'Aide https://github.com/altryne/Github-diff-extension/issues
Langues Prises en Charge 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"
        }
    ]
}