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開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to only see only the non-whitespace diffs.”。

擴展截圖

screenshot

下載Github Whitespace ignorable differ擴展crx文件

下載Github Whitespace ignorable differ擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
        }
    ]
}