Prompt helper
This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts.
Prompt helper là gì?
Prompt helper là một tiện ích mở rộng Chrome được phát triển bởi Sergii, và tính năng chính của nó là "This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Prompt helper
Tải xuống các tệp mở rộng Prompt helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Prompt helper |
ID | hnfmalnohiafmgdgbambfnmkmoflbpmp |
URL Chính Thức | https://chromewebstore.google.com/detail/prompt-helper/hnfmalnohiafmgdgbambfnmkmoflbpmp |
Mô tả | This extension helps enhance your prompts on ChatGPT, CharacterAI, Poe, Claude, and Google Bard, by providing useful shortcuts. |
Kích Thước Tệp | 880 KB |
Số Lần Cài Đặt | 174 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2023-07-19 |
Ngày Phát Hành | 2023-06-01 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Sergii |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://prompt-helper.xyz |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |