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 |
官方網址 | 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" ] } ] } |