Telegram Translator

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

Co to jest Telegram Translator?

Telegram Translator to rozszerzenie Chrome opracowane przez Scrupp, a jego główną funkcją jest „This extension automatically translate any text that you type by clicking combination Ctrl + Shift.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Telegram Translator

Pobierz pliki rozszerzeń Telegram Translator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Telegram Translator Telegram Translator
ID pkjgpdkpjnbjmnjdkbpdfdhlgbadhhol
Oficjalny URL https://chromewebstore.google.com/detail/telegram-translator/pkjgpdkpjnbjmnjdkbpdfdhlgbadhhol
Opis This extension automatically translate any text that you type by clicking combination Ctrl + Shift.
Rozmiar pliku 72.02 KB
Liczba instalacji 1,549
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-12-23
Data Publikacji 2021-12-23
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper Scrupp
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://scrupp.com/policy
Obsługiwane Języki 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"
        }
    ]
}