Hide ChatGPT History

Hide the chat history on ChatGPT.

Co je Hide ChatGPT History?

Hide ChatGPT History je rozšíření Chrome vyvinuté BANSAL, a jeho hlavní funkcí je „Hide the chat history on ChatGPT.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Hide ChatGPT History

Stáhněte si soubory rozšíření Hide ChatGPT History ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Hide ChatGPT History Hide ChatGPT History
ID nclfjbhifakabnbohdppoghfdhmlbgak
Oficiální URL https://chromewebstore.google.com/detail/hide-chatgpt-history/nclfjbhifakabnbohdppoghfdhmlbgak
Popis Hide the chat history on ChatGPT.
Velikost souboru 16.94 KB
Počet instalací 53
Aktuální Verze 1.0
Poslední Aktualizace 2023-05-24
Datum Vydání 2023-05-24
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář BANSAL
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
        }
    }
}