EasySpeak

This extension will allow users to speak into the website, a new way to interact.

Hvad er EasySpeak?

EasySpeak er en Chrome-udvidelse udviklet af jsbbvk, og dens hovedfunktion er "This extension will allow users to speak into the website, a new way to interact.".

Udvidelsesskærmbilleder

screenshot

Download EasySpeak-udvidelses-CRX-fil

Download EasySpeak-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

                        Visit our website: www.easyspeak.tech

This extension will allow you to transform your speech into text that is placed into text areas. 

Instuctions:
Simply select a text field and start the voice recognition to see the magic unfold. 

Commands:
 - 'clear slate'
 - 'delete word'
 - 'new paragraph'
 - "Open" + (valid url)
 - "Buy" + (item queries)
 - "Search" + (anything)
 - "Solve" + (anything)
 - "What is" + (anything)
 - "Play video" + (anything)                    

Grundlæggende oplysninger om udvidelsen

Navn EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
Officiel URL https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Beskrivelse This extension will allow users to speak into the website, a new way to interact.
Filstørrelse 149 KB
Antal Installationer 11
Nuværende Version 1.5
Senest Opdateret 2018-04-26
Udgivelsesdato 2018-04-25
Bedømmelse 3.00/5 Samlet 4 Bedømmelser
Udvikler jsbbvk
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EasySpeak",
    "description": "This extension will allow users to speak into the website, a new way to interact.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": [
        {
            "scripts": [
                "background.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ]
}