SayAI

Adds voice recording and spoken answers to ChatGPT UI.

SayAI란 무엇입니까?

SayAI은(는) https://nodetics.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds voice recording and spoken answers to ChatGPT UI."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

SayAI 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        SayAI extends the ChatGPT browser interface by adding speech-to-text (ask questions using your own voice) and text-to-speech (ChatGPT speaks the answer aloud) functionality.

Benefits:
- Ask questions using less time - no need to type
- You can listen to the answer which removes the need to look at the screen

Features:
- Voice recording supports several languages enabled by the OpenAI Whisper API
- Text-to-speech utilizes speechSynthesis API and OS voice library
- Export chat log as a file (allows printing the whole chat session as well)
- Both voice recording and text-to-speech can be turned on/off in the UI
- You can ask the question using your voice but let ChatGPT just write the answer instead of speaking it aloud
- Free!                    

확장 프로그램 기본 정보

이름 SayAI SayAI
ID emchggmopcefohdhejkbekjpekbcfppf
공식 URL https://chromewebstore.google.com/detail/sayai/emchggmopcefohdhejkbekjpekbcfppf
설명 Adds voice recording and spoken answers to ChatGPT UI.
파일 크기 45.25 KB
설치 횟수 117
현재 버전 1.0.11
최근 업데이트 2024-01-27
출시 날짜 2023-04-16
개발자 https://nodetics.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://nodetics.com/nodetics-cws-privacy-policy.txt
지원되는 언어 id,de,en,en-GB,en-US,fr,nl,no,vi,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,hi,bn,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SayAI",
    "version": "1.0.11",
    "default_locale": "en",
    "author": "Nodetics",
    "description": "Adds voice recording and spoken answers to ChatGPT UI.",
    "permissions": [
        "cookies"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "https:\/\/api.openai.com\/*",
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "js\/main.js",
                "js\/recorder.js",
                "js\/texttospeech.js",
                "js\/chatgptresponsegrabber.js"
            ],
            "css": [
                "css\/custom.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "96": "images\/voicechatgpt-icon-96.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.svg",
                "js\/listener.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}