Voice Control for Video

Control Netflix and YouTube playback through speech commands

Was ist Voice Control for Video?

Voice Control for Video ist eine Chrome-Erweiterung, die von resay2k entwickelt wurde, und ihr Hauptmerkmal ist "Control Netflix and YouTube playback through speech commands".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Voice Control for Video-Erweiterungs-CRX-Datei herunterladen

Laden Sie Voice Control for Video-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Voice Control for Video Voice Control for Video
ID chlidlijeeodennooemopellplaflomd
Offizielle URL https://chrome.google.com/webstore/detail/voice-control-for-video/chlidlijeeodennooemopellplaflomd
Beschreibung Control Netflix and YouTube playback through speech commands
Dateigröße 45.84 KB
Installationsanzahl 211
Aktuelle Version 0.0.1
Letztes Update 2020-02-05
Veröffentlichungsdatum 2020-02-05
Bewertung 3.75/5 Insgesamt 8 Bewertungen
Entwickler resay2k
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}