Whatsapp Translator
Chat with friends all over the world!
O que é Whatsapp Translator?
Whatsapp Translator é uma extensão do Chrome desenvolvida por Gabriel Marques, e sua principal característica é "Chat with friends all over the world!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Whatsapp Translator
Baixe arquivos de extensão Whatsapp Translator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | hmddfcpponnobdnmaknmgagemehopmie |
URL Oficial | https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie |
Descrição | Chat with friends all over the world! |
Tamanho do Arquivo | 21.56 KB |
Contagem de Instalações | 222 |
Versão Atual | 0.0.1 |
Última Atualização | 2020-11-18 |
Data de Publicação | 2020-11-18 |
Classificação | 3.75/5 Total de 4 Avaliações |
Desenvolvedor | Gabriel Marques |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.linkedin.com/in/gabrielchagasmarques |
Idiomas Suportados | 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 } |