Prompt Dress

A browser extension that helps you store and manage your AI prompts.

What is Prompt Dress?

Prompt Dress is a Chrome extension developed by k8603427, and its main feature is "A browser extension that helps you store and manage your AI prompts.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Prompt Dress Extension CRX File

Download Prompt Dress extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Welcome to a seamless AI interaction journey with 👗 Prompt Dress, the state-of-the-art browser extension designed for AI enthusiasts and professionals. This tool streamlines the management of AI prompts directly within your browser, ensuring a convenient and efficient experience.

Key Features:

    🔒 Local Storage Convenience: 👗 Prompt Dress utilizes your browser's local storage, ensuring your prompts are secure, private, and always ready at hand. This local-only approach guarantees 100% compliance with professional data privacy guidelines.

    🖥️ Intuitive User Interface: Dive into an effortless user experience with our intuitive design. Real-time diagnostics provide instant feedback, making prompt management straightforward and effective.

    ⚙️ Dynamic Prompt Support: With dynamic values in prompts, 👗 Prompt Dress enhances the depth and flexibility of your AI interactions.

    🖱️ Single-Click Prompt Insertion: Insert prompts into ChatGPT with just one click, streamlining your workflow and saving valuable time.

    🔗 Sequence Priming: Enhance AI model specificity with the ability to insert long sequences of prompts, allowing for more detailed and focused interactions.

    🏷️ Organize with Ease: Sort, filter, and tag your prompts for easy organization. Keep your prompts well-arranged and accessible with these handy organizational tools.

    📋 Save Text as Prompts: Easily save any text you find on the internet as a prompt using the right-click context menu. This feature makes collecting and utilizing information for your AI interactions incredibly convenient.

    💸 Cost-Free Accessibility: Experience all these features without any cost. 👗 Prompt Dress is free, requiring no account or subscription, making advanced prompt management accessible to everyone.

   🛡️ Compliance and Security:
   Prompt Dress is crafted with a strong focus on security and compliance. It's 100% network-independent, aligning perfectly with professional guidelines concerning data privacy and security. Your prompts stay private and protected.

👗 Prompt Dress is more than a tool; it's an integral part of your AI interaction toolkit, designed to enrich and streamline your experience. Install 👗 Prompt Dress today and transform how you manage AI prompts!

If you want to learn about prompt engineering in general, you should check out this project's blog: https://blog.prompt-dress.com and it's YouTube channel: https://www.youtube.com/@ThePromptTailor                    

Extension Basic Information

Name Prompt Dress Prompt Dress
ID mpcinhhegdohpapgmiopjlfhemhhfmid
Official URL https://chromewebstore.google.com/detail/prompt-dress/mpcinhhegdohpapgmiopjlfhemhhfmid
Description A browser extension that helps you store and manage your AI prompts.
File Size 2.67 MB
Installation Count 72
Current Version 0.2.0
Last Updated 2023-12-18
Publish Date 2023-08-17
Developer k8603427
Email [email protected]
Payment Type free
Extension Website https://prompt-dress.com
Help Page URL https://prompt-dress.com/support
Privacy Policy Page URL https://prompt-dress.com/privacy-policy
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Prompt Dress",
    "version": "0.2.0",
    "description": "A browser extension that helps you store and manage your AI prompts.",
    "author": "Konstantin Kovar ",
    "icons": {
        "16": ".\/icons\/icon16.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "action": {
        "default_title": "Prompt Dress",
        "default_popup": ".\/src\/popup\/index.html",
        "default_icon": {
            "48": ".\/icons\/icon48.png"
        }
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                ".\/set-interval-async.js",
                ".\/prompt-chat-gpt.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": ".\/src\/options\/index.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}