ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

Cos'è ChatGPT answers for WhatsApp™ web?

ChatGPT answers for WhatsApp™ web è un'estensione di Chrome sviluppata da devdamsy, e la sua funzione principale è "ChatGPT answer-suggestions for WhatsApp™ web".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ChatGPT answers for WhatsApp™ web

Scarica i file di estensione ChatGPT answers for WhatsApp™ web in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Descrizione ChatGPT answer-suggestions for WhatsApp™ web
Dimensione del File 22.01 KB
Conteggio Installazioni 400
Versione Corrente 0.0.5
Ultimo Aggiornamento 2023-07-21
Data di Pubblicazione 2023-04-01
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore devdamsy
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Lingue Supportate 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"
            ]
        }
    ]
}