ExportGPT: Export ChatGPT Conversation
All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats
ExportGPT: Export ChatGPT Conversationคืออะไร?
ExportGPT: Export ChatGPT Conversation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chatopenai.pro และคุณลักษณะหลักของมันคือ "All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ExportGPT: Export ChatGPT Conversation
ดาวน์โหลดไฟล์ส่วนขยาย ExportGPT: Export ChatGPT Conversation ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
📙 Feature Quickly copy or export ChatGPT conversations, one-click download and save chat history. 📋 Supported formats Export ChatGPT to Markdown, Screenshot, PDF, HTML, Excel, etc. Go to the home page to see all supported formats https://chatopenai.pro/exportgpt/ How to upgrade to ExportGPT Pro https://chatopenai.pro/exportgpt-pro/ ⚙️ Supported features - Preview, modify, copy, download target format files - Customize the export button that needs to be displayed - Export settings: file name insert chat update time - Support exporting ChatGPT shared links - Support image content - Support custom export dialogue content, select all, inverse select, only select the answer ⚒️ Tips for use 1. Open ChatGPT, chat with ChatGPT https://chat.openai.com 2. The ExportGPT plugin will place a column of sidebar buttons on the right side of the page, click the format you want to export 3. In the pop-up panel, you can preview, modify, copy or download the content to be exported 🔗 Links - Export any web content to Markdown format: https://chatopenai.pro/web2markdown/ 🙋 Feedback Any questions or BUG submissions, please leave a message at https://chatopenai.pro/exportgpt/ or contact [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ExportGPT: Export ChatGPT Conversation |
ID | jamcijfplmgbngnppdhmbbogjebgfimn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/exportgpt-export-chatgpt/jamcijfplmgbngnppdhmbbogjebgfimn |
คำอธิบาย | All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats |
ขนาดไฟล์ | 518 KB |
จำนวนการติดตั้ง | 1,490 |
เวอร์ชันปัจจุบัน | 1.28 |
อัปเดตครั้งล่าสุด | 2024-02-27 |
วันที่เผยแพร่ | 2023-03-24 |
คะแนน | 3.87/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | https://chatopenai.pro |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
เว็บไซต์ส่วนขยาย | https://chatopenai.pro/ |
URL หน้าช่วยเหลือ | https://chatopenai.pro/exportgpt/ |
URL หน้านโยบายความเป็นส่วนตัว | https://sites.google.com/view/copy-csdn-privacy-policy/home |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats", "version": "1.28", "manifest_version": 3, "name": "ExportGPT: Export ChatGPT Conversation", "author": "openHacking", "homepage_url": "http:\/\/chatopenai.pro\/", "options_page": "options.html", "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*", "identity", "webNavigation", "webRequest", "activeTab" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';", "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';" }, "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "48.png" }, "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "128.png", "48.png", "16.png" ], "matches": [] } ] } |