Chat Saver

A browser extension that allows you to save the current chat history of ChatGPT to your local device.

Что такое Chat Saver?

Chat Saver - это расширение Chrome, разработанное Taipa Xu, и его основная функция - "A browser extension that allows you to save the current chat history of ChatGPT to your local device.".

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

screenshot
screenshot

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

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

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

                        A browser extension that allows you to save the current chat history of ChatGPT to your local device.                    

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

Название Chat Saver Chat Saver
ID gbccnnpigcfcheaeicpldgmjjojjmldb
Официальный URL https://chromewebstore.google.com/detail/chat-saver/gbccnnpigcfcheaeicpldgmjjojjmldb
Описание A browser extension that allows you to save the current chat history of ChatGPT to your local device.
Размер файла 37.18 KB
Количество установок 47
Текущая Версия 0.2.1
Последнее Обновление 2023-05-08
Дата публикации 2023-03-09
Разработчик Taipa Xu
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/TaipaXu/chat-saver
URL страницы помощи https://github.com/TaipaXu/chat-saver
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat Saver",
    "version": "0.2.1",
    "description": "A browser extension that allows you to save the current chat history of ChatGPT to your local device.",
    "icons": {
        "16": ".\/assets\/icon.png",
        "48": ".\/assets\/icon.png",
        "128": ".\/assets\/icon.png"
    },
    "action": {
        "default_icon": {
            "16": ".\/assets\/icon.png",
            "24": ".\/assets\/icon.png",
            "32": ".\/assets\/icon.png"
        },
        "default_title": "chat saver",
        "default_popup": "popup.html"
    },
    "background": {
        "type": "module",
        "service_worker": "service.js"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/"
    ]
}