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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}