YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
Co to jest YouTube™ Comment Translate?
YouTube™ Comment Translate to rozszerzenie Chrome opracowane przez toluschr, a jego główną funkcją jest „Automatically translate YouTube comments using the Google-Translate API”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube™ Comment Translate
Pobierz pliki rozszerzeń YouTube™ Comment Translate w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube™ Comment Translate |
ID | alaejlmlpgcffloicejpccebbeeibemo |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
Opis | Automatically translate YouTube comments using the Google-Translate API |
Rozmiar pliku | 35.86 KB |
Liczba instalacji | 36,447 |
Aktualna Wersja | 1.2.4 |
Ostatnia Aktualizacja | 2024-02-02 |
Data Publikacji | 2020-11-26 |
Ocena | 4.41/5 Łącznie 91 Oceny |
Deweloper | toluschr |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/toluschr/Youtube-Comment-Translate |
Adres URL Strony Pomocy | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
Obsługiwane Języki | 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\/*" ] } |