Telegram Translator

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

什麼是Telegram Translator?

Telegram Translator是由Scrupp開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically translate any text that you type by clicking combination Ctrl + Shift.”。

擴展截圖

screenshot

下載Telegram Translator擴展crx文件

下載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
官方網址 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"
        }
    ]
}