Github Voice Notes
Record and add voice note comments to pull requests on Github
Github Voice Notes là gì?
Github Voice Notes là một tiện ích mở rộng Chrome được phát triển bởi ryanmarvin, và tính năng chính của nó là "Record and add voice note comments to pull requests on Github".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Github Voice Notes
Tải xuống các tệp mở rộng Github Voice Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
URL Chính Thức | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
Mô tả | Record and add voice note comments to pull requests on Github |
Kích Thước Tệp | 477 KB |
Số Lần Cài Đặt | 26 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2021-07-13 |
Ngày Phát Hành | 2021-07-03 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | ryanmarvin |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |