Prompt Dress

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

Co je Prompt Dress?

Prompt Dress je rozšíření Chrome vyvinuté k8603427, a jeho hlavní funkcí je „A browser extension that helps you store and manage your AI prompts.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Prompt Dress

Stáhněte si soubory rozšíření Prompt Dress ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Prompt Dress Prompt Dress
ID mpcinhhegdohpapgmiopjlfhemhhfmid
Oficiální URL https://chromewebstore.google.com/detail/prompt-dress/mpcinhhegdohpapgmiopjlfhemhhfmid
Popis A browser extension that helps you store and manage your AI prompts.
Velikost souboru 2.67 MB
Počet instalací 72
Aktuální Verze 0.2.0
Poslední Aktualizace 2023-12-18
Datum Vydání 2023-08-17
Vývojář k8603427
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://prompt-dress.com
URL Stránky Nápovědy https://prompt-dress.com/support
URL Stránky Zásad Ochrany Soukromí https://prompt-dress.com/privacy-policy
Podporované Jazyky 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"
    ]
}