Voice Recognization

VR

Voice Recognization क्या है?

Voice Recognization Qodic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "VR"।

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

screenshot

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

crx प्रारूप में Voice Recognization एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Perform simple actions by just talking to your extension. This extension recognizes some pre-built commands and performs the actions. We have used Google Speech to text API® to convert voice to text.

The extension recognizes the following basic commands:
 - Open a website - for example, just say open facebook and it will open facebook.com

 - Youtube actions - play and pause a video

 - More coming soon...                    

एक्सटेंशन की मूल जानकारी

नाम Voice Recognization Voice Recognization
ID jfeaieecejjafmabfiebmnbomogpmhjb
आधिकारिक URL https://chromewebstore.google.com/detail/voice-recognization/jfeaieecejjafmabfiebmnbomogpmhjb
विवरण VR
फ़ाइल का आकार 2.75 MB
स्थापना संख्या 16
वर्तमान संस्करण 1.1
अंतिम अपडेट 2021-12-11
प्रकाशन तिथि 2017-09-07
डेवलपर Qodic
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voice Recognization",
    "description": "VR",
    "short_name": "VR",
    "version": "1.1",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/logo_64.png",
        "128": "icons\/logo_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/logo_16.png",
            "32": "icons\/logo_32.png"
        },
        "default_title": "Click Here",
        "default_popup": "popup.html"
    },
    "permissions": [
        "*:\/\/*\/*",
        "https:\/\/*\/",
        "http:\/\/*\/",
        "",
        "https:\/\/ajax.googleapis.com\/*"
    ],
    "web_accessible_resources": [
        "testpage.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "css": [
                "css\/tracker.css"
            ],
            "all_frames": false
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}