EasySpeak

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

Cos'è EasySpeak?

EasySpeak è un'estensione di Chrome sviluppata da jsbbvk, e la sua funzione principale è "This extension will allow users to speak into the website, a new way to interact.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione EasySpeak

Scarica i file di estensione EasySpeak in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
URL Ufficiale https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Descrizione This extension will allow users to speak into the website, a new way to interact.
Dimensione del File 149 KB
Conteggio Installazioni 11
Versione Corrente 1.5
Ultimo Aggiornamento 2018-04-26
Data di Pubblicazione 2018-04-25
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore jsbbvk
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}