TalkToGPT

A simple extension that allows the user to talk to ChatGPT. Click the microphone button and begin talking.

Co to jest TalkToGPT?

TalkToGPT to rozszerzenie Chrome opracowane przez mateen.shagagi, a jego główną funkcją jest „A simple extension that allows the user to talk to ChatGPT. Click the microphone button and begin talking.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia TalkToGPT

Pobierz pliki rozszerzeń TalkToGPT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A simple extension that allows the user to talk to ChatGPT. Click the microphone button and begin talking.                    

Podstawowe informacje o rozszerzeniu

Nazwa TalkToGPT TalkToGPT
ID cjddnooodcpepaicdnlclcegceaiooah
Oficjalny URL https://chromewebstore.google.com/detail/talktogpt/cjddnooodcpepaicdnlclcegceaiooah
Opis A simple extension that allows the user to talk to ChatGPT. Click the microphone button and begin talking.
Rozmiar pliku 67.24 KB
Liczba instalacji 55
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-10-10
Data Publikacji 2023-10-09
Deweloper mateen.shagagi
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TalkToGPT",
    "version": "1.0.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/chat.openai.com\/c\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "microphone.png",
        "48": "microphone.png",
        "128": "microphone.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "TalkToGPT"
    },
    "description": "A simple extension that allows the user to talk to ChatGPT. Click the microphone button and begin talking."
}