WTVid Audio Description

Audio Description for native videos.

WTVid Audio Description là gì?

WTVid Audio Description là một tiện ích mở rộng Chrome được phát triển bởi The Adaptive Web, và tính năng chính của nó là "Audio Description for native videos.".

Tải xuống tệp CRX của tiện ích mở rộng WTVid Audio Description

Tải xuống các tệp mở rộng WTVid Audio Description dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WTVid Audio Description WTVid Audio Description
ID iafgdjbfkgbckpbmmfoapggkmdgofjfn
URL Chính Thức https://chrome.google.com/webstore/detail/wtvid-audio-description/iafgdjbfkgbckpbmmfoapggkmdgofjfn
Mô tả Audio Description for native videos.
Kích Thước Tệp 226 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-11-27
Ngày Phát Hành 2017-11-27
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển The Adaptive Web
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}