Github Voice Notes
Record and add voice note comments to pull requests on Github
What is Github Voice Notes?
Github Voice Notes is a Chrome extension developed by ryanmarvin, and its main feature is "Record and add voice note comments to pull requests on Github".
Extension Screenshots
Download Github Voice Notes Extension CRX File
Download Github Voice Notes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
Official URL | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
Description | Record and add voice note comments to pull requests on Github |
File Size | 477 KB |
Installation Count | 26 |
Current Version | 0.3 |
Last Updated | 2021-07-13 |
Publish Date | 2021-07-03 |
Rating | 5.00/5 Total 1 Ratings |
Developer | ryanmarvin |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |