Github Voice Notes

Record and add voice note comments to pull requests on Github

¿Qué es Github Voice Notes?

Github Voice Notes es una extensión de Chrome desarrollada por ryanmarvin, y su función principal es "Record and add voice note comments to pull requests on Github".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Github Voice Notes

Descarga archivos de extensión Github Voice Notes en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Github Voice Notes Github Voice Notes
ID icnhdefbminhpijiicfdjhndkbocoibb
URL Oficial https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb
Descripción Record and add voice note comments to pull requests on Github
Tamaño del Archivo 477 KB
Cantidad de Instalaciones 26
Versión Actual 0.3
Última Actualización 2021-07-13
Fecha de Publicación 2021-07-03
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador ryanmarvin
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}