speak subtitles extension
Reproductor subtítulos cerrados en videos (Actualmente funcional en PluralSight).
speak subtitles extensionとは何ですか?
speak subtitles extensionはdgzornozaによって開発されたChromeの拡張機能で、その主な機能は「Reproductor subtítulos cerrados en videos (Actualmente funcional en PluralSight).」です。
拡張機能のスクリーンショット
speak subtitles extension拡張機能のCRXファイルをダウンロード
speak subtitles extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extensión de accesibilidad para reproducir subtítulos de un video mediante síntesis de voz, de modo que se pueda realizar una pseudo traducción en tiempo real de un video. Actualmente funciona en videos de las siguientes fuentes: - https://www.pluralsight.com/ Más fuentes serán añadidas en posteriores actualizaciones según sean demandadas.
拡張機能の基本情報
名前 | speak subtitles extension |
ID | aofckpjmpjakbifabhikjheakfjlpame |
公式URL | https://chromewebstore.google.com/detail/speak-subtitles-extension/aofckpjmpjakbifabhikjheakfjlpame |
説明 | Reproductor subtítulos cerrados en videos (Actualmente funcional en PluralSight). |
ファイルサイズ | 272 KB |
インストール数 | 4,000 |
現在のバージョン | 2.0.0 |
最終更新日 | 2022-03-09 |
公開日 | 2018-03-08 |
評価 | 3.78/5 合計 9 レビュー |
開発者 | dgzornoza |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "version": "2.0.0", "default_locale": "en", "description": "__MSG_description__", "icons": { "32": "img\/icon-extension-32.png", "48": "img\/icon-extension-48.png", "128": "img\/icon-extension-128.png", "256": "img\/icon-extension-256.png" }, "action": { "default_icon": { "16": "img\/icon-action-16.png", "24": "img\/icon-action-24.png", "32": "img\/icon-action-32.png", "48": "img\/icon-action-48.png", "128": "img\/icon-action-128.png" }, "default_title": "__MSG_page_action_default_title__", "default_popup": "page-action.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.pluralsight.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "run_at": "document_idle" } ], "minimum_chrome_version": "88", "options_page": "page-options.html", "permissions": [ "storage", "tts", "declarativeContent" ] } |