chatgpt-keeper
Chrome extension to save ChatGPT conversations as markdown
chatgpt-keeper란 무엇입니까?
chatgpt-keeper은(는) wjrmffldrhrl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to save ChatGPT conversations as markdown"입니다.
확장 프로그램 스크린샷
chatgpt-keeper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Our chrome extension, "ChatGPT Markdown Converter" allows users to easily save and organize their conversations with the popular language model, ChatGPT, as markdown files. With this extension, users can keep track of their conversations, making it easier to search and reference important information. The extension works by extracting the text from the ChatGPT output and then saves it in a markdown format with alternating "You" and "ChatGPT" headers for easy readability. The markdown files are then saved to the user's local storage, allowing for easy access and organization. Not only is this extension useful for personal use, but it also has potential for professionals and researchers who may need to keep track of their interactions with the language model. Additionally, the extension is built with vanilla JavaScript, making it lightweight and easy to use. There is no need for additional libraries or dependencies, making the installation process quick and seamless. Overall, our ChatGPT Markdown Converter extension is a practical and convenient tool for anyone who frequently uses the ChatGPT language model. It allows for easy organization and referencing of conversations, making it a valuable addition to any user's toolset. So, users should install it for their convenience and to make their work easy.
확장 프로그램 기본 정보
이름 | |
ID | mgbiokepgpjnpadhbcggcnnlnpkajhdl |
공식 URL | https://chrome.google.com/webstore/detail/chatgpt-keeper/mgbiokepgpjnpadhbcggcnnlnpkajhdl |
설명 | Chrome extension to save ChatGPT conversations as markdown |
파일 크기 | 110 KB |
설치 횟수 | 132 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2023-03-25 |
출시 날짜 | 2023-01-30 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | wjrmffldrhrl |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/wjrmffldrhrl/chatgpt-keeper |
도움말 페이지 URL | https://github.com/wjrmffldrhrl/chatgpt-keeper |
지원되는 언어 | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "chatgpt-keeper", "version": "1.1.2", "description": "Chrome extension to save ChatGPT conversations as markdown", "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat\/*" ], "css": [ "style.css" ], "js": [ "script.js" ] } ] } |