Github Voice Notes

Record and add voice note comments to pull requests on Github

Github Voice Notes क्या है?

Github Voice Notes ryanmarvin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record and add voice note comments to pull requests on Github"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github Voice Notes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}