Speech to Text for ChatGPT

Adds a speech to text microphone into the ChatGPT website.

什么是Speech to Text for ChatGPT?

Speech to Text for ChatGPT是由zjdevelops开发的Chrome扩展程序,该扩展的主要功能是“Adds a speech to text microphone into the ChatGPT website.”。

扩展截图

screenshot
screenshot

下载Speech to Text for ChatGPT扩展crx文件

下载Speech to Text for ChatGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        🚀 Keyboard Shortcuts
Ctrl+S: Turn on/off speech to text
Ctrl+U: Clear the text
Ctrl+W: Delete the last word
Cmd+ ⬇️  ⬆️ : Cycle message history. (Ctrl for Windows)

🚀 Free & Open Source
Join our open-source initiative on GitHub (github.com/zubyj/speech-to-text-for-chatgpt). For issues,  suggestions, or questions, please open a ticket on Github.                    

扩展基本信息

名称 Speech to Text for ChatGPT Speech to Text for ChatGPT
ID kplchkeabimhnpklakhhocnhegidpcel
官方URL https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel
简介 Adds a speech to text microphone into the ChatGPT website.
文件大小 35.62 KB
安装次数 120
当前版本 0.0.4
更新时间 2023-08-07
上架时间 2023-07-12
开发者 zjdevelops
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL http://zubyj.github.io
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Speech to Text for ChatGPT",
    "version": "0.0.4",
    "description": "Adds a speech to text microphone into the ChatGPT website.",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/mic.png",
                "assets\/mic-active.png",
                "assets\/styles.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}