Youtube Assistant
Chat with any video on youtube
ما هو Youtube Assistant؟
Youtube Assistant هو إضافة Chrome تم تطويرها بواسطة kitesdev، والميزة الرئيسية لها هي "Chat with any video on youtube".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Assistant
قم بتنزيل ملفات الامتداد Youtube Assistant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Introducing the "YouTube Assistant" Chrome extension, the ultimate tool for getting the most out of any YouTube video. With this advanced AI-powered extension, you'll have access to an unprecedented level of information and insights about the videos you watch. This plugin can literally answer any question about a video. Simply connect your own OpenAI API key and you are ready to use it. Purchase the Source Code from here: https://kitesdev.gumroad.com/l/youtubassistant
معلومات أساسية عن التمديد
الاسم | Youtube Assistant |
ID | hjgdomehmbbnamplldiennbamkiiomge |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-assistant/hjgdomehmbbnamplldiennbamkiiomge |
الوصف | Chat with any video on youtube |
حجم الملف | 73.88 KB |
عدد التثبيتات | 34 |
النسخة الحالية | 0.0.0.1 |
آخر تحديث | 2023-04-27 |
تاريخ النشر | 2023-04-04 |
المطور | kitesdev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://kites.dev/youtube-assistant/ |
عنوان صفحة المساعدة | https://kites.dev/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Assistant", "description": "Chat with any video on youtube", "version": "0.0.0.1", "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" }, "permissions": [ "declarativeContent", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/youtube.com\/*" ], "js": [ "injector.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "he.min.js" ], "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/youtube.com\/*" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } } } |