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 |
Eメール | [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" } } } |