Youtube Translater
Translate youtube comments to a preferred language
Youtube Translaterคืออะไร?
Youtube Translater เป็นส่วนขยายของ Chrome ที่พัฒนาโดย theimmortalwarrior071 และคุณลักษณะหลักของมันคือ "Translate youtube comments to a preferred language"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Translater
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Translater |
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\/*" ] } ] } |