ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

Qu'est-ce que ChatGPT answers for WhatsApp™ web ?

ChatGPT answers for WhatsApp™ web est une extension Chrome développée par devdamsy, et sa fonction principale est "ChatGPT answer-suggestions for WhatsApp™ web".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT answers for WhatsApp™ web

Téléchargez les fichiers d'extension ChatGPT answers for WhatsApp™ web au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
URL Officiel https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Description ChatGPT answer-suggestions for WhatsApp™ web
Taille du Fichier 22.01 KB
Nombre d'Installations 400
Version Actuelle 0.0.5
Dernière Mise à Jour 2023-07-21
Date de Publication 2023-04-01
Évaluation 4.83/5 Total 6 Évaluations
Développeur devdamsy
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Langues Prises en Charge 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"
            ]
        }
    ]
}