ShareGPTConvo

Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.

Что такое ShareGPTConvo?

ShareGPTConvo - это расширение Chrome, разработанное xikai, и его основная функция - "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения ShareGPTConvo

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

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

                        *Adapted to the latest version of ChatGPT!
Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style for viewing on mobile and desktop devices.                    

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

Название ShareGPTConvo ShareGPTConvo
ID kpefpnfbhbealfoihgbcieggmbmmlaej
Официальный URL https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej
Описание Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Размер файла 47.39 KB
Количество установок 18
Текущая Версия 1.1.1
Последнее Обновление 2024-01-29
Дата публикации 2023-03-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик xikai
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ShareGPTConvo",
    "version": "1.1.1",
    "description": "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Share GPT Convo",
        "default_popup": "popup.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}