Audio Descriptions

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

Audio Descriptions란 무엇입니까?

Audio Descriptions은(는) kevinreilly149에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds support for native text-to-speech audio descriptions for videos."입니다.

확장 프로그램 스크린샷

screenshot

Audio Descriptions 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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