AI Prompt Manager
AI Prompt Manager: Store & manage GPT prompts. Sleek UI, easy search & share. Maximize GPT's potential.
AI Prompt Manager란 무엇입니까?
AI Prompt Manager은(는) https://aipromptmanager.com.au에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "AI Prompt Manager: Store & manage GPT prompts. Sleek UI, easy search & share. Maximize GPT's potential."입니다.
확장 프로그램 스크린샷
AI Prompt Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
AI Prompt Manager is a FREE and versatile Chrome app designed to help users store and manage their favorite GPT prompts. With an intuitive and stylish user interface, this app makes organizing your prompts a breeze. Create custom categories to sort your prompts, and use the built-in search feature to quickly find the ones you need. The 'GPT' button enables you to effortlessly use your stored prompts in chat GPT, while the 'Export' feature makes it simple to export / import your favorite prompts with friends and colleagues. Streamline your GPT prompt management with AI Prompt Manager - an essential tool for anyone looking to unlock the full potential of GPT-powered AI.
확장 프로그램 기본 정보
이름 | AI Prompt Manager |
ID | akjcamlhnmpmdlhcehldddddmfmlgipe |
공식 URL | https://chromewebstore.google.com/detail/ai-prompt-manager/akjcamlhnmpmdlhcehldddddmfmlgipe |
설명 | AI Prompt Manager: Store & manage GPT prompts. Sleek UI, easy search & share. Maximize GPT's potential. |
파일 크기 | 736 KB |
설치 횟수 | 119 |
현재 버전 | 1.3 |
최근 업데이트 | 2023-10-16 |
출시 날짜 | 2023-08-20 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | https://aipromptmanager.com.au |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://aipromptmanager.com.au/ |
도움말 페이지 URL | https://aipromptmanager.com.au/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AI Prompt Manager", "description": "AI Prompt Manager: Store & manage GPT prompts. Sleek UI, easy search & share. Maximize GPT's potential.", "version": "1.3", "permissions": [ "storage", "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "externally_connectable": { "matches": [ "https:\/\/aipromptmanager.com.au\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/aipromptmanager.com.au\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "index.html", "default_icon": "icon16.png" } } |