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
公式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
Eメール [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
}