Hide ChatGPT History
Hide the chat history on ChatGPT.
Hide ChatGPT History란 무엇입니까?
Hide ChatGPT History은(는) BANSAL에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide the chat history on ChatGPT."입니다.
확장 프로그램 스크린샷
Hide ChatGPT History 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } } |