Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Github Expand Diffคืออะไร?
Github Expand Diff เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Ridgway และคุณลักษณะหลักของมันคือ "A user script for Chrome that allows you to expand the missing lines in a Github diff."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Expand Diff
ดาวน์โหลดไฟล์ส่วนขยาย Github Expand Diff ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | imakbajpbolcgnkfhhlhipbjppfomlij |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
| คำอธิบาย | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
| ขนาดไฟล์ | 5.63 KB |
| จำนวนการติดตั้ง | 121 |
| เวอร์ชันปัจจุบัน | 0.0.1.6 |
| อัปเดตครั้งล่าสุด | 2014-06-18 |
| วันที่เผยแพร่ | 2014-06-18 |
| คะแนน | 3.86/5 รวมทั้งหมด 7 คะแนน |
| ผู้พัฒนา | Michael Ridgway |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/mridgway/github-expand-diff |
| URL หน้าช่วยเหลือ | https://github.com/mridgway/github-expand-diff/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Expand Diff",
"version": "0.0.1.6",
"description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/*.com\/*\/*\/pull\/*",
"https:\/\/*.com\/*\/*\/commit\/*",
"https:\/\/*.com\/*\/*\/compare\/*"
],
"include_globs": [
"https:\/\/github.com\/*",
"https:\/\/github.*.com\/*",
"https:\/\/git.*.com\/*"
],
"run_at": "document_end",
"js": [
"github-expand-diff.user.js"
]
}
]
} | |