Voice Control for Video

Control Netflix and YouTube playback through speech commands

Apa itu Voice Control for Video?

Voice Control for Video adalah ekstensi Chrome yang dikembangkan oleh resay2k, dan fitur utamanya adalah "Control Netflix and YouTube playback through speech commands".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Voice Control for Video

Unduh file ekstensi Voice Control for Video dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Voice Control for Video Voice Control for Video
ID chlidlijeeodennooemopellplaflomd
URL Resmi https://chrome.google.com/webstore/detail/voice-control-for-video/chlidlijeeodennooemopellplaflomd
Deskripsi Control Netflix and YouTube playback through speech commands
Ukuran File 45.84 KB
Jumlah Instalasi 211
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2020-02-05
Tanggal Publikasi 2020-02-05
Penilaian 3.75/5 Total 8 Penilaian
Pengembang resay2k
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}