Github Whitespace ignorable differ

This extension allows you to only see only the non-whitespace diffs.

ما هو Github Whitespace ignorable differ؟

Github Whitespace ignorable differ هو إضافة Chrome تم تطويرها بواسطة Scott Youngblut، والميزة الرئيسية لها هي "This extension allows you to only see only the non-whitespace diffs.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Github Whitespace ignorable differ

قم بتنزيل ملفات الامتداد Github Whitespace ignorable differ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension gives you the ability to turn on white space diffing on a per-site basis using a cookie; 

It works on any github site including github enterprise!!
Tested and Everything!                    

معلومات أساسية عن التمديد

الاسم Github Whitespace ignorable differ Github Whitespace ignorable differ
ID klfoeihajdgibpablomibnaaaleicmjb
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-whitespace-ignorab/klfoeihajdgibpablomibnaaaleicmjb
الوصف This extension allows you to only see only the non-whitespace diffs.
حجم الملف 17.75 KB
عدد التثبيتات 16
النسخة الحالية 0.0.2
آخر تحديث 2015-01-31
تاريخ النشر 2015-01-31
تقييم 5.00/5 مجموع تقييمات 1
المطور Scott Youngblut
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://scottyoungblut.com/
عنوان صفحة المساعدة https://github.com/syoungblut/chrome-github-whitespace
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Whitespace ignorable differ",
    "description": "This extension allows you to only see only the non-whitespace diffs.",
    "version": "0.0.2",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "16": "resources\/icon-16.png",
        "48": "resources\/icon-48.png",
        "128": "resources\/icon-128.png"
    },
    "web_accessible_resources": [
        "page-script-link-rewriter.js",
        "resources\/icon-16.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*\/commit\/*",
                "https:\/\/*\/*\/compare\/*",
                "https:\/\/*\/*\/pull\/*"
            ],
            "js": [
                "jsuri\/jsuri-1.1.1.js",
                "cookies\/cookies-1.1.0.js",
                "content-script-cookie-api.js",
                "content-script-toggle-button.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*\/*\/commit\/*",
                "https:\/\/*\/*\/compare\/*",
                "https:\/\/*\/*\/pull\/*"
            ],
            "js": [
                "jsuri\/jsuri-1.1.1.js",
                "cookies\/cookies-1.1.0.js",
                "content-script-cookie-api.js",
                "content-script-preference-loader.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}