Voice Control for Video

Control Netflix and YouTube playback through speech commands

Voice Control for Video란 무엇입니까?

Voice Control for Video은(는) resay2k에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control Netflix and YouTube playback through speech commands"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Voice Control for Video 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}