YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
Что такое YouTube™ Comment Translate?
YouTube™ Comment Translate - это расширение Chrome, разработанное toluschr, и его основная функция - "Automatically translate YouTube comments using the Google-Translate API".
Снимки экрана расширения
Скачать файл CRX расширения YouTube™ Comment Translate
Скачайте файлы расширений YouTube™ Comment Translate в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | alaejlmlpgcffloicejpccebbeeibemo |
| Официальный URL | https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo |
| Описание | Automatically translate YouTube comments using the Google-Translate API |
| Размер файла | 35.86 KB |
| Количество установок | 36,447 |
| Текущая Версия | 1.2.4 |
| Последнее Обновление | 2024-02-02 |
| Дата публикации | 2020-11-26 |
| Рейтинг | 4.41/5 Всего 91 оценок |
| Разработчик | toluschr |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/toluschr/Youtube-Comment-Translate |
| URL страницы помощи | https://github.com/toluschr/YouTube-Comment-Translate/issues/new |
| Поддерживаемые языки | 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\/*"
]
} | |