Github Enhanced Project Board
An enhanced UI for Github project boards
Github Enhanced Project Boardคืออะไร?
Github Enhanced Project Board เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bluehouse Group และคุณลักษณะหลักของมันคือ "An enhanced UI for Github project boards"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Enhanced Project Board
ดาวน์โหลดไฟล์ส่วนขยาย Github Enhanced Project Board ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension to improve the usability of Github project boards. The columns will become responsive and will not overflow off screen. The add column button is moved up to the controls row. There is a new issue button added to the controls. Clicking on issue title will open issue in new window instead of showing summary view.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Enhanced Project Board |
ID | eidmccobchlljnlophmcjgmimneegidp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp |
คำอธิบาย | An enhanced UI for Github project boards |
ขนาดไฟล์ | 82.66 KB |
จำนวนการติดตั้ง | 80 |
เวอร์ชันปัจจุบัน | 1.4.1 |
อัปเดตครั้งล่าสุด | 2019-04-07 |
วันที่เผยแพร่ | 2019-04-06 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Bluehouse Group |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Enhanced Project Board", "description": "An enhanced UI for Github project boards", "version": "1.4.1", "page_action": [], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.github.com\/*", "https:\/\/*.github.com\/*" ], "js": [ "jquery.min.js", "github.js" ] } ], "web_accessible_resources": [ "images\/github.png" ], "permissions": [ "tabs" ], "icons": { "32": "images\/github.png" } } |