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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Github diff helper

قم بتنزيل ملفات الامتداد Github diff helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
        }
    ]
}