SaveGPT

Save your ChatGPT conversations

Was ist SaveGPT?

SaveGPT ist eine Chrome-Erweiterung, die von Piyush Santwani entwickelt wurde, und ihr Hauptmerkmal ist "Save your ChatGPT conversations".

Erweiterungsscreenshots

screenshot

SaveGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie SaveGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name SaveGPT SaveGPT
ID openekjijmgjlhodnlbofmbmhhcogdli
Offizielle URL https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli
Beschreibung Save your ChatGPT conversations
Dateigröße 40.26 KB
Installationsanzahl 8,398
Aktuelle Version 1.0.30
Letztes Update 2023-04-16
Veröffentlichungsdatum 2022-12-10
Bewertung 2.88/5 Insgesamt 34 Bewertungen
Entwickler Piyush Santwani
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://savegpt.com/
URL der Datenschutzrichtlinien-Seite https://savegpt.com/privacy_policy
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}