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

Cos'è VoiceFiller Speech To Text for Website Forms?

VoiceFiller Speech To Text for Website Forms è un'estensione di Chrome sviluppata da Silviu Stroe, e la sua funzione principale è "VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione VoiceFiller Speech To Text for Website Forms

Scarica i file di estensione VoiceFiller Speech To Text for Website Forms 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

                        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.                    

Informazioni di Base sull'Estensione

Nome VoiceFiller Speech To Text for Website Forms VoiceFiller Speech To Text for Website Forms
ID mgafhkmkdcbkjajcblfijmlpiknfhffl
URL Ufficiale https://chromewebstore.google.com/detail/voicefiller-speech-to-tex/mgafhkmkdcbkjajcblfijmlpiknfhffl
Descrizione VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free
Dimensione del File 115 KB
Conteggio Installazioni 1,072
Versione Corrente 0.0.0.13
Ultimo Aggiornamento 2021-03-06
Data di Pubblicazione 2020-02-16
Valutazione 3.13/5 Totale 8 Valutazioni
Sviluppatore Silviu Stroe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://silviustroe.com/
URL della Pagina di Aiuto https://silviustroe.com/contact
Lingue Supportate 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"
        }
    }
}