Audio Descriptions

Adds support for native text-to-speech audio descriptions for videos.

Audio Descriptions क्या है?

Audio Descriptions kevinreilly149 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds support for native text-to-speech audio descriptions for videos."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

crx प्रारूप में Audio Descriptions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension adds support for audio descriptions in videos that use the track element. A drop down menu field is appended after compatible videos for users to enable audio description tracks.

When a audio description track is enabled and a video is playing, when a cue is reached, the video is paused, the audio description text is read aloud via text-to-speech, then the video is played again.

There are settings in the extension's popup for adjusting the text-to-speech rate and pitch.

Many more features in the future.                    

एक्सटेंशन की मूल जानकारी

नाम Audio Descriptions Audio Descriptions
ID lidpojkpfookhkfekmhfphljolackion
आधिकारिक URL https://chromewebstore.google.com/detail/audio-descriptions/lidpojkpfookhkfekmhfphljolackion
विवरण Adds support for native text-to-speech audio descriptions for videos.
फ़ाइल का आकार 24.46 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-05-29
प्रकाशन तिथि 2022-05-28
डेवलपर kevinreilly149
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://kevinreilly149.github.io/tts-audio-descriptions-extension/
गोपनीयता नीति पृष्ठ URL https://kevinreilly149.github.io/tts-audio-descriptions-extension/privacypolicy.html
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Audio Descriptions",
    "description": "Adds support for native text-to-speech audio descriptions for videos.",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    },
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    }
}