Audio Descriptions

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

Τι είναι το Audio Descriptions;

Το Audio Descriptions είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kevinreilly149, και η κύρια λειτουργία του είναι "Adds support for native text-to-speech audio descriptions for videos.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Audio Descriptions

Λήψη αρχείων επέκτασης Audio Descriptions σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}