Whatsapp Translator
Chat with friends all over the world!
什么是Whatsapp Translator?
Whatsapp Translator是由Gabriel Marques开发的Chrome扩展程序,该扩展的主要功能是“Chat with friends all over the world!”。
扩展截图
下载Whatsapp Translator扩展crx文件
下载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 } |