Prompt helper
This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts.
Prompt helper란 무엇입니까?
Prompt helper은(는) Sergii에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts."입니다.
확장 프로그램 스크린샷
Prompt helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension offers three core functionalities: Prompt Insertion: 'Prompt Helper' allows you to instantly insert saved prompts into your chats or compositions on ChatGPT, CharacterAI, Claude, Poe, and Google Bard. By eliminating the need for manual copy-pasting, this feature allows you to communicate with AI more effectively and seamlessly. Prompt Management: Managing your prompt library has never been easier. With 'Prompt Helper', you can view, organize, and manage your saved prompts directly from the extension. This feature provides you with easy access to your prompts and enables you to keep them organized according to your preference. Prompt Saving: Found a new prompt that you'd like to use frequently? With 'Prompt Helper', you can save new prompts on-the-go without interrupting your workflow. Simply save your prompt directly from your current tab, and it will be readily available in your prompt library for future use. By simplifying and optimizing the management and usage of prompts, 'Prompt Helper' can significantly improve your productivity!
확장 프로그램 기본 정보
이름 | Prompt helper |
ID | hnfmalnohiafmgdgbambfnmkmoflbpmp |
공식 URL | https://chromewebstore.google.com/detail/prompt-helper/hnfmalnohiafmgdgbambfnmkmoflbpmp |
설명 | This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts. |
파일 크기 | 880 KB |
설치 횟수 | 174 |
현재 버전 | 1.5 |
최근 업데이트 | 2023-07-19 |
출시 날짜 | 2023-06-01 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | Sergii |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://prompt-helper.xyz |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Prompt helper", "description": "This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts.", "version": "1.5", "permissions": [ "storage", "contextMenus" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "service_worker": "background.js", "type": "module" }, "options_page": "settings.html", "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/bard.google.com\/*", "https:\/\/beta.character.ai\/*", "https:\/\/poe.com\/*", "https:\/\/claude.ai\/*" ], "js": [ "dist\/content.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |