EasySpeak

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

¿Qué es EasySpeak?

EasySpeak es una extensión de Chrome desarrollada por jsbbvk, y su función principal es "This extension will allow users to speak into the website, a new way to interact.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión EasySpeak

Descarga archivos de extensión EasySpeak en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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)                    

Información Básica de la Extensión

Nombre EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
URL Oficial https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Descripción This extension will allow users to speak into the website, a new way to interact.
Tamaño del Archivo 149 KB
Cantidad de Instalaciones 11
Versión Actual 1.5
Última Actualización 2018-04-26
Fecha de Publicación 2018-04-25
Calificación 3.00/5 Total de 4 Calificaciones
Desarrollador jsbbvk
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}