Chat GPT voice
Make GPT chat talk and talk to it with voice
ما هو Chat GPT voice؟
Chat GPT voice هو إضافة Chrome تم تطويرها بواسطة lp177، والميزة الرئيسية لها هي "Make GPT chat talk and talk to it with voice".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chat GPT voice
قم بتنزيل ملفات الامتداد Chat GPT voice بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |