Talking ChatGPT

Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.

什麼是Talking ChatGPT?

Talking ChatGPT是由Tobias Scharl開發的Chrome擴展程式,該擴展的主要功能是“Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.”。

擴展截圖

screenshot
screenshot
screenshot

下載Talking ChatGPT擴展crx文件

下載Talking ChatGPT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension is ideal for anyone who needs to quickly and efficiently convert spoken words into written text.

With the 62 different language and dialect options, you can easily choose your preferred language and accent for transcription. Whether you're speaking in English, Spanish, French, German, or any other language, ChatGPT Speech-to-Text will accurately transcribe your words with the appropriate dialect.

With the new speech to text functionality, you can now have a talking ChatGPT! The extension will now read out the responses off ChatGPT, at least if you want to.


This project is also available on Github: https://github.com/0xBitBuster/talking-chatgpt-extension                    

擴展基本資訊

名稱 Talking ChatGPT Talking ChatGPT
ID dppbeenbobngogcdfnocicajiegcofmo
官方網址 https://chromewebstore.google.com/detail/talking-chatgpt/dppbeenbobngogcdfnocicajiegcofmo
簡介 Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.
檔案大小 20.67 KB
安裝次數 354
目前版本 2.3
更新時間 2024-03-06
上架時間 2023-04-03
評分 5.00/5 共 2 次評分
開發者 Tobias Scharl
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.3",
    "manifest_version": 3,
    "name": "Talking ChatGPT",
    "description": "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/chatgpt-stt.js"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}