chatgpt-keeper

Chrome extension to save ChatGPT conversations as markdown

¿Qué es chatgpt-keeper?

chatgpt-keeper es una extensión de Chrome desarrollada por wjrmffldrhrl, y su función principal es "Chrome extension to save ChatGPT conversations as markdown".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión chatgpt-keeper

Descarga archivos de extensión chatgpt-keeper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre chatgpt-keeper chatgpt-keeper
ID mgbiokepgpjnpadhbcggcnnlnpkajhdl
URL Oficial https://chrome.google.com/webstore/detail/chatgpt-keeper/mgbiokepgpjnpadhbcggcnnlnpkajhdl
Descripción Chrome extension to save ChatGPT conversations as markdown
Tamaño del Archivo 110 KB
Cantidad de Instalaciones 132
Versión Actual 1.1.2
Última Actualización 2023-03-25
Fecha de Publicación 2023-01-30
Calificación 3.75/5 Total de 4 Calificaciones
Desarrollador wjrmffldrhrl
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/wjrmffldrhrl/chatgpt-keeper
URL de la Página de Ayuda https://github.com/wjrmffldrhrl/chatgpt-keeper
Idiomas Soportados 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"
            ]
        }
    ]
}