chatGPT screenshot
Take a nice screenshot of the whole chat GPT conversation
Что такое chatGPT screenshot?
chatGPT screenshot - это расширение Chrome, разработанное marc, и его основная функция - "Take a nice screenshot of the whole chat GPT conversation".
Снимки экрана расширения
Скачать файл CRX расширения chatGPT screenshot
Скачайте файлы расширений chatGPT screenshot в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool). This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.
Основная информация о расширении
Название | chatGPT screenshot |
ID | nobfenidifcdghhkifkcnlhmnlfnmhek |
Официальный URL | https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek |
Описание | Take a nice screenshot of the whole chat GPT conversation |
Размер файла | 5.94 KB |
Количество установок | 3,587 |
Текущая Версия | 0.2 |
Последнее Обновление | 2023-04-15 |
Дата публикации | 2022-12-05 |
Рейтинг | 3.44/5 Всего 9 оценок |
Разработчик | marc |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/marcj/chrome-chatgpt-screenshot-extension |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "chatGPT screenshot", "action": [], "manifest_version": 3, "version": "0.2", "description": "Take a nice screenshot of the whole chat GPT conversation", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ] } |