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 } |