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ファイルをダウンロード

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
Eメール [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"
    }
}