PromptFolder - ChatGPT Prompt Manager
Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.
什么是PromptFolder - ChatGPT Prompt Manager?
PromptFolder - ChatGPT Prompt Manager是由https://promptfolder.com开发的Chrome扩展程序,该扩展的主要功能是“Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.”。
扩展截图
下载PromptFolder - ChatGPT Prompt Manager扩展crx文件
下载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\/*" ] } |