Github Voice Notes
Record and add voice note comments to pull requests on Github
Cos'è Github Voice Notes?
Github Voice Notes è un'estensione di Chrome sviluppata da ryanmarvin, e la sua funzione principale è "Record and add voice note comments to pull requests on Github".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Voice Notes
Scarica i file di estensione Github Voice Notes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
URL Ufficiale | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
Descrizione | Record and add voice note comments to pull requests on Github |
Dimensione del File | 477 KB |
Conteggio Installazioni | 26 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2021-07-13 |
Data di Pubblicazione | 2021-07-03 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | ryanmarvin |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |