YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
Hvad er YouTube™ Comment Translate?
YouTube™ Comment Translate er en Chrome-udvidelse udviklet af toluschr, og dens hovedfunktion er "Automatically translate YouTube comments using the Google-Translate API".
Udvidelsesskærmbilleder
Download YouTube™ Comment Translate-udvidelses-CRX-fil
Download YouTube™ Comment Translate-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | YouTube™ Comment Translate |
ID | alaejlmlpgcffloicejpccebbeeibemo |
Officiel URL | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
Beskrivelse | Automatically translate YouTube comments using the Google-Translate API |
Filstørrelse | 35.86 KB |
Antal Installationer | 36,447 |
Nuværende Version | 1.2.4 |
Senest Opdateret | 2024-02-02 |
Udgivelsesdato | 2020-11-26 |
Bedømmelse | 4.41/5 Samlet 91 Bedømmelser |
Udvikler | toluschr |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/toluschr/Youtube-Comment-Translate |
Hjælpeside-URL | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
Understøttede Sprog | 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\/*" ] } |