Whatsapp Translator

Chat with friends all over the world!

Was ist Whatsapp Translator?

Whatsapp Translator ist eine Chrome-Erweiterung, die von Gabriel Marques entwickelt wurde, und ihr Hauptmerkmal ist "Chat with friends all over the world!".

Erweiterungsscreenshots

screenshot
screenshot

Whatsapp Translator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Whatsapp Translator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Whatsapp Translator Whatsapp Translator
ID hmddfcpponnobdnmaknmgagemehopmie
Offizielle URL https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie
Beschreibung Chat with friends all over the world!
Dateigröße 21.56 KB
Installationsanzahl 222
Aktuelle Version 0.0.1
Letztes Update 2020-11-18
Veröffentlichungsdatum 2020-11-18
Bewertung 3.75/5 Insgesamt 4 Bewertungen
Entwickler Gabriel Marques
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.linkedin.com/in/gabrielchagasmarques
Unterstützte Sprachen 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
}