VoiceFiller Speech To Text for Website Forms

VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free

O que é VoiceFiller Speech To Text for Website Forms?

VoiceFiller Speech To Text for Website Forms é uma extensão do Chrome desenvolvida por Silviu Stroe, e sua principal característica é "VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão VoiceFiller Speech To Text for Website Forms

Baixe arquivos de extensão VoiceFiller Speech To Text for Website Forms 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

                        VoiceFiller is a Speech to Text extension that uses the latest Speech Recognition API natively available in modern browsers, that helps you fill the website forms. There are no cloud APIs or 3rd party services for this. You can use it for free, without any ads for unlimited transcriptions.                    

Informações Básicas da Extensão

Nome VoiceFiller Speech To Text for Website Forms VoiceFiller Speech To Text for Website Forms
ID mgafhkmkdcbkjajcblfijmlpiknfhffl
URL Oficial https://chromewebstore.google.com/detail/voicefiller-speech-to-tex/mgafhkmkdcbkjajcblfijmlpiknfhffl
Descrição VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free
Tamanho do Arquivo 115 KB
Contagem de Instalações 1,072
Versão Atual 0.0.0.13
Última Atualização 2021-03-06
Data de Publicação 2020-02-16
Classificação 3.13/5 Total de 8 Avaliações
Desenvolvedor Silviu Stroe
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://silviustroe.com/
URL da Página de Ajuda https://silviustroe.com/contact
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VoiceFiller Speech To Text for Website Forms",
    "short_name": "VoiceFiller",
    "description": "VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free",
    "version": "0.0.0.13",
    "icons": {
        "16": "icons\/favicon16.png",
        "48": "icons\/favicon48.png",
        "128": "icons\/favicon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/favicon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/chrome-extension-async.js"
        ],
        "persistent": false,
        "run_at": "document_idle"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Start speech to text"
        }
    }
}