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
电子邮箱 [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"
    ]
}