Subtitle Translator 🌎
Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷
Subtitle Translator 🌎 là gì?
Subtitle Translator 🌎 là một tiện ích mở rộng Chrome được phát triển bởi Eugene Gluhotorenko, và tính năng chính của nó là "Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷".
Ả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 Subtitle Translator 🌎
Tải xuống các tệp mở rộng Subtitle Translator 🌎 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
Just hover mouse pointer over a subtitles and get fast translation. • You can select source and target languages in the options dialog. • If you don't want to read simple common words in subtitles you can hide them in the options dialog (Useful for language learners). Platforms supported: • Netflix • YouTube • Kinopub
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Subtitle Translator 🌎 |
ID | dleflnkkioeajpjokhniiaieonpacano |
URL Chính Thức | https://chromewebstore.google.com/detail/subtitle-translator-%F0%9F%8C%8E/dleflnkkioeajpjokhniiaieonpacano |
Mô tả | Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷 |
Kích Thước Tệp | 2.86 MB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2022-05-20 |
Ngày Phát Hành | 2020-04-23 |
Đánh Giá | 4.33/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Eugene Gluhotorenko |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/gevgeny/SubTranslator |
URL Trang Trợ Giúp | https://github.com/gevgeny/SubTranslator/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Subtitle Translator \ud83c\udf0e", "version": "0.3.0", "description": "Translate subtitles on Netflix, YouTube, kinopub \ud83c\uddec\ud83c\udde7\ud83c\uddf7\ud83c\uddfa\ud83c\uddea\ud83c\uddf8\ud83c\udde9\ud83c\uddea\ud83c\uddeb\ud83c\uddf7", "manifest_version": 2, "background": { "scripts": [ "src\/backgroundScript.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_popup": "src\/preferencePopup\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "1024": "icons\/icon1024.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*", "*:\/\/*.kino.pub\/*", "*:\/\/*.youtube.com\/*" ], "js": [ "src\/contentScript.js" ] } ], "web_accessible_resources": [ "src\/index.js", "src\/index.css" ], "permissions": [ "https:\/\/www.netflix.com\/*", "https:\/\/kino.pub\/*", "https:\/\/www.youtube.com\/*", "declarativeContent", "storage" ] } |