YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

What is YouTube™ Comment Translate?

YouTube™ Comment Translate is a Chrome extension developed by toluschr, and its main feature is "Automatically translate YouTube comments using the Google-Translate API".

Extension Screenshots

screenshot
screenshot
screenshot

Download YouTube™ Comment Translate Extension CRX File

Download YouTube™ Comment Translate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
Official URL https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
Description Automatically translate YouTube comments using the Google-Translate API
File Size 35.86 KB
Installation Count 36,447
Current Version 1.2.4
Last Updated 2024-02-02
Publish Date 2020-11-26
Rating 4.41/5 Total 91 Ratings
Developer toluschr
Email [email protected]
Payment Type free
Extension Website https://github.com/toluschr/Youtube-Comment-Translate
Help Page URL https://github.com/toluschr/YouTube-Comment-Translate/issues/new
Supported Languages 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\/*"
    ]
}