Telegram Translator

This extension automatically translate any text that you type by clicking combination Ctrl + Shift.

Что такое Telegram Translator?

Telegram Translator - это расширение Chrome, разработанное Scrupp, и его основная функция - "This extension automatically translate any text that you type by clicking combination Ctrl + Shift.".

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

screenshot

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

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

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

                        Application for automatic text translation in Telegram. Enter a message in your native language and use the Ctrl + Shift key combination to quickly translate the entered text.

You can practice the language you are learning by translating only words you don’t know.                    

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

Название Telegram Translator Telegram Translator
ID pkjgpdkpjnbjmnjdkbpdfdhlgbadhhol
Официальный URL https://chromewebstore.google.com/detail/telegram-translator/pkjgpdkpjnbjmnjdkbpdfdhlgbadhhol
Описание This extension automatically translate any text that you type by clicking combination Ctrl + Shift.
Размер файла 72.02 KB
Количество установок 1,549
Текущая Версия 1.0
Последнее Обновление 2021-12-23
Дата публикации 2021-12-23
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Scrupp
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://scrupp.com/policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Telegram Translator",
    "description": "This extension automatically translate any text that you type by clicking combination Ctrl + Shift.",
    "version": "1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_popup": "templates\/menu.html"
    },
    "permissions": [
        "storage",
        "https:\/\/web.telegram.org\/*"
    ],
    "web_accessible_resources": [
        "templates\/pop-up.html"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/libs\/jquery-3.2.1.min.js",
                "js\/main.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "*:\/\/web.telegram.org\/*"
            ],
            "run_at": "document_end"
        }
    ]
}