AI Voice
Empower AI with voice capabilities
AI Voice란 무엇입니까?
AI Voice은(는) Kunal J.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Empower AI with voice capabilities"입니다.
확장 프로그램 스크린샷
AI Voice 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- Get real-time audio responses from multiple voices. - Control the voice, voice speed and pitch for a personalized experience. - Interact with your GPT using your voice. - Enjoy a light-weight interface for seamless usage. - Compatible with Google Bard - Designed to work with multiple text-generative AI models.
확장 프로그램 기본 정보
이름 | AI Voice |
ID | cmjcclkobjffgdeefejdpjhoglokamcm |
공식 URL | https://chromewebstore.google.com/detail/ai-voice/cmjcclkobjffgdeefejdpjhoglokamcm |
설명 | Empower AI with voice capabilities |
파일 크기 | 1.19 MB |
설치 횟수 | 343 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2023-06-11 |
출시 날짜 | 2023-05-08 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Kunal J. |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AI Voice", "author": "[email protected]", "version": "1.1.1", "description": "Empower AI with voice capabilities", "permissions": [ "storage", "contextMenus" ], "host_permissions": [ "https:\/\/chat.openai.com\/*", "https:\/\/bard.google.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.openai.com\/*", "https:\/\/bard.google.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" }, { "css": [ "contentScript.css" ], "matches": [ "https:\/\/*.openai.com\/*", "https:\/\/bard.google.com\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [] } ], "action": { "default_icon": { "16": "assets\/icon_.png", "24": "assets\/icon_.png", "32": "assets\/icon_.png" }, "default_title": "AI Voice", "default_popup": "popup.html" }, "icons": { "16": "assets\/icon_.png", "32": "assets\/icon_.png", "48": "assets\/icon_.png", "128": "assets\/icon_.png" }, "manifest_version": 3 } |