Whatsapp Translator

Chat with friends all over the world!

Wat is Whatsapp Translator?

Whatsapp Translator is een Chrome-extensie ontwikkeld door Gabriel Marques, en de belangrijkste functie is "Chat with friends all over the world!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Whatsapp Translator

Download Whatsapp Translator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Whatsapp Translator Whatsapp Translator
ID hmddfcpponnobdnmaknmgagemehopmie
Officiële URL https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie
Beschrijving Chat with friends all over the world!
Bestandsgrootte 21.56 KB
Aantal Installaties 222
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-11-18
Publicatiedatum 2020-11-18
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar Gabriel Marques
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.linkedin.com/in/gabrielchagasmarques
Ondersteunde Talen 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
}