YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

Apa itu YouTube™ Comment Translate?

YouTube™ Comment Translate adalah ekstensi Chrome yang dikembangkan oleh toluschr, dan fitur utamanya adalah "Automatically translate YouTube comments using the Google-Translate API".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi YouTube™ Comment Translate

Unduh file ekstensi YouTube™ Comment Translate dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
URL Resmi https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
Deskripsi Automatically translate YouTube comments using the Google-Translate API
Ukuran File 35.86 KB
Jumlah Instalasi 36,447
Versi Saat Ini 1.2.4
Terakhir Diperbarui 2024-02-02
Tanggal Publikasi 2020-11-26
Penilaian 4.41/5 Total 91 Penilaian
Pengembang toluschr
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/toluschr/Youtube-Comment-Translate
URL Halaman Bantuan https://github.com/toluschr/YouTube-Comment-Translate/issues/new
Bahasa yang Didukung 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\/*"
    ]
}