mai_ | Whisper to ChatGPT and Claude.ai

Voice-enable ChatGPT and Claude.ai in Chrome with OpenAI's Whisper for speech-to-text or use built-in transcription.

ما هو mai_ | Whisper to ChatGPT and Claude.ai؟

mai_ | Whisper to ChatGPT and Claude.ai هو إضافة Chrome تم تطويرها بواسطة https://mai.net.pl، والميزة الرئيسية لها هي "Voice-enable ChatGPT and Claude.ai in Chrome with OpenAI's Whisper for speech-to-text or use built-in transcription.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة mai_ | Whisper to ChatGPT and Claude.ai

قم بتنزيل ملفات الامتداد mai_ | Whisper to ChatGPT and Claude.ai بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This free & open source extension enables voice interaction with ChatGPT and Claude.ai in Chrome browser and other Chromium-based browsers (e.g. Edge). It allows the use of the AI model "Whisper" developed by OpenAI for voice to text transcription. You can also use the transcription method built into the browser (webkitSpeechRecognition). The extension appears and operates upon visiting chat.openai.com or claude.ai

# Program features
- you can talk to the chat by speaking into the microphone and its responses will be read out loud
- you can enable an option that will read your entire chat conversation out loud, or only read the last response aloud
- you can highlight a text fragment in the chat thread and enable a feature to read this fragment out loud
- in the extension configuration, you can set voice parameters, including the language in which you converse with the chat, voice, voice pitch and reading speed, voice transcription method

# STT Voice Transcription (speech-to-text)
The extension offers two methods of voice transcription:
1) webkitSpeechRecognition - the default method using Chrome browser's API. Transcription is performed locally (offline). Note: This method does not add punctuation and is supported only in Chrome browser.

2) Whisper - an AI model developed by OpenAI for speech to text transcription. It offers high-quality transcription with proper punctuation. Requires an OpenAI API key, which involves costs (OpenAI pricing). Transcription is performed on OpenAI servers, which requires sending the audio recording.

# TTS Speech Synthesis (text-to-speech)
The extension utilizes speechSynthesis - an API provided by Chrome browser and other Chromium-based browsers (e.g., Edge, Opera, Brave). This allows for speech synthesis (TTS) in offline mode, without data transmission.
In the settings, you can choose the language and voice used for speech synthesis, as well as adjust other parameters, including voice pitch and reading speed.                    

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

الاسم mai_ | Whisper to ChatGPT and Claude.ai mai_ | Whisper to ChatGPT and Claude.ai
ID eikfokiiajomccicnkljhdkgeaoicmem
عنوان URL الرسمي https://chromewebstore.google.com/detail/mai-whisper-to-chatgpt-an/eikfokiiajomccicnkljhdkgeaoicmem
الوصف Voice-enable ChatGPT and Claude.ai in Chrome with OpenAI's Whisper for speech-to-text or use built-in transcription.
حجم الملف 143 KB
عدد التثبيتات 37
النسخة الحالية 1.0.3
آخر تحديث 2023-11-09
تاريخ النشر 2023-11-07
المطور https://mai.net.pl
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mai-reborn/mai-whisper2ai
عنوان صفحة المساعدة https://github.com/mai-reborn/mai-whisper2ai
اللغات المدعومة de,en,fr,es,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.3",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/claude.ai\/*"
            ],
            "js": [
                "js\/jquery-3.7.1.min.js",
                "js\/MAILogger.js",
                "js\/MAII18nService.js",
                "js\/MAITextToSpeech.js",
                "js\/MAISpeechToText.js",
                "js\/MAIPageAdapterManager.js",
                "js\/MAIPageAdapter.js",
                "js\/MAIChatGPTAdapter.js",
                "js\/MAIClaudeAiAdapter.js",
                "js\/MAISpeechToTextInterface.js",
                "js\/MAIWebkitSpeechToText.js",
                "js\/MAIWhisperSpeechToText.js",
                "js\/MAISpeechToText.js",
                "js\/MAISettings.js",
                "js\/MAIInterface.js",
                "js\/control.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*.css",
                "html\/*.html",
                "translations\/*.json"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}