Voice Recognization

VR

Voice Recognization là gì?

Voice Recognization là một tiện ích mở rộng Chrome được phát triển bởi Qodic, và tính năng chính của nó là "VR".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Voice Recognization

Tải xuống các tệp mở rộng Voice Recognization dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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...                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Voice Recognization Voice Recognization
ID jfeaieecejjafmabfiebmnbomogpmhjb
URL Chính Thức https://chromewebstore.google.com/detail/voice-recognization/jfeaieecejjafmabfiebmnbomogpmhjb
Mô tả VR
Kích Thước Tệp 2.75 MB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-12-11
Ngày Phát Hành 2017-09-07
Nhà Phát Triển Qodic
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}