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.”。
扩展截图
下载SayAI扩展crx文件
下载SayAI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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\/*" ] } ] } |