Github diff helper

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

Github diff helper क्या है?

Github diff helper https://alexw.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When you have too many files in one github diff, this extension helps you filter out the noise"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github diff helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Github diff helper Github diff helper
ID dhggdgaoccikibijlbocggphcomehbih
आधिकारिक URL https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih
विवरण When you have too many files in one github diff, this extension helps you filter out the noise
फ़ाइल का आकार 137 KB
स्थापना संख्या 203
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2017-04-14
प्रकाशन तिथि 2017-04-14
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर https://alexw.me
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/altryne/Github-diff-extension
सहायता पृष्ठ URL https://github.com/altryne/Github-diff-extension/issues
समर्थित भाषाएँ 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"
        }
    ]
}