Github Voice Notes
Record and add voice note comments to pull requests on Github
O que é Github Voice Notes?
Github Voice Notes é uma extensão do Chrome desenvolvida por ryanmarvin, e sua principal característica é "Record and add voice note comments to pull requests on Github".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github Voice Notes
Baixe arquivos de extensão Github Voice Notes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
URL Oficial | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
Descrição | Record and add voice note comments to pull requests on Github |
Tamanho do Arquivo | 477 KB |
Contagem de Instalações | 26 |
Versão Atual | 0.3 |
Última Atualização | 2021-07-13 |
Data de Publicação | 2021-07-03 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | ryanmarvin |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |