Youtube Assistant
Chat with any video on youtube
Was ist Youtube Assistant?
Youtube Assistant ist eine Chrome-Erweiterung, die von kitesdev entwickelt wurde, und ihr Hauptmerkmal ist "Chat with any video on youtube".
Erweiterungsscreenshots
Youtube Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Youtube Assistant |
ID | hjgdomehmbbnamplldiennbamkiiomge |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-assistant/hjgdomehmbbnamplldiennbamkiiomge |
Beschreibung | Chat with any video on youtube |
Dateigröße | 73.88 KB |
Installationsanzahl | 34 |
Aktuelle Version | 0.0.0.1 |
Letztes Update | 2023-04-27 |
Veröffentlichungsdatum | 2023-04-04 |
Entwickler | kitesdev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://kites.dev/youtube-assistant/ |
Hilfeseite URL | https://kites.dev/ |
Unterstützte Sprachen | 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" } } } |