Voice Control for Video

Control Netflix and YouTube playback through speech commands

Voice Control for Video là gì?

Voice Control for Video là một tiện ích mở rộng Chrome được phát triển bởi resay2k, và tính năng chính của nó là "Control Netflix and YouTube playback through speech commands".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Voice Control for Video 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

                        Why get your keyboard and mouse dirty while you eat and watch videos?

Click on the start recording button or press CTRL(Command for Mac) + E to start or stop voice control. Use commands like:

"Play Video"
"Pause Video"
"Skip Video"
"Rewind Video"





Built by: Yaser I. Muhammad N. Maanas D. and Aamir Z.                    

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

Tên Voice Control for Video Voice Control for Video
ID chlidlijeeodennooemopellplaflomd
URL Chính Thức https://chrome.google.com/webstore/detail/voice-control-for-video/chlidlijeeodennooemopellplaflomd
Mô tả Control Netflix and YouTube playback through speech commands
Kích Thước Tệp 45.84 KB
Số Lần Cài Đặt 211
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-02-05
Ngày Phát Hành 2020-02-05
Đánh Giá 3.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển resay2k
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 Control for Video",
    "version": "0.0.1",
    "description": "Control Netflix and YouTube playback through speech commands",
    "permissions": [
        "notifications",
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Ctrl + E to start or stop voice control",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/voice16.png",
            "32": "images\/voice32.png",
            "48": "images\/voice48.png",
            "128": "images\/voice128.png"
        }
    },
    "icons": {
        "16": "images\/voice16.png",
        "32": "images\/voice32.png",
        "48": "images\/voice48.png",
        "128": "images\/voice128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "toggle-recognition": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "description": "Start or stop voice recognition"
        }
    },
    "manifest_version": 2
}