Udemy Double Subtitle
Double Subtitle
Udemy Double Subtitle là gì?
Udemy Double Subtitle là một tiện ích mở rộng Chrome được phát triển bởi robertkao5656, và tính năng chính của nó là "Double Subtitle".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Udemy Double Subtitle
Tải xuống các tệp mở rộng Udemy Double Subtitle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Udemy Double Subtitle |
ID | hicpdhddknifpgembdnboojbnpmahfnj |
URL Chính Thức | https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj |
Mô tả | Double Subtitle |
Kích Thước Tệp | 203 KB |
Số Lần Cài Đặt | 106 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2023-12-13 |
Ngày Phát Hành | 2023-10-30 |
Nhà Phát Triển | robertkao5656 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |