GPT Vokal

Give voice instructions to ChatGPT.

ما هو GPT Vokal؟

GPT Vokal هو إضافة Chrome تم تطويرها بواسطة Nqedile، والميزة الرئيسية لها هي "Give voice instructions to ChatGPT.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة GPT Vokal

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

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

                        This extension allows you to send voice prompts to ChatGPT instead of typing your requests. 

Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.                    

معلومات أساسية عن التمديد

الاسم GPT Vokal GPT Vokal
ID dhjabboeafgfmofgjiegaenmiikcdcpd
عنوان URL الرسمي https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd
الوصف Give voice instructions to ChatGPT.
حجم الملف 43.5 KB
عدد التثبيتات 39
النسخة الحالية 1.0.3
آخر تحديث 2023-07-17
تاريخ النشر 2023-02-05
المطور Nqedile
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Vokal",
    "description": "Give voice instructions to ChatGPT.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon16.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "options_page": ".\/options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}