Voice Text

This app will transcribe your speech

Hvad er Voice Text?

Voice Text er en Chrome-udvidelse udviklet af LK, og dens hovedfunktion er "This app will transcribe your speech".

Download Voice Text-udvidelses-CRX-fil

Download Voice Text-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Voice Text Voice Text
ID aaioppfhljbjlidhkkehocbjjccoccmm
Officiel URL https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm
Beskrivelse This app will transcribe your speech
Filstørrelse 482 KB
Antal Installationer 573
Nuværende Version 1.0.1
Senest Opdateret 2017-08-06
Udgivelsesdato 2017-08-06
Bedømmelse 4.20/5 Samlet 5 Bedømmelser
Udvikler LK
Betalingsmetode free
Understøttede Sprog 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"
    ]
}