GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
GitHub Custom Tab Sizeคืออะไร?
GitHub Custom Tab Size เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lukechilds และคุณลักษณะหลักของมันคือ "Make tab indented code more readable by allowing you to set a custom tab size"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Custom Tab Size
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Custom Tab Size ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Custom Tab Size |
ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
คำอธิบาย | Make tab indented code more readable by allowing you to set a custom tab size |
ขนาดไฟล์ | 22.35 KB |
จำนวนการติดตั้ง | 557 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2019-05-06 |
วันที่เผยแพร่ | 2019-05-06 |
คะแนน | 4.30/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | lukechilds |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lukechilds/github-custom-tab-size |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Custom Tab Size", "version": "1.1.0", "icons": { "256": "icon.png" }, "description": "Make tab indented code more readable by allowing you to set a custom tab size", "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size", "manifest_version": 2, "minimum_chrome_version": "36", "browser_action": { "default_popup": "src\/popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*" ], "js": [ "src\/content.js" ] } ] } |