WTVid Audio Description

Audio Description for native videos.

WTVid Audio Description란 무엇입니까?

WTVid Audio Description은(는) The Adaptive Web에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Audio Description for native videos."입니다.

WTVid Audio Description 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Watch The Video - Chrome plugin adding automatic audio description of native videos.

Features:
- Automatic audio description of videos (tested with YouTube, Vimeo and native HTML video tags),
- Toggle AD with keyboard shortcut (by default, Ctrl/Cmd + Shift + 5)
- Change the Text-to-Speech voice,
- Change the scene detection threshold

This plugin was created for OxfordHack 2017. Find out more here: http://oxfordhack.com

Source code: https://github.com/AdamHirst/OxfordHack

Requires a Microsoft Cognitive Services Vision API key. Find out more here: https://azure.microsoft.com/en-gb/services/cognitive-services/computer-vision/                    

확장 프로그램 기본 정보

이름 WTVid Audio Description WTVid Audio Description
ID iafgdjbfkgbckpbmmfoapggkmdgofjfn
공식 URL https://chrome.google.com/webstore/detail/wtvid-audio-description/iafgdjbfkgbckpbmmfoapggkmdgofjfn
설명 Audio Description for native videos.
파일 크기 226 KB
설치 횟수 34
현재 버전 1.0
최근 업데이트 2017-11-27
출시 날짜 2017-11-27
평점 5.00/5 총 2 개의 평점
개발자 The Adaptive Web
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WTVid Audio Description",
    "description": "Audio Description for native videos.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/scenechangedetect.js",
                "js\/config.js",
                "content\/azure.js",
                "content\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "content\/azure.js",
            "js\/config.js",
            "js\/background.js"
        ]
    },
    "commands": {
        "toggle-ad": {
            "suggested_key": {
                "default": "Ctrl+Shift+5",
                "mac": "Command+Shift+5"
            },
            "description": "Toggle Audio Description on videos",
            "global": true
        }
    },
    "browser_action": {
        "default_popup": "popup\/index.html",
        "default_icon": "popup\/icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "32": "icons\/icon32.png",
        "128": "icons\/icon.png"
    }
}