Youtube Assistant
Chat with any video on youtube
Youtube Assistant란 무엇입니까?
Youtube Assistant은(는) kitesdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chat with any video on youtube"입니다.
확장 프로그램 스크린샷
Youtube Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } |