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是由https://chatopenai.pro开发的Chrome扩展程序,该扩展的主要功能是“A Google extension that automatically saves ChatGPT chat history locally and supports export”。

扩展截图

screenshot
screenshot

下载Auto-save ChatGPT History扩展crx文件

下载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": []
        }
    ]
}