Hide ChatGPT History
Hide the chat history on ChatGPT.
Cos'è Hide ChatGPT History?
Hide ChatGPT History è un'estensione di Chrome sviluppata da BANSAL, e la sua funzione principale è "Hide the chat history on ChatGPT.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide ChatGPT History
Scarica i file di estensione Hide ChatGPT History in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Hide ChatGPT History |
ID | nclfjbhifakabnbohdppoghfdhmlbgak |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-chatgpt-history/nclfjbhifakabnbohdppoghfdhmlbgak |
Descrizione | Hide the chat history on ChatGPT. |
Dimensione del File | 16.94 KB |
Conteggio Installazioni | 53 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-05-24 |
Data di Pubblicazione | 2023-05-24 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | BANSAL |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } } |