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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}