Github Voice Notes

Record and add voice note comments to pull requests on Github

ما هو Github Voice Notes؟

Github Voice Notes هو إضافة Chrome تم تطويرها بواسطة ryanmarvin، والميزة الرئيسية لها هي "Record and add voice note comments to pull requests on Github".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Github Voice Notes

قم بتنزيل ملفات الامتداد Github Voice Notes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}