Chat GPT voice

Make GPT chat talk and talk to it with voice

什麼是Chat GPT voice?

Chat GPT voice是由lp177開發的Chrome擴展程式,該擴展的主要功能是“Make GPT chat talk and talk to it with voice”。

擴展截圖

screenshot
screenshot

下載Chat GPT voice擴展crx文件

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

擴展使用說明

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

擴展基本資訊

名稱 Chat GPT voice Chat GPT voice
ID pjfkaiaapagfpadblmlhigdepafjdkmb
官方網址 https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb
簡介 Make GPT chat talk and talk to it with voice
檔案大小 19.81 KB
安裝次數 133
目前版本 3.001.1028
更新時間 2023-08-24
上架時間 2023-08-14
評分 5.00/5 共 3 次評分
開發者 lp177
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/lp177/Chat-GPT-voice
說明頁面URL https://github.com/lp177/Chat-GPT-voice/issues
支援的語言 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"
            ]
        }
    ]
}