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文件
下载chatgpt-keeper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |