Hide ChatGPT History

Hide the chat history on ChatGPT.

Was ist Hide ChatGPT History?

Hide ChatGPT History ist eine Chrome-Erweiterung, die von BANSAL entwickelt wurde, und ihr Hauptmerkmal ist "Hide the chat history on ChatGPT.".

Erweiterungsscreenshots

screenshot

Hide ChatGPT History-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hide ChatGPT History-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

                        Hide ChatGPT History is a handy Chrome extension that allows you to hide the chat history on ChatGPT. With a simple keyboard shortcut, you can toggle the visibility of the chat history, providing a clutter-free and distraction-free experience.  Focus on the present conversation without the visual noise of past messages. Toggle visibility effortlessly with CMD+K (Command+K) or Ctrl+K shortcut.                    

Grundlegende Informationen zur Erweiterung

Name Hide ChatGPT History Hide ChatGPT History
ID nclfjbhifakabnbohdppoghfdhmlbgak
Offizielle URL https://chromewebstore.google.com/detail/hide-chatgpt-history/nclfjbhifakabnbohdppoghfdhmlbgak
Beschreibung Hide the chat history on ChatGPT.
Dateigröße 16.94 KB
Installationsanzahl 53
Aktuelle Version 1.0
Letztes Update 2023-05-24
Veröffentlichungsdatum 2023-05-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler BANSAL
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide ChatGPT History",
    "version": "1.0",
    "description": "Hide the chat history on ChatGPT.",
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "toggle-opacity": {
            "suggested_key": {
                "default": "Ctrl+K"
            },
            "description": "Toggle opacity of chat history",
            "global": true
        }
    }
}