ChatGPT Backup and Save (PDF & Text)
With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.
ChatGPT Backup and Save (PDF & Text)란 무엇입니까?
ChatGPT Backup and Save (PDF & Text)은(는) ECALL TECHNOLOGIES에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them."입니다.
확장 프로그램 스크린샷
ChatGPT Backup and Save (PDF & Text) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Save your ChatGPT conversations effortlessly with our extension! With just one click, you can now easily save your conversations as PDF or text files, allowing you to revisit them anytime, anywhere. Our extension is user-friendly and intuitive, making it easy for you to manage your conversations and keep a record of your interactions with ChatGPT. It's free to use and available for all Chrome users! Changelog: - March 26, 2023 v0.0.3 Fixed a glitch that was creating a duplicate "Save this conversation" link. - March 24, 2023 v0.0.2 Updated store listing page - March 22, 2023 v0.0.1 First released : To be improved -- Developer note: Remember that ChatGPT is still experimental. Changes are applied "live" on a daily basis, which can cause our extension to be outdated without any notice. If our extension doesn't work anymore: 1- Let us know 2- Try again every 2-3 days (aka the time we need to update our code and get it reviewed)
확장 프로그램 기본 정보
이름 | |
ID | mighmhffpjlndhkpdhfaomodnhbnjigd |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-backup-and-save-p/mighmhffpjlndhkpdhfaomodnhbnjigd |
설명 | With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them. |
파일 크기 | 1.96 MB |
설치 횟수 | 232 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2023-05-06 |
출시 날짜 | 2023-03-23 |
평점 | 3.00/5 총 1 개의 평점 |
개발자 | ECALL TECHNOLOGIES |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://cbs.ecall.tech |
도움말 페이지 URL | https://cbs.ecall.tech |
개인정보 보호 정책 페이지 URL | https://cbs.ecall.tech/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.", "version": "0.0.3", "name": "ChatGPT Backup and Save (PDF & Text)", "manifest_version": 3, "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "app.html", "default_icon": "icon-128.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "all_frames": true, "js": [ "jquery-3.5.1.min.js", "jspdf.min.js", "sweetalert2.all.min.js", "FileSaver.min.js", "html2canvas.min.js", "contentScript.bundle.js" ], "run_at": "document_end", "css": [ "content.styles.css", "sweetalert2.min.css" ] } ], "web_accessible_resources": [ { "resources": [ "jquery-3.5.1.min.js", "jspdf.min.js", "sweetalert2.all.min.js", "sweetalert2.min.css", "FileSaver.min.js", "html2canvas.min.js", "content.styles.css", "icon-128.png", "icon-32.png" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "permissions": [] } |