PromptFolder - ChatGPT Prompt Manager
Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.
PromptFolder - ChatGPT Prompt Managerคืออะไร?
PromptFolder - ChatGPT Prompt Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://promptfolder.com และคุณลักษณะหลักของมันคือ "Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PromptFolder - ChatGPT Prompt Manager
ดาวน์โหลดไฟล์ส่วนขยาย PromptFolder - ChatGPT Prompt Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Ultimate ChatGPT Prompt Manager! Save, share, and discover prompts for ChatGPT and other AI tools. Say goodbye to manually typing prompts, or digging through spreadsheets to find them. PromptFolder's Chrome extension allows you to type a slash (/) and instantly pull up all of your saved prompts. Continue typing to filter for a specific prompt, and drop it into ChatGPT with a single click. Use PromptFolder to store your prompts, with advanced features including: 🕵🏻♂️ Prompt privacy settings 💬 Comments that are not passed to ChatGPT 👨💻 Variables that clear when prompts are loaded 🗂️ Folders to organize your prompts Other AI prompt managers store your prompts locally, which is asking for trouble 🙅♂️ PromptFolder stores all of your prompts in the cloud so you can access them on any device. In addition to Chat GPT, PromptFolder also supports: ✅ Claude ✅ Google Bard ✅ Bing AI
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PromptFolder - ChatGPT Prompt Manager |
ID | pcollgbgdjbfmjkgkooifpbakhiaedmn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/promptfolder-chatgpt-prom/pcollgbgdjbfmjkgkooifpbakhiaedmn |
คำอธิบาย | Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools. |
ขนาดไฟล์ | 245 KB |
จำนวนการติดตั้ง | 2,653 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2023-09-14 |
วันที่เผยแพร่ | 2023-09-09 |
คะแนน | 4.82/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | https://promptfolder.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
เว็บไซต์ส่วนขยาย | https://promptfolder.com |
URL หน้าช่วยเหลือ | https://promptfolder.com/general/contact |
URL หน้านโยบายความเป็นส่วนตัว | https://promptfolder.com/general/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PromptFolder - ChatGPT Prompt Manager", "version": "1.0.1", "description": "Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/claude.ai\/*", "https:\/\/bard.google.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/*.png" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "host_permissions": [ "https:\/\/promptfolder.com\/api\/*" ] } |