YouTube™ Comment Translate
Automatically translate YouTube comments using the Google-Translate API
什么是YouTube™ Comment Translate?
YouTube™ Comment Translate是由toluschr开发的Chrome扩展程序,该扩展的主要功能是“Automatically translate YouTube comments using the Google-Translate API”。
扩展截图
下载YouTube™ Comment Translate扩展crx文件
下载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\/*"
]
} | |