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