ChatGPT Chat Extractor

A basic chat text Extractor

Что такое ChatGPT Chat Extractor?

ChatGPT Chat Extractor - это расширение Chrome, разработанное Invictus, и его основная функция - "A basic chat text Extractor".

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

screenshot
screenshot
screenshot

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

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

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

                        When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time.
This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.                    

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

Название ChatGPT Chat Extractor ChatGPT Chat Extractor
ID ppkdabpmgbglpnghdbmnemflamdfgdkj
Официальный URL https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj
Описание A basic chat text Extractor
Размер файла 27.39 KB
Количество установок 31
Текущая Версия 0.0.20
Последнее Обновление 2023-02-07
Дата публикации 2023-02-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Invictus
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://www.buymeacoffee.com/invic1us
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Chat Extractor",
    "description": "A basic chat text Extractor",
    "version": "0.0.20",
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon32.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}