Subtitle Translator 🌎
Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷
Wat is Subtitle Translator 🌎?
Subtitle Translator 🌎 is een Chrome-extensie ontwikkeld door Eugene Gluhotorenko, en de belangrijkste functie is "Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷".
Extensie Screenshots
Download het CRX-bestand van de extensie Subtitle Translator 🌎
Download Subtitle Translator 🌎-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Subtitle Translator 🌎 |
ID | dleflnkkioeajpjokhniiaieonpacano |
Officiële URL | https://chromewebstore.google.com/detail/subtitle-translator-%F0%9F%8C%8E/dleflnkkioeajpjokhniiaieonpacano |
Beschrijving | Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷 |
Bestandsgrootte | 2.86 MB |
Aantal Installaties | 3,000 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2022-05-20 |
Publicatiedatum | 2020-04-23 |
Beoordeling | 4.33/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Eugene Gluhotorenko |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/gevgeny/SubTranslator |
Help Pagina-URL | https://github.com/gevgeny/SubTranslator/issues |
Ondersteunde Talen | 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" ] } |