Whatsapp Translator
Chat with friends all over the world!
Whatsapp Translatorคืออะไร?
Whatsapp Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gabriel Marques และคุณลักษณะหลักของมันคือ "Chat with friends all over the world!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Whatsapp Translator
ดาวน์โหลดไฟล์ส่วนขยาย Whatsapp Translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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 } |