Speech to Text for ChatGPT
Adds a speech to text microphone into the ChatGPT website.
Speech to Text for ChatGPT là gì?
Speech to Text for ChatGPT là một tiện ích mở rộng Chrome được phát triển bởi zjdevelops, và tính năng chính của nó là "Adds a speech to text microphone into the ChatGPT website.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Speech to Text for ChatGPT
Tải xuống các tệp mở rộng Speech to Text for ChatGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
🚀 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Speech to Text for ChatGPT |
ID | kplchkeabimhnpklakhhocnhegidpcel |
URL Chính Thức | https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel |
Mô tả | Adds a speech to text microphone into the ChatGPT website. |
Kích Thước Tệp | 35.62 KB |
Số Lần Cài Đặt | 120 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2023-08-07 |
Ngày Phát Hành | 2023-07-12 |
Nhà Phát Triển | zjdevelops |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | http://zubyj.github.io |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |