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"
        }
    ]
}