Github Voice Notes

Record and add voice note comments to pull requests on Github

Was ist Github Voice Notes?

Github Voice Notes ist eine Chrome-Erweiterung, die von ryanmarvin entwickelt wurde, und ihr Hauptmerkmal ist "Record and add voice note comments to pull requests on Github".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Github Voice Notes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Voice Notes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Github Voice Notes Github Voice Notes
ID icnhdefbminhpijiicfdjhndkbocoibb
Offizielle URL https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb
Beschreibung Record and add voice note comments to pull requests on Github
Dateigröße 477 KB
Installationsanzahl 26
Aktuelle Version 0.3
Letztes Update 2021-07-13
Veröffentlichungsdatum 2021-07-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ryanmarvin
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}