Chat GPT voice
Make GPT chat talk and talk to it with voice
Apa itu Chat GPT voice?
Chat GPT voice adalah ekstensi Chrome yang dikembangkan oleh lp177, dan fitur utamanya adalah "Make GPT chat talk and talk to it with voice".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chat GPT voice
Unduh file ekstensi Chat GPT voice dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Informasi Dasar Ekstensi
Nama | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
URL Resmi | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Deskripsi | Make GPT chat talk and talk to it with voice |
Ukuran File | 19.81 KB |
Jumlah Instalasi | 133 |
Versi Saat Ini | 3.001.1028 |
Terakhir Diperbarui | 2023-08-24 |
Tanggal Publikasi | 2023-08-14 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | lp177 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/lp177/Chat-GPT-voice |
URL Halaman Bantuan | https://github.com/lp177/Chat-GPT-voice/issues |
Bahasa yang Didukung | 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" ] } ] } |