Github Voice Notes
Record and add voice note comments to pull requests on Github
Qu'est-ce que Github Voice Notes ?
Github Voice Notes est une extension Chrome développée par ryanmarvin, et sa fonction principale est "Record and add voice note comments to pull requests on Github".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github Voice Notes
Téléchargez les fichiers d'extension Github Voice Notes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
URL Officiel | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
Description | Record and add voice note comments to pull requests on Github |
Taille du Fichier | 477 KB |
Nombre d'Installations | 26 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2021-07-13 |
Date de Publication | 2021-07-03 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | ryanmarvin |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |