ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

Co to jest ChatGPT answers for WhatsApp™ web?

ChatGPT answers for WhatsApp™ web to rozszerzenie Chrome opracowane przez devdamsy, a jego główną funkcją jest „ChatGPT answer-suggestions for WhatsApp™ web”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT answers for WhatsApp™ web

Pobierz pliki rozszerzeń ChatGPT answers for WhatsApp™ web w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Opis ChatGPT answer-suggestions for WhatsApp™ web
Rozmiar pliku 22.01 KB
Liczba instalacji 400
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2023-07-21
Data Publikacji 2023-04-01
Ocena 4.83/5 Łącznie 6 Oceny
Deweloper devdamsy
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Obsługiwane Języki 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"
            ]
        }
    ]
}