YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

YouTube™ Comment Translate là gì?

YouTube™ Comment Translate là một tiện ích mở rộng Chrome được phát triển bởi toluschr, và tính năng chính của nó là "Automatically translate YouTube comments using the Google-Translate API".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube™ Comment Translate

Tải xuống các tệp mở rộng YouTube™ Comment Translate 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

                        This extension allows the user to translate YouTube comments with the click of a single button, right next to the comment. This is useful, i.e. when listening to music from other countries. The sourcecode is openly available on GitHub.                    

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

Tên YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
URL Chính Thức https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
Mô tả Automatically translate YouTube comments using the Google-Translate API
Kích Thước Tệp 35.86 KB
Số Lần Cài Đặt 36,447
Phiên Bản Hiện Tại 1.2.4
Cập Nhật Lần Cuối 2024-02-02
Ngày Phát Hành 2020-11-26
Đánh Giá 4.41/5 Tổng số 91 Đánh Giá
Nhà Phát Triển toluschr
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/toluschr/Youtube-Comment-Translate
URL Trang Trợ Giúp https://github.com/toluschr/YouTube-Comment-Translate/issues/new
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Comment Translate",
    "version": "1.2.4",
    "description": "Automatically translate YouTube comments using the Google-Translate API",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "manifest_version": 3,
    "content_security_policy": [],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}