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
Eメール [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*"
    ]
}