Voice Control for Video

Control Netflix and YouTube playback through speech commands

Voice Control for Video क्या है?

Voice Control for Video resay2k द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control Netflix and YouTube playback through speech commands"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Voice Control for Video एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}