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 |
电子邮箱 | [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 } ] } |