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
官方網址 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\/*"
            ]
        }
    ]
}