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\/*"
]
} | |