Youtube Assistant
Chat with any video on youtube
O que é Youtube Assistant?
Youtube Assistant é uma extensão do Chrome desenvolvida por kitesdev, e sua principal característica é "Chat with any video on youtube".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Assistant
Baixe arquivos de extensão Youtube Assistant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Youtube Assistant |
ID | hjgdomehmbbnamplldiennbamkiiomge |
URL Oficial | https://chromewebstore.google.com/detail/youtube-assistant/hjgdomehmbbnamplldiennbamkiiomge |
Descrição | Chat with any video on youtube |
Tamanho do Arquivo | 73.88 KB |
Contagem de Instalações | 34 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2023-04-27 |
Data de Publicação | 2023-04-04 |
Desenvolvedor | kitesdev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://kites.dev/youtube-assistant/ |
URL da Página de Ajuda | https://kites.dev/ |
Idiomas Suportados | 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" } } } |