SaveGPT

Save your ChatGPT conversations

Wat is SaveGPT?

SaveGPT is een Chrome-extensie ontwikkeld door Piyush Santwani, en de belangrijkste functie is "Save your ChatGPT conversations".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SaveGPT

Download SaveGPT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam SaveGPT SaveGPT
ID openekjijmgjlhodnlbofmbmhhcogdli
Officiële URL https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli
Beschrijving Save your ChatGPT conversations
Bestandsgrootte 40.26 KB
Aantal Installaties 8,398
Huidige Versie 1.0.30
Laatst Bijgewerkt 2023-04-16
Publicatiedatum 2022-12-10
Beoordeling 2.88/5 Totaal 34 Beoordelingen
Ontwikkelaar Piyush Santwani
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://savegpt.com/
URL van de Privacybeleid Pagina https://savegpt.com/privacy_policy
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}