ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

Что такое ChatGPT answers for WhatsApp™ web?

ChatGPT answers for WhatsApp™ web - это расширение Chrome, разработанное devdamsy, и его основная функция - "ChatGPT answer-suggestions for WhatsApp™ web".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения ChatGPT answers for WhatsApp™ web

Скачайте файлы расширений ChatGPT answers for WhatsApp™ web в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название ChatGPT answers for WhatsApp™ web ChatGPT answers for WhatsApp™ web
ID bmbidjjfpkmlddlbkljbphdgpnjnpogk
Официальный URL https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk
Описание ChatGPT answer-suggestions for WhatsApp™ web
Размер файла 22.01 KB
Количество установок 400
Текущая Версия 0.0.5
Последнее Обновление 2023-07-21
Дата публикации 2023-04-01
Рейтинг 4.83/5 Всего 6 оценок
Разработчик devdamsy
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://damsoft.nl/gptforwhatsapp/privacypolicy.html
Поддерживаемые языки 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"
            ]
        }
    ]
}