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

VoiceFiller Speech To Text for Website Forms란 무엇입니까?

VoiceFiller Speech To Text for Website Forms은(는) Silviu Stroe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

VoiceFiller Speech To Text for Website Forms 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 VoiceFiller Speech To Text for Website Forms VoiceFiller Speech To Text for Website Forms
ID mgafhkmkdcbkjajcblfijmlpiknfhffl
공식 URL https://chromewebstore.google.com/detail/voicefiller-speech-to-tex/mgafhkmkdcbkjajcblfijmlpiknfhffl
설명 VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free
파일 크기 115 KB
설치 횟수 1,072
현재 버전 0.0.0.13
최근 업데이트 2021-03-06
출시 날짜 2020-02-16
평점 3.13/5 총 8 개의 평점
개발자 Silviu Stroe
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://silviustroe.com/
도움말 페이지 URL https://silviustroe.com/contact
지원되는 언어 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"
        }
    }
}