Udemy Double Subtitle
Double Subtitle
Udemy Double Subtitleとは何ですか?
Udemy Double Subtitleはrobertkao5656によって開発されたChromeの拡張機能で、その主な機能は「Double Subtitle」です。
拡張機能のスクリーンショット
Udemy Double Subtitle拡張機能のCRXファイルをダウンロード
Udemy Double Subtitle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Support double subtitles for Udemy: Subtitle Mode: Support off, Single, and Dual Second Language: Supports 12 languages showing dual subtitles, they support Arabic, Chinese Traditional, Chinese Simplified, French, German, Hindi, Italian, Japanese, Korean, Portuguese, Spanish, and Turkmen. If you have any ideas, issues, or suggestions, you can send them to me at [email protected]
拡張機能の基本情報
名前 | Udemy Double Subtitle |
ID | hicpdhddknifpgembdnboojbnpmahfnj |
公式URL | https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj |
説明 | Double Subtitle |
ファイルサイズ | 203 KB |
インストール数 | 106 |
現在のバージョン | 1.1.0 |
最終更新日 | 2023-12-13 |
公開日 | 2023-10-30 |
開発者 | robertkao5656 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Udemy Double Subtitle", "description": "Double Subtitle", "version": "1.1.0", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_title": "Udemy Double Subtitle", "default_icon": "icon.png" }, "permissions": [ "activeTab", "tabs", "storage" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.udemy.com\/*" ], "js": [ "contentScript.js" ], "css": [ "contentScript.css" ], "run_at": "document_end", "all_frames": true } ] } |