Chat GPT voice
Make GPT chat talk and talk to it with voice
什么是Chat GPT voice?
Chat GPT voice是由lp177开发的Chrome扩展程序,该扩展的主要功能是“Make GPT chat talk and talk to it with voice”。
扩展截图
下载Chat GPT voice扩展crx文件
下载Chat GPT voice扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
扩展基本信息
名称 | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
官方URL | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
简介 | Make GPT chat talk and talk to it with voice |
文件大小 | 19.81 KB |
安装次数 | 133 |
当前版本 | 3.001.1028 |
更新时间 | 2023-08-24 |
上架时间 | 2023-08-14 |
评分 | 5.00/5 共3次评分 |
开发者 | lp177 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/lp177/Chat-GPT-voice |
帮助页面URL | https://github.com/lp177/Chat-GPT-voice/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chat GPT voice", "version": "3.001.1028", "description": "Make GPT chat talk and talk to it with voice", "options_page": "settings.html", "permissions": [ "storage", "tabs", "tts" ], "action": { "default_popup": "settings.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "service_worker": "sw.js" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "all_frames": false, "run_at": "document_end", "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "integrations\/chat.openai.js" ], "css": [ "integrations\/chat.openai.css" ] } ] } |