Git Well Soon

Because https://github.com/community/community/discussions/5486

什么是Git Well Soon?

Git Well Soon是由chris.duflo开发的Chrome扩展程序,该扩展的主要功能是“Because https://github.com/community/community/discussions/5486”。

扩展截图

screenshot

下载Git Well Soon扩展crx文件

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

扩展使用说明

                        Github: Persistent 'Hide whitespace changes' Setting

When reviewing pull requests on enterprise or commercial github, there is an option to hide whitespace changes. This option is not persistent and has to be toggle each time a user reviews a pull request. The option can be toggled by adding a query parameter to the url.

This extension knows when it is on a github pull request page and adds the query parameter to the url, effectively persisting the setting 'Hide whitespace changes'.

- Using the `Hide whitespace` checkbox within Github will be honored for the current pull request or commit diff view.                    

扩展基本信息

名称 Git Well Soon Git Well Soon
ID ehpeaofieafibmhiagianfjjblpnmbdo
官方URL https://chromewebstore.google.com/detail/git-well-soon/ehpeaofieafibmhiagianfjjblpnmbdo
简介 Because https://github.com/community/community/discussions/5486
文件大小 9.78 KB
安装次数 194
当前版本 0.0.0.3
更新时间 2023-01-28
上架时间 2022-11-03
评分 4.00/5 共1次评分
开发者 chris.duflo
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/cduflo/gitwellsoon
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Well Soon",
    "description": "Because https:\/\/github.com\/community\/community\/discussions\/5486",
    "version": "0.0.0.3",
    "manifest_version": 3,
    "icons": {
        "128": "assets\/128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*\/pull\/*\/files*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "history",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*\/pull\/*\/files*"
    ]
}