ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

ChatGPT answers for WhatsApp™ webとは何ですか?

ChatGPT answers for WhatsApp™ webはdevdamsyによって開発されたChromeの拡張機能で、その主な機能は「ChatGPT answer-suggestions for WhatsApp™ web」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

ChatGPT answers for WhatsApp™ web拡張機能のCRXファイルをダウンロード

ChatGPT answers for WhatsApp™ web拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Send the last 8 chat messages to Chat Gpt and displays the answer-suggestion for you in a field on whatsapp web. You can decide to use it or not.                    

拡張機能の基本情報

名前 ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
公式URL https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
説明 ChatGPT answer-suggestions for WhatsApp™ web
ファイルサイズ 22.01 KB
インストール数 400
現在のバージョン 0.0.5
最終更新日 2023-07-21
公開日 2023-04-01
評価 4.83/5 合計 6 レビュー
開発者 devdamsy
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://damsoft.nl/gptforwhatsapp/privacypolicy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT answers for WhatsApp\u2122 web",
    "version": "0.0.5",
    "description": "ChatGPT answer-suggestions for WhatsApp\u2122 web",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "GPT answers for WhatsApp\u2122 web"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "parser.js",
                "uiStuff.js",
                "confirmDialog.js",
                "contentScript.js"
            ]
        }
    ]
}