Auto-save ChatGPT History

A Google extension that automatically saves ChatGPT chat history locally and supports export

Auto-save ChatGPT Historyคืออะไร?

Auto-save ChatGPT History เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chatopenai.pro และคุณลักษณะหลักของมันคือ "A Google extension that automatically saves ChatGPT chat history locally and supports export"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto-save ChatGPT History

ดาวน์โหลดไฟล์ส่วนขยาย Auto-save ChatGPT History ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ⚒️ Tips for use
1. Open the ChatGPT page and chat with ChatGPT
https://chat.openai.com
2. Click the icon in the upper right corner of the page to open the `ChatGPT History` dialog
3. Switch or delete any chat history in the left navigation
4. The `Restore` button at the bottom supports jumping to the conversation history chat interface
5. The `Markdown` button at the bottom supports exporting the current conversation record to markdown format
6. At the bottom of the left navigation, you can clear all records with one click (use with caution!)

🙋 Feedback
- Any questions or BUG submissions, please contact: https://chatopenai.pro/
- Details about Auto-save ChatGPT History: https://chatopenai.pro/auto-save-chatgpt-history/
- All-in-one ChatGPT conversation export plugin - ExportGPT: https://chatopenai.pro/exportgpt
- Just need to export ChatGPT to Markdown? Try: https://chatopenai.pro/chatgpt-to-markdown/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto-save ChatGPT History Auto-save ChatGPT History
ID flgapcfldlacnlocnjlocofheicmonme
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-save-chatgpt-history/flgapcfldlacnlocnjlocofheicmonme
คำอธิบาย A Google extension that automatically saves ChatGPT chat history locally and supports export
ขนาดไฟล์ 137 KB
จำนวนการติดตั้ง 381
เวอร์ชันปัจจุบัน 1.11
อัปเดตครั้งล่าสุด 2023-06-20
วันที่เผยแพร่ 2023-03-11
คะแนน 2.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://chatopenai.pro
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://chatopenai.pro/
URL หน้าช่วยเหลือ https://chatopenai.pro/auto-save-chatgpt-history/
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/copy-csdn-privacy-policy/home
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Google extension that automatically saves ChatGPT chat history locally and supports export",
    "version": "1.11",
    "manifest_version": 3,
    "name": "Auto-save ChatGPT History",
    "author": "openHacking",
    "homepage_url": "http:\/\/chatopenai.pro\/",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "48.png"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "128.png",
                "48.png",
                "16.png"
            ],
            "matches": []
        }
    ]
}