Youtube Assistant
Chat with any video on youtube
Youtube Assistant क्या है?
Youtube Assistant kitesdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chat with any video on youtube"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/ |
सहायता पृष्ठ URL | 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" } } } |