GitHub-Diff-Whitespace
Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
GitHub-Diff-Whitespaceคืออะไร?
GitHub-Diff-Whitespace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jasonkarns และคุณลักษณะหลักของมันคือ "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub-Diff-Whitespace
ดาวน์โหลดไฟล์ส่วนขยาย GitHub-Diff-Whitespace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Provide a UI button to toggle whitespace in GitHub diffs. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | lhbcdehjihmbiafeodkfnbndleijnnhp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp |
| คำอธิบาย | Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`) |
| ขนาดไฟล์ | 5.42 KB |
| จำนวนการติดตั้ง | 135 |
| เวอร์ชันปัจจุบัน | 1.3.2 |
| อัปเดตครั้งล่าสุด | 2015-09-14 |
| วันที่เผยแพร่ | 2015-09-14 |
| คะแนน | 3.57/5 รวมทั้งหมด 7 คะแนน |
| ผู้พัฒนา | jasonkarns |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
| URL หน้าช่วยเหลือ | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub-Diff-Whitespace",
"version": "1.3.2",
"manifest_version": 2,
"description": "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)",
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"js": [
"github-diff-whitespace.js"
],
"matches": [
"https:\/\/github.com\/*\/commit\/*",
"https:\/\/github.com\/*\/compare\/*",
"https:\/\/github.com\/*\/pull\/*"
]
}
]
} | |