ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

Apa itu ChatGPT answers for WhatsApp™ web?

ChatGPT answers for WhatsApp™ web adalah ekstensi Chrome yang dikembangkan oleh devdamsy, dan fitur utamanya adalah "ChatGPT answer-suggestions for WhatsApp™ web".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ChatGPT answers for WhatsApp™ web

Unduh file ekstensi ChatGPT answers for WhatsApp™ web dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
URL Resmi https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Deskripsi ChatGPT answer-suggestions for WhatsApp™ web
Ukuran File 22.01 KB
Jumlah Instalasi 400
Versi Saat Ini 0.0.5
Terakhir Diperbarui 2023-07-21
Tanggal Publikasi 2023-04-01
Penilaian 4.83/5 Total 6 Penilaian
Pengembang devdamsy
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Bahasa yang Didukung 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"
            ]
        }
    ]
}