Whatsapp Translator

Chat with friends all over the world!

Co je Whatsapp Translator?

Whatsapp Translator je rozšíření Chrome vyvinuté Gabriel Marques, a jeho hlavní funkcí je „Chat with friends all over the world!“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Whatsapp Translator

Stáhněte si soubory rozšíření Whatsapp Translator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Whatsapp Translator Whatsapp Translator
ID hmddfcpponnobdnmaknmgagemehopmie
Oficiální URL https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie
Popis Chat with friends all over the world!
Velikost souboru 21.56 KB
Počet instalací 222
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-11-18
Datum Vydání 2020-11-18
Hodnocení 3.75/5 Celkem 4 Hodnocení
Vývojář Gabriel Marques
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.linkedin.com/in/gabrielchagasmarques
Podporované Jazyky 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
}