Hide ChatGPT History

Hide the chat history on ChatGPT.

什麼是Hide ChatGPT History?

Hide ChatGPT History是由BANSAL開發的Chrome擴展程式,該擴展的主要功能是“Hide the chat history on ChatGPT.”。

擴展截圖

screenshot

下載Hide ChatGPT History擴展crx文件

下載Hide ChatGPT History擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
        }
    }
}