chatgpt-keeper

Chrome extension to save ChatGPT conversations as markdown

chatgpt-keeperとは何ですか?

chatgpt-keeperはwjrmffldrhrlによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to save ChatGPT conversations as markdown」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 chatgpt-keeper chatgpt-keeper
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
Eメール [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"
            ]
        }
    ]
}