Github Voice Notes
Record and add voice note comments to pull requests on Github
Github Voice Notesคืออะไร?
Github Voice Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ryanmarvin และคุณลักษณะหลักของมันคือ "Record and add voice note comments to pull requests on Github"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Voice Notes
ดาวน์โหลดไฟล์ส่วนขยาย Github Voice Notes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you tired of Zoom calls? Want more pointed discussions and faster Github pull request reviews? Github Voice Notes will let you record audio snippets and add them on Github pull request comments with only the click of a single button!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
คำอธิบาย | Record and add voice note comments to pull requests on Github |
ขนาดไฟล์ | 477 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2021-07-13 |
วันที่เผยแพร่ | 2021-07-03 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | ryanmarvin |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Voice Notes", "description": "Record and add voice note comments to pull requests on Github", "version": "0.3", "manifest_version": 2, "icons": { "16": "static\/gvn-icon-16.png", "48": "static\/gvn-icon-48.png", "128": "static\/gvn-icon-square-128.png" }, "content_security_policy": "script-src 'self'; object-src 'self';", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*", "*:\/\/github.com\/*\/*\/pull\/*\/files", "*:\/\/github.com\/*\/*\/pull\/*\/commits\/*", "*:\/\/github.com\/*\/*\/commit\/*" ], "js": [ "main.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/github.com\/*" ] }, "web_accessible_resources": [ "static\/*", "page-script.js" ] } |