WTVid Audio Description

Audio Description for native videos.

WTVid Audio Description क्या है?

WTVid Audio Description The Adaptive Web द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Audio Description for native videos."।

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

crx प्रारूप में WTVid Audio Description एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}