Speak U : 字幕読み上げツール
Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です
Speak U : 字幕読み上げツール란 무엇입니까?
Speak U : 字幕読み上げツール은(는) h2r5에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です"입니다.
확장 프로그램 스크린샷
Speak U : 字幕読み上げツール 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 --- 拡張機能を公開
확장 프로그램 기본 정보
이름 | Speak U : 字幕読み上げツール |
ID | nabpbhldnibjnmimbneabgdjdgobopoj |
공식 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 |
설명 | Udemyビデオコンテンツの字幕を合成音声で読み上げる拡張機能です |
파일 크기 | 41.68 KB |
설치 횟수 | 123 |
현재 버전 | 1.3 |
최근 업데이트 | 2024-02-24 |
출시 날짜 | 2022-03-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | h2r5 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" } } |