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 |
官方網址 | 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" } } } |