ChatGPT Copy as Markdown
This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…
Что такое ChatGPT Copy as Markdown?
ChatGPT Copy as Markdown - это расширение Chrome, разработанное mild7caloriemategreentea, и его основная функция - "This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…".
Снимки экрана расширения
Скачать файл CRX расширения ChatGPT Copy as Markdown
Скачайте файлы расширений ChatGPT Copy as Markdown в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut keys (Alt+Shift+A) to copy the contents of the conversation in the tab you are viewing
Основная информация о расширении
Название | ChatGPT Copy as Markdown |
ID | abnaignolljmbhljfenjgedomihcdkmn |
Официальный URL | https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn |
Описание | This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut… |
Размер файла | 87.61 KB |
Количество установок | 95 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2023-04-25 |
Дата публикации | 2023-03-20 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | mild7caloriemategreentea |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Copy as Markdown", "version": "0.0.3", "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "action": [], "content_scripts": [ { "js": [ "assets\/content-script-loader.content-script.ts.e5f55049.68e713a0.js" ], "matches": [ "https:\/\/chat.openai.com\/c\/*" ] } ], "icons": { "16": "image\/16x16.png", "48": "image\/48x48.png", "128": "image\/128x128.png" }, "commands": { "chatgpt-copy-as-markdown": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Copy Conversation with ChatGPT as markdown" } }, "permissions": [ "activeTab", "clipboardWrite" ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "assets\/logger.33b921cf.js", "assets\/content-script.ts.e5f55049.js" ], "use_dynamic_url": true } ] } |