Github Voice Notes

Record and add voice note comments to pull requests on Github

Github Voice Notesとは何ですか?

Github Voice Notesはryanmarvinによって開発されたChromeの拡張機能で、その主な機能は「Record and add voice note comments to pull requests on Github」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Github Voice Notes拡張機能のCRXファイルをダウンロード

Github Voice Notes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Github Voice Notes Github Voice Notes
ID icnhdefbminhpijiicfdjhndkbocoibb
公式URL https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb
説明 Record and add voice note comments to pull requests on Github
ファイルサイズ 477 KB
インストール数 26
現在のバージョン 0.3
最終更新日 2021-07-13
公開日 2021-07-03
評価 5.00/5 合計 1 レビュー
開発者 ryanmarvin
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}