Github Whitespace ignorable differ

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

Github Whitespace ignorable differ क्या है?

Github Whitespace ignorable differ Scott Youngblut द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to only see only the non-whitespace diffs."।

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

screenshot

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

crx प्रारूप में Github Whitespace ignorable differ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ URL 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
        }
    ]
}