EasySpeak

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

O que é EasySpeak?

EasySpeak é uma extensão do Chrome desenvolvida por jsbbvk, e sua principal característica é "This extension will allow users to speak into the website, a new way to interact.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão EasySpeak

Baixe arquivos de extensão EasySpeak no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome EasySpeak EasySpeak
ID ddjlgapaflfbkfndnhlehildjhegeomk
URL Oficial https://chromewebstore.google.com/detail/easyspeak/ddjlgapaflfbkfndnhlehildjhegeomk
Descrição This extension will allow users to speak into the website, a new way to interact.
Tamanho do Arquivo 149 KB
Contagem de Instalações 11
Versão Atual 1.5
Última Atualização 2018-04-26
Data de Publicação 2018-04-25
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor jsbbvk
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}