Telegram Translator

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

Cos'è Telegram Translator?

Telegram Translator è un'estensione di Chrome sviluppata da Scrupp, e la sua funzione principale è "This extension automatically translate any text that you type by clicking combination Ctrl + Shift.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Telegram Translator

Scarica i file di estensione Telegram Translator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Telegram Translator Telegram Translator
ID pkjgpdkpjnbjmnjdkbpdfdhlgbadhhol
URL Ufficiale https://chromewebstore.google.com/detail/telegram-translator/pkjgpdkpjnbjmnjdkbpdfdhlgbadhhol
Descrizione This extension automatically translate any text that you type by clicking combination Ctrl + Shift.
Dimensione del File 72.02 KB
Conteggio Installazioni 1,549
Versione Corrente 1.0
Ultimo Aggiornamento 2021-12-23
Data di Pubblicazione 2021-12-23
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore Scrupp
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://scrupp.com/policy
Lingue Supportate 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"
        }
    ]
}