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 là gì?
ChatGPT Copy as Markdown là một tiện ích mở rộng Chrome được phát triển bởi mild7caloriemategreentea, và tính năng chính của nó là "This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Copy as Markdown
Tải xuống các tệp mở rộng ChatGPT Copy as Markdown dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ChatGPT Copy as Markdown |
ID | abnaignolljmbhljfenjgedomihcdkmn |
URL Chính Thức | https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn |
Mô tả | This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut… |
Kích Thước Tệp | 87.61 KB |
Số Lần Cài Đặt | 95 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2023-04-25 |
Ngày Phát Hành | 2023-03-20 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | mild7caloriemategreentea |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |