YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
Wat is YouTube™ Comment Translate?
YouTube™ Comment Translate is een Chrome-extensie ontwikkeld door toluschr, en de belangrijkste functie is "Automatically translate YouTube comments using the Google-Translate API".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube™ Comment Translate
Download YouTube™ Comment Translate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | YouTube™ Comment Translate |
ID | alaejlmlpgcffloicejpccebbeeibemo |
Officiële URL | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
Beschrijving | Automatically translate YouTube comments using the Google-Translate API |
Bestandsgrootte | 35.86 KB |
Aantal Installaties | 36,447 |
Huidige Versie | 1.2.4 |
Laatst Bijgewerkt | 2024-02-02 |
Publicatiedatum | 2020-11-26 |
Beoordeling | 4.41/5 Totaal 91 Beoordelingen |
Ontwikkelaar | toluschr |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/toluschr/Youtube-Comment-Translate |
Help Pagina-URL | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
Ondersteunde Talen | 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\/*" ] } |