Whatsapp Translator
Chat with friends all over the world!
What is Whatsapp Translator?
Whatsapp Translator is a Chrome extension developed by Gabriel Marques, and its main feature is "Chat with friends all over the world!".
Extension Screenshots
Download Whatsapp Translator Extension CRX File
Download Whatsapp Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | hmddfcpponnobdnmaknmgagemehopmie |
Official URL | https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie |
Description | Chat with friends all over the world! |
File Size | 21.56 KB |
Installation Count | 222 |
Current Version | 0.0.1 |
Last Updated | 2020-11-18 |
Publish Date | 2020-11-18 |
Rating | 3.75/5 Total 4 Ratings |
Developer | Gabriel Marques |
[email protected] | |
Payment Type | free |
Extension Website | https://www.linkedin.com/in/gabrielchagasmarques |
Supported Languages | 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 } |