Github Voice Notes

Record and add voice note comments to pull requests on Github

Co je Github Voice Notes?

Github Voice Notes je rozšíření Chrome vyvinuté ryanmarvin, a jeho hlavní funkcí je „Record and add voice note comments to pull requests on Github“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Github Voice Notes

Stáhněte si soubory rozšíření Github Voice Notes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Github Voice Notes Github Voice Notes
ID icnhdefbminhpijiicfdjhndkbocoibb
Oficiální URL https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb
Popis Record and add voice note comments to pull requests on Github
Velikost souboru 477 KB
Počet instalací 26
Aktuální Verze 0.3
Poslední Aktualizace 2021-07-13
Datum Vydání 2021-07-03
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář ryanmarvin
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}