ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

¿Qué es ChatGPT answers for WhatsApp™ web?

ChatGPT answers for WhatsApp™ web es una extensión de Chrome desarrollada por devdamsy, y su función principal es "ChatGPT answer-suggestions for WhatsApp™ web".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ChatGPT answers for WhatsApp™ web

Descarga archivos de extensión ChatGPT answers for WhatsApp™ web en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
URL Oficial https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Descripción ChatGPT answer-suggestions for WhatsApp™ web
Tamaño del Archivo 22.01 KB
Cantidad de Instalaciones 400
Versión Actual 0.0.5
Última Actualización 2023-07-21
Fecha de Publicación 2023-04-01
Calificación 4.83/5 Total de 6 Calificaciones
Desarrollador devdamsy
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Idiomas Soportados 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"
            ]
        }
    ]
}