Git Well Soon

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

Git Well Soonคืออะไร?

Git Well Soon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chris.duflo และคุณลักษณะหลักของมันคือ "Because https://github.com/community/community/discussions/5486"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Git Well Soon

ดาวน์โหลดไฟล์ส่วนขยาย 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*"
    ]
}