Speak U : 字幕読み上げツール
Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です
What is Speak U : 字幕読み上げツール?
Speak U : 字幕読み上げツール is a Chrome extension developed by h2r5, and its main feature is "Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です".
Extension Screenshots
Download Speak U : 字幕読み上げツール Extension CRX File
Download Speak U : 字幕読み上げツール extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 --- 拡張機能を公開
Extension Basic Information
Name | Speak U : 字幕読み上げツール |
ID | nabpbhldnibjnmimbneabgdjdgobopoj |
Official URL | 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ビデオコンテンツの字幕を合成音声で読み上げる拡張機能です |
File Size | 41.68 KB |
Installation Count | 123 |
Current Version | 1.3 |
Last Updated | 2024-02-24 |
Publish Date | 2022-03-16 |
Rating | 5.00/5 Total 1 Ratings |
Developer | h2r5 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |