YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
¿Qué es YouTube™ Comment Translate?
YouTube™ Comment Translate es una extensión de Chrome desarrollada por toluschr, y su función principal es "Automatically translate YouTube comments using the Google-Translate API".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube™ Comment Translate
Descarga archivos de extensión YouTube™ Comment Translate en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | YouTube™ Comment Translate |
ID | alaejlmlpgcffloicejpccebbeeibemo |
URL Oficial | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
Descripción | Automatically translate YouTube comments using the Google-Translate API |
Tamaño del Archivo | 35.86 KB |
Cantidad de Instalaciones | 36,447 |
Versión Actual | 1.2.4 |
Última Actualización | 2024-02-02 |
Fecha de Publicación | 2020-11-26 |
Calificación | 4.41/5 Total de 91 Calificaciones |
Desarrollador | toluschr |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/toluschr/Youtube-Comment-Translate |
URL de la Página de Ayuda | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
Idiomas Soportados | 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\/*" ] } |