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은(는) https://chatopenai.pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "All-in-one ChatGPT conversation export plugin, copy or export ChatGPT web page content, support multiple formats"입니다.
확장 프로그램 스크린샷
ExportGPT: Export ChatGPT Conversation 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
📙 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": [] } ] } |