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

Co to jest VoiceFiller Speech To Text for Website Forms?

VoiceFiller Speech To Text for Website Forms to rozszerzenie Chrome opracowane przez Silviu Stroe, a jego główną funkcją jest „VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia VoiceFiller Speech To Text for Website Forms

Pobierz pliki rozszerzeń VoiceFiller Speech To Text for Website Forms w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa VoiceFiller Speech To Text for Website Forms VoiceFiller Speech To Text for Website Forms
ID mgafhkmkdcbkjajcblfijmlpiknfhffl
Oficjalny URL https://chromewebstore.google.com/detail/voicefiller-speech-to-tex/mgafhkmkdcbkjajcblfijmlpiknfhffl
Opis VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free
Rozmiar pliku 115 KB
Liczba instalacji 1,072
Aktualna Wersja 0.0.0.13
Ostatnia Aktualizacja 2021-03-06
Data Publikacji 2020-02-16
Ocena 3.13/5 Łącznie 8 Oceny
Deweloper Silviu Stroe
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://silviustroe.com/
Adres URL Strony Pomocy https://silviustroe.com/contact
Obsługiwane Języki 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"
        }
    }
}