Visibly
Complete pull requests on GitHub more quickly, more collaboratively, and more Visibly.
Visiblyคืออะไร?
Visibly เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://visibly.dev และคุณลักษณะหลักของมันคือ "Complete pull requests on GitHub more quickly, more collaboratively, and more Visibly."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Visibly
ดาวน์โหลดไฟล์ส่วนขยาย Visibly ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: 1. Review Thread Status - Allows you to quickly set or check the status of each review comment thread. As a pull request author, statuses serve as a task list, reducing the amount of work needed to keep reviewers up-to-date. As a pull request reviewer, statuses identify which threads are ready for review and allow you to see threads in context. 2. Actionable Metrics (Early 2023) - Developer-centric metrics that bring the effort, time, and impact of code review to light. 3. Real-time Collaboration (Early 2023) - Code review enhanced with intuitive and familiar real-time features. For every pull request: identifies reviewers (active and inactive) and when and what they are reviewing. ...and many more coming soon. Visibly strives to make pull requests more efficient, more visible, and less of a black box. Your feedback and pain points directly drive what we build! We'd love to hear from you.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Visibly |
ID | aojlokoapdflfefnacgdgoiibmlidpco |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/visibly/aojlokoapdflfefnacgdgoiibmlidpco |
คำอธิบาย | Complete pull requests on GitHub more quickly, more collaboratively, and more Visibly. |
ขนาดไฟล์ | 299 KB |
จำนวนการติดตั้ง | 33 |
เวอร์ชันปัจจุบัน | 0.9.0 |
อัปเดตครั้งล่าสุด | 2023-08-07 |
วันที่เผยแพร่ | 2023-01-02 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://visibly.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://visibly.dev |
URL หน้านโยบายความเป็นส่วนตัว | https://visibly.dev/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Visibly", "description": "Complete pull requests on GitHub more quickly, more collaboratively, and more Visibly.", "version": "0.9.0", "manifest_version": 3, "background": { "service_worker": "js\/background.js" }, "content_security_policy": { "extension_pages": "default-src 'self'; connect-src * data: blob: filesystem:; style-src 'self' data: 'unsafe-inline'; img-src 'self' data:; frame-src 'self' data:; font-src 'self' data:; media-src * data: blob: filesystem:;" }, "host_permissions": [ "https:\/\/visibly.dev\/" ], "externally_connectable": { "matches": [ "https:\/\/visibly.dev\/*" ] }, "permissions": [ "cookies", "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "js\/github.js" ], "matches": [ "*:\/\/github.com\/*", "*:\/\/*.github.com\/*" ] } ], "action": { "default_title": "Visibly", "default_icon": { "16": ".\/public\/assets\/images\/logo\/visibly16.png", "32": ".\/public\/assets\/images\/logo\/visibly32.png", "48": ".\/public\/assets\/images\/logo\/visibly48.png", "128": ".\/public\/assets\/images\/logo\/visibly128.png", "192": ".\/public\/assets\/images\/logo\/visibly192.png", "512": ".\/public\/assets\/images\/logo\/visibly512.png" } }, "icons": { "16": ".\/public\/assets\/images\/logo\/visibly16.png", "32": ".\/public\/assets\/images\/logo\/visibly32.png", "48": ".\/public\/assets\/images\/logo\/visibly48.png", "128": ".\/public\/assets\/images\/logo\/visibly128.png", "192": ".\/public\/assets\/images\/logo\/visibly192.png", "512": ".\/public\/assets\/images\/logo\/visibly512.png" } } |