ChatGPT Chat Extractor
A basic chat text Extractor
ChatGPT Chat Extractor là gì?
ChatGPT Chat Extractor là một tiện ích mở rộng Chrome được phát triển bởi Invictus, và tính năng chính của nó là "A basic chat text Extractor".
Ả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 Chat Extractor
Tải xuống các tệp mở rộng ChatGPT Chat Extractor 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
When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time. This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ppkdabpmgbglpnghdbmnemflamdfgdkj |
URL Chính Thức | https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj |
Mô tả | A basic chat text Extractor |
Kích Thước Tệp | 27.39 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 0.0.20 |
Cập Nhật Lần Cuối | 2023-02-07 |
Ngày Phát Hành | 2023-02-06 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Invictus |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://www.buymeacoffee.com/invic1us |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Chat Extractor", "description": "A basic chat text Extractor", "version": "0.0.20", "action": [], "web_accessible_resources": [ { "resources": [ "images\/icon32.png" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "permissions": [ "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/*.openai.com\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/chat.openai.com\/*" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 3 } |