Audio Descriptions

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

Wat is Audio Descriptions?

Audio Descriptions is een Chrome-extensie ontwikkeld door kevinreilly149, en de belangrijkste functie is "Adds support for native text-to-speech audio descriptions for videos.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Audio Descriptions

Download Audio Descriptions-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Audio Descriptions Audio Descriptions
ID lidpojkpfookhkfekmhfphljolackion
Officiële URL https://chromewebstore.google.com/detail/audio-descriptions/lidpojkpfookhkfekmhfphljolackion
Beschrijving Adds support for native text-to-speech audio descriptions for videos.
Bestandsgrootte 24.46 KB
Aantal Installaties 23
Huidige Versie 1.0
Laatst Bijgewerkt 2022-05-29
Publicatiedatum 2022-05-28
Ontwikkelaar kevinreilly149
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://kevinreilly149.github.io/tts-audio-descriptions-extension/
URL van de Privacybeleid Pagina https://kevinreilly149.github.io/tts-audio-descriptions-extension/privacypolicy.html
Ondersteunde Talen 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"
    }
}