Github Whitespace Hider

Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.

Github Whitespace Hider란 무엇입니까?

Github Whitespace Hider은(는) joe.lloyd.22.24에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience."입니다.

확장 프로그램 스크린샷

screenshot

Github Whitespace Hider 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Improve your code reviewing experience on GitHub with the Github Whitespace Hider. This handy Chrome extension automatically hides whitespace changes in pull requests, streamlining your review process by focusing on the changes that matter.

In the hustle of coding, it's common to inadvertently add or remove whitespaces, which can clutter the pull request diff view. These changes, although innocent in intent, can make the diff harder to read and obscure the actual code changes. That's where Github Whitespace Hider comes in.

With just a one-time installation, Github Whitespace Hider gets to work on every GitHub pull request page you visit. It automatically modifies the URL to include the 'w=1' parameter, effectively hiding whitespace changes. This allows you to review code alterations more efficiently, without the need to manually toggle the 'Hide whitespace changes' option every time.

Install Github Whitespace Hider today and enjoy a cleaner, more focused code review experience on GitHub!

Open source: https://github.com/joe-lloyd/github-white-space-off-chrome-extention                    

확장 프로그램 기본 정보

이름 Github Whitespace Hider Github Whitespace Hider
ID fapgonkhjoinbbcachbpcjhheikgbjem
공식 URL https://chromewebstore.google.com/detail/github-whitespace-hider/fapgonkhjoinbbcachbpcjhheikgbjem
설명 Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.
파일 크기 3.52 KB
설치 횟수 53
현재 버전 1.0
최근 업데이트 2023-06-02
출시 날짜 2023-06-02
평점 4.00/5 총 2 개의 평점
개발자 joe.lloyd.22.24
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Whitespace Hider",
    "version": "1.0",
    "description": "Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.",
    "host_permissions": [
        "https:\/\/github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "whitespace_hider.js"
            ]
        }
    ]
}