Subtitle Translator 🌎

Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷

Что такое Subtitle Translator 🌎?

Subtitle Translator 🌎 - это расширение Chrome, разработанное Eugene Gluhotorenko, и его основная функция - "Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Subtitle Translator 🌎

Скачайте файлы расширений Subtitle Translator 🌎 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Subtitle Translator 🌎 Subtitle Translator 🌎
ID dleflnkkioeajpjokhniiaieonpacano
Официальный URL https://chromewebstore.google.com/detail/subtitle-translator-%F0%9F%8C%8E/dleflnkkioeajpjokhniiaieonpacano
Описание Translate subtitles on Netflix, YouTube, kinopub 🇬🇧🇷🇺🇪🇸🇩🇪🇫🇷
Размер файла 2.86 MB
Количество установок 3,000
Текущая Версия 0.3.0
Последнее Обновление 2022-05-20
Дата публикации 2020-04-23
Рейтинг 4.33/5 Всего 9 оценок
Разработчик Eugene Gluhotorenko
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/gevgeny/SubTranslator
URL страницы помощи https://github.com/gevgeny/SubTranslator/issues
Поддерживаемые языки 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"
    ]
}