Youtube Translater
Translate youtube comments to a preferred language
Youtube Translater là gì?
Youtube Translater là một tiện ích mở rộng Chrome được phát triển bởi theimmortalwarrior071, và tính năng chính của nó là "Translate youtube comments to a preferred language".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Translater
Tải xuống các tệp mở rộng Youtube Translater dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Translater |
ID | hbmhbomgnplnfobcbmlglcpahldkepfg |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg |
Mô tả | Translate youtube comments to a preferred language |
Kích Thước Tệp | 10.45 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2023-07-27 |
Ngày Phát Hành | 2023-07-27 |
Đánh Giá | 4.60/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | theimmortalwarrior071 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |