YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
Cos'è YouTube™ Comment Translate?
YouTube™ Comment Translate è un'estensione di Chrome sviluppata da toluschr, e la sua funzione principale è "Automatically translate YouTube comments using the Google-Translate API".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube™ Comment Translate
Scarica i file di estensione YouTube™ Comment Translate in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | YouTube™ Comment Translate |
ID | alaejlmlpgcffloicejpccebbeeibemo |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
Descrizione | Automatically translate YouTube comments using the Google-Translate API |
Dimensione del File | 35.86 KB |
Conteggio Installazioni | 36,447 |
Versione Corrente | 1.2.4 |
Ultimo Aggiornamento | 2024-02-02 |
Data di Pubblicazione | 2020-11-26 |
Valutazione | 4.41/5 Totale 91 Valutazioni |
Sviluppatore | toluschr |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/toluschr/Youtube-Comment-Translate |
URL della Pagina di Aiuto | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
Lingue Supportate | 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\/*" ] } |