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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PromptFolder - ChatGPT Prompt Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |