Auto-save ChatGPT History
A Google extension that automatically saves ChatGPT chat history locally and supports export
Auto-save ChatGPT History란 무엇입니까?
Auto-save ChatGPT History은(는) https://chatopenai.pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Google extension that automatically saves ChatGPT chat history locally and supports export"입니다.
확장 프로그램 스크린샷
Auto-save ChatGPT History 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
⚒️ Tips for use 1. Open the ChatGPT page and chat with ChatGPT https://chat.openai.com 2. Click the icon in the upper right corner of the page to open the `ChatGPT History` dialog 3. Switch or delete any chat history in the left navigation 4. The `Restore` button at the bottom supports jumping to the conversation history chat interface 5. The `Markdown` button at the bottom supports exporting the current conversation record to markdown format 6. At the bottom of the left navigation, you can clear all records with one click (use with caution!) 🙋 Feedback - Any questions or BUG submissions, please contact: https://chatopenai.pro/ - Details about Auto-save ChatGPT History: https://chatopenai.pro/auto-save-chatgpt-history/ - All-in-one ChatGPT conversation export plugin - ExportGPT: https://chatopenai.pro/exportgpt - Just need to export ChatGPT to Markdown? Try: https://chatopenai.pro/chatgpt-to-markdown/
확장 프로그램 기본 정보
이름 | Auto-save ChatGPT History |
ID | flgapcfldlacnlocnjlocofheicmonme |
공식 URL | https://chromewebstore.google.com/detail/auto-save-chatgpt-history/flgapcfldlacnlocnjlocofheicmonme |
설명 | A Google extension that automatically saves ChatGPT chat history locally and supports export |
파일 크기 | 137 KB |
설치 횟수 | 381 |
현재 버전 | 1.11 |
최근 업데이트 | 2023-06-20 |
출시 날짜 | 2023-03-11 |
평점 | 2.67/5 총 3 개의 평점 |
개발자 | https://chatopenai.pro |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://chatopenai.pro/ |
도움말 페이지 URL | https://chatopenai.pro/auto-save-chatgpt-history/ |
개인정보 보호 정책 페이지 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": "A Google extension that automatically saves ChatGPT chat history locally and supports export", "version": "1.11", "manifest_version": 3, "name": "Auto-save ChatGPT History", "author": "openHacking", "homepage_url": "http:\/\/chatopenai.pro\/", "options_page": "options.html", "permissions": [ "storage", "unlimitedStorage" ], "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": [] } ] } |