Voice Text

This app will transcribe your speech

Voice Text क्या है?

Voice Text LK द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This app will transcribe your speech"।

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

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

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

                        Click on this chrome extension's icon once installed, and you'll be directed to a new tab. From there, click on "Speak" to start recording your speech and "Stop" to stop recording.

The supported language is English.                    

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

नाम Voice Text Voice Text
ID aaioppfhljbjlidhkkehocbjjccoccmm
आधिकारिक URL https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm
विवरण This app will transcribe your speech
फ़ाइल का आकार 482 KB
स्थापना संख्या 573
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2017-08-06
प्रकाशन तिथि 2017-08-06
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर LK
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voice Text",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "This app will transcribe your speech",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "client\/index.js"
            ]
        }
    ],
    "background": {
        "page": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}