Auto WhatsApp Translator

Translate incoming and outgoing WhatsApp messages to different languages in real time.

Auto WhatsApp Translatorคืออะไร?

Auto WhatsApp Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fundevelopment77 และคุณลักษณะหลักของมันคือ "Translate incoming and outgoing WhatsApp messages to different languages in real time."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto WhatsApp Translator

ดาวน์โหลดไฟล์ส่วนขยาย Auto WhatsApp Translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tired of switching between Google Translate and WhatsApp pages for translating your messages? This extension does it for you automatically without consuming a single extra click, making your life easier for communicating with friends or customers.

This extension translates automatically outgoing and incoming messages on WhatsApp Web, allowing you to communicate with anyone in over 110 different languages.


--- How to use ---
Receiving messages:
1. You don't have to do anything! The translation will show in green color under the original message

Sending messages:
1. Type your message in the input field
2. Press Enter and your message will be translated automatically
3. Press again Enter key to send the message


--- About ---
- It's 100% free
- Only works on https://web.whatsapp.com/ 
- Using Google Translate page as translation provider
- 110 Languages supported


--- Data and Privacy ---
This app doesn't store any of your data or personal information


--- Disclaimer ---
* We are not affiliated, associated, authorized, endorsed by or in any way officially connected to WhatsApp, Facebook, Google or Google Translate
* This is an unofficial enhancement tool for WhatsApp Web.


Thanks for using this extension, please share with your friends and enjoy the automatic translations.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto WhatsApp Translator Auto WhatsApp Translator
ID mojhglbfmhgcocfelnnfgngefdpibfhl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-whatsapp-translator/mojhglbfmhgcocfelnnfgngefdpibfhl
คำอธิบาย Translate incoming and outgoing WhatsApp messages to different languages in real time.
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 7,000
เวอร์ชันปัจจุบัน 1.0.7
อัปเดตครั้งล่าสุด 2021-05-20
วันที่เผยแพร่ 2020-11-29
คะแนน 2.18/5 รวมทั้งหมด 49 คะแนน
ผู้พัฒนา fundevelopment77
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Auto WhatsApp Translator",
    "version": "1.0.7",
    "description": "Translate incoming and outgoing WhatsApp messages to different languages in real time.",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icons\/icon48.png",
        "default_popup": "html\/popup.html"
    },
    "author": "Fun Development",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/*.whatsapp.com\/*"
            ]
        },
        {
            "css": [
                "css\/translator.css"
            ],
            "js": [
                "js\/translator.js"
            ],
            "matches": [
                "https:\/\/*.translate.google.com\/*"
            ]
        }
    ],
    "omnibox": {
        "keyword": "WhatsApp translator"
    },
    "options_page": "html\/options.html",
    "permissions": [
        "storage",
        "https:\/\/*.whatsapp.com\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "js\/page.js",
        "js\/content.js",
        "css\/content.css",
        "js\/translator.js",
        "css\/translator.css"
    ]
}