HTML5 Audio Description (via text to speech)

This extension plays audio description track elements of HTML5 videos via Chrome text to speech extension.

HTML5 Audio Description (via text to speech) là gì?

HTML5 Audio Description (via text to speech) là một tiện ích mở rộng Chrome được phát triển bởi Google Accessibility, và tính năng chính của nó là "This extension plays audio description track elements of HTML5 videos via Chrome text to speech extension.".

Ả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 HTML5 Audio Description (via text to speech)

Tải xuống các tệp mở rộng HTML5 Audio Description (via text to speech) 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

                        IMPORTANT: Please activate the “Enable  element” experiment in chrome://flags/
This experiment MUST be enabled for the extension to work.

This extension plays audio description track elements of HTML5 videos via the Chrome text to speech extension. For the extension that plays via screenreader, https://chrome.google.com/webstore/a/google.com/detail/mipjggdmdaagfmpnomakdcgchdcgfbdg

Use this extension if you are not using any screenreaders or are using a screenreader that does not support the other extension, "HTML5 Audio Description (via screen reader)" https://chrome.google.com/webstore/a/google.com/detail/mipjggdmdaagfmpnomakdcgchdcgfbdg. and still want audio descriptions. Also works well as a developer tool. Note: - this extension doesn't use screenreaders to render the audio descriptions, so there may be a possibility of overlap in speech of this extension and speech of the screenreader.

By default, Chrome will speak using your operating system's built-in speech synthesis (available on Windows, Mac OS X, and Chrome OS), or you can install additional text to speech voice extensions from the Chrome Web Store.

Languages supported:
- depends on text to speech voices installed on your system

Keyboard shorcuts:
For keyboard shortcuts, press alt + h while on a webpage or alt + ? while focused on a video; or refer to the options page of the extension.

This is part of the Axs-Chrome open-source project http://code.google.com/p/google-axs-chrome/, which supports extensions that enhance accessibility. You can submit feedback to the Axs-Chrome discussion group: https://groups.google.com/group/axs-chrome-discuss?pli=1                    

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

Tên HTML5 Audio Description (via text to speech) HTML5 Audio Description (via text to speech)
ID jafenodgdcelmajjnbcchlfjomlkaifp
URL Chính Thức https://chromewebstore.google.com/detail/html5-audio-description-v/jafenodgdcelmajjnbcchlfjomlkaifp
Mô tả This extension plays audio description track elements of HTML5 videos via Chrome text to speech extension.
Kích Thước Tệp 23.58 KB
Số Lần Cài Đặt 2,274
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2012-08-10
Ngày Phát Hành 2012-08-10
Đánh Giá 3.65/5 Tổng số 34 Đánh Giá
Nhà Phát Triển Google Accessibility
Loại Thanh Toán free
Trang Web Mở Rộng http://code.google.com/p/google-axs-chrome/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML5 Audio Description (via text to speech)",
    "version": "1",
    "description": "This extension plays audio description track elements of HTML5 videos via Chrome text to speech extension.",
    "permissions": [
        "",
        "tts"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "minimum_chrome_version": "19",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "128": "chrome-a11y-audio-ext-icon-v1.png",
        "48": "chrome-a11y-audio-ext-icon-v1-48.png"
    },
    "manifest_version": 2
}