Talk to GPT

This extension allows you to talk to ChatGPT using your voice. ChatGPT can also answer in more than a hundred languages!

Talk to GPT क्या है?

Talk to GPT davidckscjki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to talk to ChatGPT using your voice. ChatGPT can also answer in more than a hundred languages!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Talk to GPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Talk to GPT

A chrome extension that lets you use your microfone to talk to ChatGPT on https://chat.openai.com/

It uses your Microfone input to analyze your voice and interpret your spoken words and transcribes it. 

It supports all languages that the chrome browsers Speech Recognition API supports.

You can also choose your language level and whether or not ChatGPT should fix your mistakes.

CHANGELOG:
0.1.3:
- minor bug fixes
- made ChatGPT more reliably talk back

0.1.2:
- performance improvements
- language inference improvements
- persistent speech output settings

0.1.1:
- Bug fixes
- adjustments to recent changes on chat.openai.com

0.1.0:
- Major rewrite of the application
- added Dialogue mode
- removed dedicated correction mode
- removed dedicated autoread mode

0.0.4:
- Added a toggle for auto reading
- bug fixes

0.0.2:
ChatGPT now talks back!                    

एक्सटेंशन की मूल जानकारी

नाम Talk to GPT Talk to GPT
ID bjbcamilomhgkiomhpboegeglealdbkj
आधिकारिक URL https://chromewebstore.google.com/detail/talk-to-gpt/bjbcamilomhgkiomhpboegeglealdbkj
विवरण This extension allows you to talk to ChatGPT using your voice. ChatGPT can also answer in more than a hundred languages!
फ़ाइल का आकार 954 KB
स्थापना संख्या 1,052
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2023-08-03
प्रकाशन तिथि 2023-04-11
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर davidckscjki
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/DavidCks/talk-to-gptv2
सहायता पृष्ठ URL https://github.com/DavidCks/talk-to-gptv2
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.00ac8b83.png",
        "32": "icon32.plasmo.9ad0c5b6.png",
        "48": "icon48.plasmo.cae3a6b3.png",
        "64": "icon64.plasmo.e4b604fc.png",
        "128": "icon128.plasmo.b89b7dfa.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.00ac8b83.png",
            "32": "icon32.plasmo.9ad0c5b6.png",
            "48": "icon48.plasmo.cae3a6b3.png",
            "64": "icon64.plasmo.e4b604fc.png",
            "128": "icon128.plasmo.b89b7dfa.png"
        },
        "default_popup": "popup.html"
    },
    "version": "0.1.3",
    "author": "DavidCks",
    "name": "Talk to GPT",
    "description": "This extension allows you to talk to ChatGPT using your voice. ChatGPT can also answer in more than a hundred languages!",
    "background": {
        "service_worker": "background.5fadff2f.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "plasmo.570665e4.js"
            ],
            "css": []
        }
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "plasmo.60a8124d.css",
                "plasmo.f5fbe0df.css",
                "plasmo.f666f5b8.css",
                "plasmo.2a3bd37c.css"
            ]
        }
    ]
}