YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

Was ist YouTube™ Comment Translate?

YouTube™ Comment Translate ist eine Chrome-Erweiterung, die von toluschr entwickelt wurde, und ihr Hauptmerkmal ist "Automatically translate YouTube comments using the Google-Translate API".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube™ Comment Translate-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube™ Comment Translate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
Offizielle URL https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
Beschreibung Automatically translate YouTube comments using the Google-Translate API
Dateigröße 35.86 KB
Installationsanzahl 36,447
Aktuelle Version 1.2.4
Letztes Update 2024-02-02
Veröffentlichungsdatum 2020-11-26
Bewertung 4.41/5 Insgesamt 91 Bewertungen
Entwickler toluschr
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/toluschr/Youtube-Comment-Translate
Hilfeseite URL https://github.com/toluschr/YouTube-Comment-Translate/issues/new
Unterstützte Sprachen 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\/*"
    ]
}