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文件

下载Github Whitespace Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}