Whatsapp Translator

Chat with friends all over the world!

ما هو Whatsapp Translator؟

Whatsapp Translator هو إضافة Chrome تم تطويرها بواسطة Gabriel Marques، والميزة الرئيسية لها هي "Chat with friends all over the world!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Whatsapp Translator

قم بتنزيل ملفات الامتداد Whatsapp Translator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        With this extension, all messages on WhatsApp Web will be automatically translated to the language of your choice.

- All your conversations will be automatically translated.
- Easily switch between the original message and translated message.
- Listen to the text messages in the original and translated language.                    

معلومات أساسية عن التمديد

الاسم Whatsapp Translator Whatsapp Translator
ID hmddfcpponnobdnmaknmgagemehopmie
عنوان URL الرسمي https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie
الوصف Chat with friends all over the world!
حجم الملف 21.56 KB
عدد التثبيتات 222
النسخة الحالية 0.0.1
آخر تحديث 2020-11-18
تاريخ النشر 2020-11-18
تقييم 3.75/5 مجموع تقييمات 4
المطور Gabriel Marques
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.linkedin.com/in/gabrielchagasmarques
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whatsapp Translator",
    "version": "0.0.1",
    "description": "Chat with friends all over the world!",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "unlimitedStorage",
        "https:\/\/translate.google.com\/*"
    ],
    "icons": {
        "128": "whatsapp.png"
    },
    "incognito": "spanning",
    "background": {
        "scripts": [
            "md5.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}