Voice Recognization

VR

Voice Recognization란 무엇입니까?

Voice Recognization은(는) Qodic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "VR"입니다.

확장 프로그램 스크린샷

screenshot

Voice Recognization 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Perform simple actions by just talking to your extension. This extension recognizes some pre-built commands and performs the actions. We have used Google Speech to text API® to convert voice to text.

The extension recognizes the following basic commands:
 - Open a website - for example, just say open facebook and it will open facebook.com

 - Youtube actions - play and pause a video

 - More coming soon...                    

확장 프로그램 기본 정보

이름 Voice Recognization Voice Recognization
ID jfeaieecejjafmabfiebmnbomogpmhjb
공식 URL https://chromewebstore.google.com/detail/voice-recognization/jfeaieecejjafmabfiebmnbomogpmhjb
설명 VR
파일 크기 2.75 MB
설치 횟수 16
현재 버전 1.1
최근 업데이트 2021-12-11
출시 날짜 2017-09-07
개발자 Qodic
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voice Recognization",
    "description": "VR",
    "short_name": "VR",
    "version": "1.1",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/logo_64.png",
        "128": "icons\/logo_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/logo_16.png",
            "32": "icons\/logo_32.png"
        },
        "default_title": "Click Here",
        "default_popup": "popup.html"
    },
    "permissions": [
        "*:\/\/*\/*",
        "https:\/\/*\/",
        "http:\/\/*\/",
        "",
        "https:\/\/ajax.googleapis.com\/*"
    ],
    "web_accessible_resources": [
        "testpage.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "css": [
                "css\/tracker.css"
            ],
            "all_frames": false
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}