Speak U : 字幕読み上げツール

Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です

Qu'est-ce que Speak U : 字幕読み上げツール ?

Speak U : 字幕読み上げツール est une extension Chrome développée par h2r5, et sa fonction principale est "Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Speak U : 字幕読み上げツール

Téléchargez les fichiers d'extension Speak U : 字幕読み上げツール au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Web Speech API の SpeechSynthesis (音声合成) を用いて、
ビデオコンテンツの字幕を自動で読み上げます。

推奨ブラウザは Microsoft Edge です。
(自然な日本語音声「Nanami」「Keita」が使用できるため。)

◆ 特長 ◆

ポップアップ画面から設定の変更ができます。
・読み上げ機能のオンオフ
・読み上げ音量の調整
・読み上げ速度の調整
・声の種類の変更


◆ お願い ◆

字幕は日本語を対象としています。
他の言語については対応しておりません。ご了承ください。

不具合が見つかりましたらユーザーサポートよりお知らせください。
また本ツールへのご意見・ご感想は、レビューなどでお気軽にコメントください。


◆ 更新情報 ◆

2024.02.23 --- ver 1.3 ---
 どの環境下でも読み上げなくなっていた問題を修正(Windows、macOS)
 ※ChromeOSでは動作未検証です

2022.03.19 --- ver 1.2 ---
 読み上げのタイミングで音量や速度の設定が反映されるように修正

2022.03.19 --- ver 1.1 ---
 動画切り替わり時に読み上げなくなる問題を修正

2022.03.17 --- ver 1.0 ---
 拡張機能を公開                    

Informations de Base sur l'Extension

Nom Speak U : 字幕読み上げツール Speak U : 字幕読み上げツール
ID nabpbhldnibjnmimbneabgdjdgobopoj
URL Officiel https://chromewebstore.google.com/detail/speak-u-%E5%AD%97%E5%B9%95%E8%AA%AD%E3%81%BF%E4%B8%8A%E3%81%92%E3%83%84%E3%83%BC%E3%83%AB/nabpbhldnibjnmimbneabgdjdgobopoj
Description Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です
Taille du Fichier 41.68 KB
Nombre d'Installations 123
Version Actuelle 1.3
Dernière Mise à Jour 2024-02-24
Date de Publication 2022-03-16
Évaluation 5.00/5 Total 1 Évaluations
Développeur h2r5
Email [email protected]
Type de Paiement free
Langues Prises en Charge ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak U : \u5b57\u5e55\u8aad\u307f\u4e0a\u3052\u30c4\u30fc\u30eb",
    "description": "Udemy\u30d3\u30c7\u30aa\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u5b57\u5e55\u3092\u5408\u6210\u97f3\u58f0\u3067\u8aad\u307f\u4e0a\u3052\u308b\u62e1\u5f35\u6a5f\u80fd\u3067\u3059",
    "version": "1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/img16.png",
            "32": "images\/img32.png",
            "48": "images\/img48.png",
            "128": "images\/img128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/course\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/img16.png",
        "32": "images\/img32.png",
        "48": "images\/img48.png",
        "128": "images\/img128.png"
    }
}