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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | YouTube™ Comment Translate |
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 |
عنوان صفحة المساعدة | 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\/*" ] } |