ChatGPT Speechifier

This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations

Co to jest ChatGPT Speechifier?

ChatGPT Speechifier to rozszerzenie Chrome opracowane przez Obinna Iloeje, a jego główną funkcją jest „This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT Speechifier

Pobierz pliki rozszerzeń ChatGPT Speechifier 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

                        This browser extension helps speak ChatGPT text responses out loud with different languages and different tonations.

*Features
- Change language and gender of speech voice
- Increase or decrease the rate or speed of the speech
- Increase or decrease the pitch of the speech voice                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Speechifier ChatGPT Speechifier
ID jglaljacmohblhebclbfeeegdekoenae
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-speechifier/jglaljacmohblhebclbfeeegdekoenae
Opis This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations
Rozmiar pliku 372 KB
Liczba instalacji 27
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-06-06
Data Publikacji 2023-05-14
Ocena 4.75/5 Łącznie 4 Oceny
Deweloper Obinna Iloeje
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Speechifier",
    "version": "1.0.0",
    "description": "This browser extension helps speak ChatGPT text responses out loud in different languages and different tonations",
    "manifest_version": 3,
    "permissions": [
        "tts",
        "activeTab",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "disabledPopup.html",
        "default_icon": "disabledIcon.png"
    },
    "icons": {
        "48": "icon-2.PNG",
        "128": "logo.PNG"
    }
}