Youtube Translater
Translate youtube comments to a preferred language
什么是Youtube Translater?
Youtube Translater是由theimmortalwarrior071开发的Chrome扩展程序,该扩展的主要功能是“Translate youtube comments to a preferred language”。
扩展截图
下载Youtube Translater扩展crx文件
下载Youtube Translater扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language. 扩展基本信息
| 名称 | |
| ID | hbmhbomgnplnfobcbmlglcpahldkepfg |
| 官方URL | https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg |
| 简介 | Translate youtube comments to a preferred language |
| 文件大小 | 10.45 KB |
| 安装次数 | 24 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2023-07-27 |
| 上架时间 | 2023-07-27 |
| 评分 | 4.60/5 共10次评分 |
| 开发者 | theimmortalwarrior071 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Translater",
"description": "Translate youtube comments to a preferred language",
"version": "0.1.0",
"permissions": [
"storage",
"tabs"
],
"icons": {
"128": "icons\/logo.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/bookmark.png",
"assets\/play.png",
"assets\/delete.png",
"assets\/save.png"
],
"matches": [
"https:\/\/*.youtube.com\/*"
]
}
]
} | |