Voice Control for Video

Control Netflix and YouTube playback through speech commands

Voice Control for Videoคืออะไร?

Voice Control for Video เป็นส่วนขยายของ Chrome ที่พัฒนาโดย resay2k และคุณลักษณะหลักของมันคือ "Control Netflix and YouTube playback through speech commands"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Voice Control for Video

ดาวน์โหลดไฟล์ส่วนขยาย Voice Control for Video ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Voice Control for Video Voice Control for Video
ID chlidlijeeodennooemopellplaflomd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/voice-control-for-video/chlidlijeeodennooemopellplaflomd
คำอธิบาย Control Netflix and YouTube playback through speech commands
ขนาดไฟล์ 45.84 KB
จำนวนการติดตั้ง 211
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-02-05
วันที่เผยแพร่ 2020-02-05
คะแนน 3.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา resay2k
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}