Audio Descriptions

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

Vad är Audio Descriptions?

Audio Descriptions är en Chrome-tillägg utvecklad av kevinreilly149, och dess huvudfunktion är "Adds support for native text-to-speech audio descriptions for videos.".

Tilläggsskärmbilder

screenshot

Ladda ner Audio Descriptions-förlängningens CRX-fil

Ladda ner Audio Descriptions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Audio Descriptions Audio Descriptions
ID lidpojkpfookhkfekmhfphljolackion
Officiell webbadress https://chromewebstore.google.com/detail/audio-descriptions/lidpojkpfookhkfekmhfphljolackion
Beskrivning Adds support for native text-to-speech audio descriptions for videos.
Filstorlek 24.46 KB
Antal Installationer 23
Aktuell Version 1.0
Senast Uppdaterad 2022-05-29
Publiceringsdatum 2022-05-28
Utvecklare kevinreilly149
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://kevinreilly149.github.io/tts-audio-descriptions-extension/
URL till Sekretesspolicy Sidan https://kevinreilly149.github.io/tts-audio-descriptions-extension/privacypolicy.html
Stödda Språk 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"
    }
}