Whatsapp Translator

Chat with friends all over the world!

Whatsapp Translator là gì?

Whatsapp Translator là một tiện ích mở rộng Chrome được phát triển bởi Gabriel Marques, và tính năng chính của nó là "Chat with friends all over the world!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Whatsapp Translator

Tải xuống các tệp mở rộng Whatsapp Translator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Whatsapp Translator Whatsapp Translator
ID hmddfcpponnobdnmaknmgagemehopmie
URL Chính Thức https://chrome.google.com/webstore/detail/whatsapp-translator/hmddfcpponnobdnmaknmgagemehopmie
Mô tả Chat with friends all over the world!
Kích Thước Tệp 21.56 KB
Số Lần Cài Đặt 222
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-11-18
Ngày Phát Hành 2020-11-18
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Gabriel Marques
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.linkedin.com/in/gabrielchagasmarques
Ngôn Ngữ Được Hỗ Trợ 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
}