ChatGPT Speechifier
This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations
ما هو ChatGPT Speechifier؟
ChatGPT Speechifier هو إضافة Chrome تم تطويرها بواسطة Obinna Iloeje، والميزة الرئيسية لها هي "This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ChatGPT Speechifier
قم بتنزيل ملفات الامتداد ChatGPT Speechifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This browser extension helps speak ChatGPT text responses out loud with different languages and different tonations. *Features - Change language and gender of speech voice - Increase or decrease the rate or speed of the speech - Increase or decrease the pitch of the speech voice
معلومات أساسية عن التمديد
الاسم | ChatGPT Speechifier |
ID | jglaljacmohblhebclbfeeegdekoenae |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/chatgpt-speechifier/jglaljacmohblhebclbfeeegdekoenae |
الوصف | This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations |
حجم الملف | 372 KB |
عدد التثبيتات | 27 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2023-06-06 |
تاريخ النشر | 2023-05-14 |
تقييم | 4.75/5 مجموع تقييمات 4 |
المطور | Obinna Iloeje |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Speechifier", "version": "1.0.0", "description": "This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations", "manifest_version": 3, "permissions": [ "tts", "activeTab", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "disabledPopup.html", "default_icon": "disabledIcon.png" }, "icons": { "48": "icon-2.PNG", "128": "logo.PNG" } } |