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文件

下载WTVid Audio Description扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}