Chat GPT voice

Make GPT chat talk and talk to it with voice

Was ist Chat GPT voice?

Chat GPT voice ist eine Chrome-Erweiterung, die von lp177 entwickelt wurde, und ihr Hauptmerkmal ist "Make GPT chat talk and talk to it with voice".

Erweiterungsscreenshots

screenshot
screenshot

Chat GPT voice-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chat GPT voice-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.                    

Grundlegende Informationen zur Erweiterung

Name Chat GPT voice Chat GPT voice
ID pjfkaiaapagfpadblmlhigdepafjdkmb
Offizielle URL https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb
Beschreibung Make GPT chat talk and talk to it with voice
Dateigröße 19.81 KB
Installationsanzahl 133
Aktuelle Version 3.001.1028
Letztes Update 2023-08-24
Veröffentlichungsdatum 2023-08-14
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler lp177
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lp177/Chat-GPT-voice
Hilfeseite URL https://github.com/lp177/Chat-GPT-voice/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}