ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

Что такое ChatGPT Screentshot?

ChatGPT Screentshot - это расширение Chrome, разработанное landicefu, и его основная функция - "Add a button to download full screenshot of ChatGPT conversation".

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

screenshot
screenshot

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

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

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

                        Add two buttons to Chat GPT sidebar. One for downloading the whole conversation as a JPEG file. The other button allows you to download each prompt and answer as different JPEG files. With this plugin installed, you can easily share the conversations on social media or through messaging services more easy than ever.

========== v0.3 Release Notes ==========
- Fix the image shifting problem                    

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

Название ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
Официальный URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
Описание Add a button to download full screenshot of ChatGPT conversation
Размер файла 56.9 KB
Количество установок 145
Текущая Версия 0.3
Последнее Обновление 2022-12-14
Дата публикации 2022-12-11
Рейтинг 3.50/5 Всего 2 оценок
Разработчик landicefu
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screentshot",
    "action": [],
    "manifest_version": 3,
    "author": "Landice Fu ",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Add a button to download full screenshot of ChatGPT conversation",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "content-script.js",
                "html2canvas.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "download_button.svg"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}