Hide ChatGPT History

Hide the chat history on ChatGPT.

ما هو Hide ChatGPT History؟

Hide ChatGPT History هو إضافة Chrome تم تطويرها بواسطة BANSAL، والميزة الرئيسية لها هي "Hide the chat history on ChatGPT.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Hide ChatGPT History

قم بتنزيل ملفات الامتداد Hide ChatGPT History بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
        }
    }
}