Subtitle Translator 🌎
Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷
What is Subtitle Translator 🌎?
Subtitle Translator 🌎 is a Chrome extension developed by Eugene Gluhotorenko, and its main feature is "Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷".
Extension Screenshots
Download Subtitle Translator 🌎 Extension CRX File
Download Subtitle Translator 🌎 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Subtitle Translator 🌎 |
ID | dleflnkkioeajpjokhniiaieonpacano |
Official URL | https://chromewebstore.google.com/detail/subtitle-translator-%F0%9F%8C%8E/dleflnkkioeajpjokhniiaieonpacano |
Description | Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷 |
File Size | 2.86 MB |
Installation Count | 3,000 |
Current Version | 0.3.0 |
Last Updated | 2022-05-20 |
Publish Date | 2020-04-23 |
Rating | 4.33/5 Total 9 Ratings |
Developer | Eugene Gluhotorenko |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/gevgeny/SubTranslator |
Help Page URL | https://github.com/gevgeny/SubTranslator/issues |
Supported Languages | 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" ] } |