Whatsapp Translator

Chat with friends all over the world!

什麼是Whatsapp Translator?

Whatsapp Translator是由Gabriel Marques開發的Chrome擴展程式,該擴展的主要功能是“Chat with friends all over the world!”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Whatsapp Translator Whatsapp Translator
ID hmddfcpponnobdnmaknmgagemehopmie
官方網址 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
}