ChatGPT - Chat History Search & Filter
Enhance ChatGPT with Chat History Search & Filter.
ChatGPT - Chat History Search & Filter란 무엇입니까?
ChatGPT - Chat History Search & Filter은(는) Chromify AI Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance ChatGPT with Chat History Search & Filter."입니다.
확장 프로그램 스크린샷
ChatGPT - Chat History Search & Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
ChatGPT Chat History Search & Filter is a powerful Chrome extension that empowers you to efficiently search and filter your ChatGPT conversations. Seamlessly find specific messages, topics, or participants with the integrated search field, or apply smart filters to navigate through lengthy chat histories and focus on relevant discussions. The extension intelligently highlights search results, making it simple to identify matches and apply precise filters. Stay organized and boost productivity with our user-friendly Chat History Search & Filter.
확장 프로그램 기본 정보
이름 | ChatGPT - Chat History Search & Filter |
ID | mbepapebfcfanmmjbblbcafpomegjlag |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-chat-history-sear/mbepapebfcfanmmjbblbcafpomegjlag |
설명 | Enhance ChatGPT with Chat History Search & Filter. |
파일 크기 | 55.33 KB |
설치 횟수 | 46 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-09-17 |
출시 날짜 | 2023-08-06 |
개발자 | Chromify AI Labs |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT - Chat History Search & Filter", "version": "1.1", "description": "Enhance ChatGPT with Chat History Search & Filter.", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "jquery-3.4.1.min.js", "content.js" ], "css": [ "css\/chat.openai.com.css" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_title": "ChatGPT Chat Search", "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/chat.openai.com\/*" ], "use_dynamic_url": true } ] }, "icons": { "16": "assets\/favicons\/chatgpt-chat-search-favicon-16x16.png", "48": "assets\/favicons\/chatgpt-chat-search-favicon-48x48.png", "128": "assets\/favicons\/chatgpt-chat-search-favicon-128x128.png" } } |