Whatsapp Translator
Chat with friends all over the world!
Vad är Whatsapp Translator?
Whatsapp Translator är en Chrome-tillägg utvecklad av Gabriel Marques, och dess huvudfunktion är "Chat with friends all over the world!".
Tilläggsskärmbilder
Ladda ner Whatsapp Translator-förlängningens CRX-fil
Ladda ner Whatsapp Translator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | hmddfcpponnobdnmaknmgagemehopmie |
Officiell webbadress | https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie |
Beskrivning | Chat with friends all over the world! |
Filstorlek | 21.56 KB |
Antal Installationer | 222 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2020-11-18 |
Publiceringsdatum | 2020-11-18 |
Betyg | 3.75/5 Totalt 4 Betyg |
Utvecklare | Gabriel Marques |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.linkedin.com/in/gabrielchagasmarques |
Stödda Språk | 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 } |