Export GPT - Export your chats with GPTs
An extension to export your chats with pre-trained transformers
Что такое Export GPT - Export your chats with GPTs?
Export GPT - Export your chats with GPTs - это расширение Chrome, разработанное Rizwan, и его основная функция - "An extension to export your chats with pre-trained transformers".
Снимки экрана расширения
Скачать файл CRX расширения Export GPT - Export your chats with GPTs
Скачайте файлы расширений Export GPT - Export your chats with GPTs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An extension to export your conversations with pre-trained transformers into a sharable PDF file. Currently it only supports ChatGPT
Основная информация о расширении
Название | Export GPT - Export your chats with GPTs |
ID | pipfffccmkdbpmnnpcnbecjmbgacnkob |
Официальный URL | https://chromewebstore.google.com/detail/export-gpt-export-your-ch/pipfffccmkdbpmnnpcnbecjmbgacnkob |
Описание | An extension to export your chats with pre-trained transformers |
Размер файла | 268 KB |
Количество установок | 118 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2023-05-10 |
Дата публикации | 2023-05-05 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | Rizwan |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Export GPT - Export your chats with GPTs", "description": "An extension to export your chats with pre-trained transformers", "version": "1.0.2", "manifest_version": 3, "action": [], "icons": { "16": "\/img\/exportgpt-16.png", "32": "\/img\/exportgpt-32.png", "48": "\/img\/exportgpt-48.png", "128": "\/img\/exportgpt-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "script.js" ] } ], "web_accessible_resources": [ { "resources": [ "style.css", "img\/icon-main.png", "img\/loader.png" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |