HTML5 Audio Description (via screenreader)

This extension plays audio description track elements of HTML5 videos via a screenreader.

HTML5 Audio Description (via screenreader)란 무엇입니까?

HTML5 Audio Description (via screenreader)은(는) Google Accessibility에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension plays audio description track elements of HTML5 videos via a screenreader."입니다.

확장 프로그램 스크린샷

screenshot

HTML5 Audio Description (via screenreader) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

Use this extension if you want your screenreader to render audio descriptions. For the extension that plays via Chrome text to speech, https://chrome.google.com/webstore/a/google.com/detail/jafenodgdcelmajjnbcchlfjomlkaifp

Currently supported screenreaders:
- ChromeVox
- Mac OS X VoiceOver is not fully supported

Languages supported:
- depends on language support of your screenreader

Keyboard shorcuts:
For keyboard shortcuts, press alt + ? while on a webpage.

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                    

확장 프로그램 기본 정보

이름 HTML5 Audio Description (via screenreader) HTML5 Audio Description (via screenreader)
ID mipjggdmdaagfmpnomakdcgchdcgfbdg
공식 URL https://chromewebstore.google.com/detail/html5-audio-description-v/mipjggdmdaagfmpnomakdcgchdcgfbdg
설명 This extension plays audio description track elements of HTML5 videos via a screenreader.
파일 크기 38.15 KB
설치 횟수 2,143
현재 버전 1.0.3
최근 업데이트 2012-08-10
출시 날짜 2012-08-10
평점 2.36/5 총 14 개의 평점
개발자 Google Accessibility
결제 유형 free
확장 프로그램 웹 사이트 http://code.google.com/p/google-axs-chrome/
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML5 Audio Description (via screenreader)",
    "version": "1.0.3",
    "description": "This extension plays audio description track elements of HTML5 videos via a screenreader.",
    "permissions": [
        "",
        "tts"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "minimum_chrome_version": "19",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "closure\/closure_preinit.js",
                "closure\/base.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
}