chatgpt-keeper

Chrome extension to save ChatGPT conversations as markdown

Qu'est-ce que chatgpt-keeper ?

chatgpt-keeper est une extension Chrome développée par wjrmffldrhrl, et sa fonction principale est "Chrome extension to save ChatGPT conversations as markdown".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension chatgpt-keeper

Téléchargez les fichiers d'extension chatgpt-keeper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom chatgpt-keeper chatgpt-keeper
ID mgbiokepgpjnpadhbcggcnnlnpkajhdl
URL Officiel https://chrome.google.com/webstore/detail/chatgpt-keeper/mgbiokepgpjnpadhbcggcnnlnpkajhdl
Description Chrome extension to save ChatGPT conversations as markdown
Taille du Fichier 110 KB
Nombre d'Installations 132
Version Actuelle 1.1.2
Dernière Mise à Jour 2023-03-25
Date de Publication 2023-01-30
Évaluation 3.75/5 Total 4 Évaluations
Développeur wjrmffldrhrl
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/wjrmffldrhrl/chatgpt-keeper
URL de la Page d'Aide https://github.com/wjrmffldrhrl/chatgpt-keeper
Langues Prises en Charge 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"
            ]
        }
    ]
}