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
Eメール [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": [
                ""
            ]
        }
    ]
}