Hide ChatGPT History
Hide the chat history on ChatGPT.
O que é Hide ChatGPT History?
Hide ChatGPT History é uma extensão do Chrome desenvolvida por BANSAL, e sua principal característica é "Hide the chat history on ChatGPT.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide ChatGPT History
Baixe arquivos de extensão Hide ChatGPT History no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Hide ChatGPT History |
ID | nclfjbhifakabnbohdppoghfdhmlbgak |
URL Oficial | https://chromewebstore.google.com/detail/hide-chatgpt-history/nclfjbhifakabnbohdppoghfdhmlbgak |
Descrição | Hide the chat history on ChatGPT. |
Tamanho do Arquivo | 16.94 KB |
Contagem de Instalações | 53 |
Versão Atual | 1.0 |
Última Atualização | 2023-05-24 |
Data de Publicação | 2023-05-24 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | BANSAL |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } } } |