ASKGPT

Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.

什么是ASKGPT?

ASKGPT是由contact.rahul1991开发的Chrome扩展程序,该扩展的主要功能是“Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.”。

扩展截图

screenshot
screenshot

下载ASKGPT扩展crx文件

下载ASKGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This cutting-edge feature utilizes advanced speech recognition and text-to-speech technologies for a seamless interactions.

Only Supported with OpenAI's GPT-3 tool

Features:
1. Lets you use your microphone to ask questions. Uses speech recognition and text-to-speech technologies
2. Reads response from chatgpt for you
3. You can configure a number voices from the configuration list. Automatically saves the configuration locally and lets you use without reconfiguring every time you use chatgpt
4. You can download code snippets easily.






ChatGpt 4: Work underprogress                    

扩展基本信息

名称 ASKGPT ASKGPT
ID amigdhjjcecdkgfeajdlgpejminlfhok
官方URL https://chromewebstore.google.com/detail/askgpt/amigdhjjcecdkgfeajdlgpejminlfhok
简介 Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.
文件大小 78.95 KB
安装次数 17
当前版本 1.0.4
更新时间 2023-05-17
上架时间 2023-04-16
评分 5.00/5 共1次评分
开发者 contact.rahul1991
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ASKGPT",
    "version": "1.0.4",
    "description": "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ASKGPT",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.png",
                "images\/icon.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}