chatgpt-keeper

Chrome extension to save ChatGPT conversations as markdown

chatgpt-keeperคืออะไร?

chatgpt-keeper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wjrmffldrhrl และคุณลักษณะหลักของมันคือ "Chrome extension to save ChatGPT conversations as markdown"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย chatgpt-keeper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}