Audio Descriptions

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

Audio Descriptions là gì?

Audio Descriptions là một tiện ích mở rộng Chrome được phát triển bởi kevinreilly149, và tính năng chính của nó là "Adds support for native text-to-speech audio descriptions for videos.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Audio Descriptions

Tải xuống các tệp mở rộng Audio Descriptions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Audio Descriptions Audio Descriptions
ID lidpojkpfookhkfekmhfphljolackion
URL Chính Thức https://chromewebstore.google.com/detail/audio-descriptions/lidpojkpfookhkfekmhfphljolackion
Mô tả Adds support for native text-to-speech audio descriptions for videos.
Kích Thước Tệp 24.46 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-05-29
Ngày Phát Hành 2022-05-28
Nhà Phát Triển kevinreilly149
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kevinreilly149.github.io/tts-audio-descriptions-extension/
URL Trang Chính Sách Bảo Mật https://kevinreilly149.github.io/tts-audio-descriptions-extension/privacypolicy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}