Whatsapp Translator
Chat with friends all over the world!
Hvad er Whatsapp Translator?
Whatsapp Translator er en Chrome-udvidelse udviklet af Gabriel Marques, og dens hovedfunktion er "Chat with friends all over the world!".
Udvidelsesskærmbilleder
Download Whatsapp Translator-udvidelses-CRX-fil
Download Whatsapp Translator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | hmddfcpponnobdnmaknmgagemehopmie |
Officiel URL | https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie |
Beskrivelse | Chat with friends all over the world! |
Filstørrelse | 21.56 KB |
Antal Installationer | 222 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2020-11-18 |
Udgivelsesdato | 2020-11-18 |
Bedømmelse | 3.75/5 Samlet 4 Bedømmelser |
Udvikler | Gabriel Marques |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.linkedin.com/in/gabrielchagasmarques |
Understøttede Sprog | 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 } |