Vibinex Code Review
Personalization and context for pull requests on GitHub & Bitbucket
Vibinex Code Reviewคืออะไร?
Vibinex Code Review เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://vibinex.com และคุณลักษณะหลักของมันคือ "Personalization and context for pull requests on GitHub & Bitbucket"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vibinex Code Review
ดาวน์โหลดไฟล์ส่วนขยาย Vibinex Code Review ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Reviewing pull requests is one of the most crucial interactions among developers in a team. However, there are usually too many requests to review for every developer, resulting in bad or no reviews. We try to help by prioritizing pull requests for a developer, so they can at least review the important PRs carefully. We help prioritize by adding context to the PR, like the familiarity of the reviewer with the files changed in the PR (using git commit history). Additional context can be added by integrating production events and business events (coming soon). We currently support GitHub and Bitbucket. To request support for other Git hosting services, like GitLab, Gitae, Azure repos etc., please drop us an email at [email protected].
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Vibinex Code Review |
ID | jafgelpkkkopeaefadkdjcmnicgpcncc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/vibinex-code-review/jafgelpkkkopeaefadkdjcmnicgpcncc |
คำอธิบาย | Personalization and context for pull requests on GitHub & Bitbucket |
ขนาดไฟล์ | 50.48 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 1.1.2 |
อัปเดตครั้งล่าสุด | 2024-02-23 |
วันที่เผยแพร่ | 2023-03-21 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://vibinex.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://vibinex.com |
URL หน้านโยบายความเป็นส่วนตัว | https://vibinex.com/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Vibinex Code Review", "version": "1.1.2", "manifest_version": 3, "description": "Personalization and context for pull requests on GitHub & Bitbucket", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsRm6EaBdHDBxVjt9o9WKeL9EDdz1X+knDAU5uoZaRsXTmWjslhJN9DhSd7\/Ys4aJOSN+s+5\/HnIHcKV63P4GYaUM5FhETHEWORHlwIgjcV\/1h6wD6bNbvXi06gtiygE+yMrCzzD93\/Z+41XrwMElYiW2U5owNpat2Yfq4p9FDX1uBJUKsRIMp6LbRQla4vAzH\/HMUtHWmeuUsmPVzcq1b6uB1QmuJqIQ1GrntIHw3UBWUlqRZ5OtxI1DCP3knglvqz26WT5Pc4GBDNlcI9+3F0vhwqwHqrdyjZpIKZ7iaQzcrovOqUKuXs1J3hDtXq8WoJELIqfIisY7rhAvq6b8jQIDAQAB", "background": { "service_worker": "backgroundScript.js" }, "action": { "default_popup": "popup\/popup.html", "default_icon": "resources\/vibinex-logo.png" }, "host_permissions": [ "https:\/\/vibinex.com\/*", "https:\/\/gcscruncsql-k7jns52mtq-el.a.run.app\/*" ], "permissions": [ "storage", "cookies" ], "icons": { "128": "resources\/vibinex-logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/**", "https:\/\/bitbucket.org\/**", "https:\/\/vibinex.com\/**", "https:\/\/gcscruncsql-k7jns52mtq-el.a.run.app\/**" ], "css": [ "scripts\/main.css" ], "js": [ "scripts\/utilities.js", "scripts\/api.js", "scripts\/highlighting.js", "scripts\/repoHandlers.js", "scripts\/signedOutIndicator.js", "scripts\/orchestrator.js", "scripts\/init.js" ] } ] } |