SaveGPT

Save your ChatGPT conversations

什么是SaveGPT?

SaveGPT是由Piyush Santwani开发的Chrome扩展程序,该扩展的主要功能是“Save your ChatGPT conversations”。

扩展截图

screenshot

下载SaveGPT扩展crx文件

下载SaveGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        It's a browser extension that auto-saves your ChatGPT conversations and adds a "Chat History" button within the ChatGPT website. This is an indepedent project and is not affiliated with OpenAI or ChatGPT.
Website -  - https://savegpt.com/                    

扩展基本信息

名称 SaveGPT SaveGPT
ID openekjijmgjlhodnlbofmbmhhcogdli
官方URL https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli
简介 Save your ChatGPT conversations
文件大小 40.26 KB
安装次数 8,398
当前版本 1.0.30
更新时间 2023-04-16
上架时间 2022-12-10
评分 2.88/5 共34次评分
开发者 Piyush Santwani
电子邮箱 [email protected]
付费类型 free
扩展官网 https://savegpt.com/
隐私政策页面URL https://savegpt.com/privacy_policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SaveGPT",
    "description": "Save your ChatGPT conversations",
    "icons": {
        "128": "icons\/history.png",
        "16": "icons\/history.png",
        "32": "icons\/history.png",
        "48": "icons\/history.png"
    },
    "manifest_version": 3,
    "version": "1.0.30",
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "permissions": [
        "storage",
        "webRequest",
        "activeTab",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "tooltip.js",
                "utils.js",
                "index.js"
            ],
            "css": [
                "index.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "utils.js",
                "twitter.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*",
                "download.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}