Hide ChatGPT History

Hide the chat history on ChatGPT.

Hide ChatGPT History क्या है?

Hide ChatGPT History BANSAL द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide the chat history on ChatGPT."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hide ChatGPT History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Hide ChatGPT History Hide ChatGPT History
ID nclfjbhifakabnbohdppoghfdhmlbgak
आधिकारिक URL https://chromewebstore.google.com/detail/hide-chatgpt-history/nclfjbhifakabnbohdppoghfdhmlbgak
विवरण Hide the chat history on ChatGPT.
फ़ाइल का आकार 16.94 KB
स्थापना संख्या 53
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-05-24
प्रकाशन तिथि 2023-05-24
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर BANSAL
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
        }
    }
}