Hide whitespaces GitHub

Always hide whitespaces in GitHub

Hide whitespaces GitHubคืออะไร?

Hide whitespaces GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arnaud Barré และคุณลักษณะหลักของมันคือ "Always hide whitespaces in GitHub"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide whitespaces GitHub

ดาวน์โหลดไฟล์ส่วนขยาย Hide whitespaces GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the  "hide whitespace changes" option                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hide whitespaces GitHub Hide whitespaces GitHub
ID nafhbcekbgodfnjpnobmbiajjpgmibnc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc
คำอธิบาย Always hide whitespaces in GitHub
ขนาดไฟล์ 10.26 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2022-08-09
วันที่เผยแพร่ 2020-06-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Arnaud Barré
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ArnaudBarre/hide-whitespaces-github
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide whitespaces GitHub",
    "version": "0.6.0",
    "description": "Always hide whitespaces in GitHub",
    "permissions": [
        "https:\/\/github.com\/**"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/**"
            ],
            "run_at": "document_start",
            "js": [
                "hide-whitespaces.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}