Git Well Soon

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

Git Well Soon là gì?

Git Well Soon là một tiện ích mở rộng Chrome được phát triển bởi chris.duflo, và tính năng chính của nó là "Because https://github.com/community/community/discussions/5486".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Git Well Soon

Tải xuống các tệp mở rộng Git Well Soon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Git Well Soon Git Well Soon
ID ehpeaofieafibmhiagianfjjblpnmbdo
URL Chính Thức https://chromewebstore.google.com/detail/git-well-soon/ehpeaofieafibmhiagianfjjblpnmbdo
Mô tả Because https://github.com/community/community/discussions/5486
Kích Thước Tệp 9.78 KB
Số Lần Cài Đặt 194
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2023-01-28
Ngày Phát Hành 2022-11-03
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển chris.duflo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cduflo/gitwellsoon
Ngôn Ngữ Được Hỗ Trợ 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*"
    ]
}