ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

Was ist ChatGPT answers for WhatsApp™ web?

ChatGPT answers for WhatsApp™ web ist eine Chrome-Erweiterung, die von devdamsy entwickelt wurde, und ihr Hauptmerkmal ist "ChatGPT answer-suggestions for WhatsApp™ web".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ChatGPT answers for WhatsApp™ web-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT answers for WhatsApp™ web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Beschreibung ChatGPT answer-suggestions for WhatsApp™ web
Dateigröße 22.01 KB
Installationsanzahl 400
Aktuelle Version 0.0.5
Letztes Update 2023-07-21
Veröffentlichungsdatum 2023-04-01
Bewertung 4.83/5 Insgesamt 6 Bewertungen
Entwickler devdamsy
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Unterstützte Sprachen 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"
            ]
        }
    ]
}