Twitch Chat Translation

Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.

Twitch Chat Translation là gì?

Twitch Chat Translation là một tiện ích mở rộng Chrome được phát triển bởi Sei Watson, và tính năng chính của nó là "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.".

Ả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 Twitch Chat Translation

Tải xuống các tệp mở rộng Twitch Chat Translation 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

                        Use DeepL Translate or Google Translate to translate your Twitch chat into the specified language. This extension has the ability to always keep only the chats translated to the specified language instead of the traditional page reload translation method. By subscribing to the paid plans of DeepL Translate and Google Translate, you will be able to access higher APIs than the free plan, which will further improve the performance of this extension.

Break language barriers with this extension!                    

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

Tên Twitch Chat Translation Twitch Chat Translation
ID fhpfpbkkgoancfjpagdbpolpdianmnhm
URL Chính Thức https://chromewebstore.google.com/detail/twitch-chat-translation/fhpfpbkkgoancfjpagdbpolpdianmnhm
Mô tả Translate Twitch Chat to the specified language using DeepL Translate or Google Translate.
Kích Thước Tệp 19.46 KB
Số Lần Cài Đặt 1,400
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-11-16
Ngày Phát Hành 2022-11-15
Đánh Giá 1.22/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Sei Watson
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Chat Translation",
    "description": "Translate Twitch Chat to the specified language using DeepL Translate or Google Translate. ",
    "version": "1.0",
    "icons": {
        "48": "images\/icon-48.png"
    },
    "background": {
        "service_worker": "scripts\/background.js",
        "persisten": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "exclude_matches": [],
            "js": [
                "scripts\/content-script.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "48": "images\/icon-48.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api-free.deepl.com\/*"
    ],
    "options_ui": {
        "page": "config.html",
        "open_in_tab": false
    }
}