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 هو إضافة Chrome تم تطويرها بواسطة zjdevelops، والميزة الرئيسية لها هي "Adds a speech to text microphone into the ChatGPT website.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Speech to Text for ChatGPT

قم بتنزيل ملفات الامتداد Speech to Text for ChatGPT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        🚀 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
عنوان صفحة سياسة الخصوصية 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\/*"
            ]
        }
    ]
}