Youtube Assistant
Chat with any video on youtube
什么是Youtube Assistant?
Youtube Assistant是由kitesdev开发的Chrome扩展程序,该扩展的主要功能是“Chat with any video on youtube”。
扩展截图
下载Youtube Assistant扩展crx文件
下载Youtube Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } } |