Prompt Dress

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

Prompt Dressとは何ですか?

Prompt Dressはk8603427によって開発されたChromeの拡張機能で、その主な機能は「A browser extension that helps you store and manage your AI prompts.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Prompt Dress拡張機能のCRXファイルをダウンロード

Prompt Dress拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Prompt Dress Prompt Dress
ID mpcinhhegdohpapgmiopjlfhemhhfmid
公式URL https://chromewebstore.google.com/detail/prompt-dress/mpcinhhegdohpapgmiopjlfhemhhfmid
説明 A browser extension that helps you store and manage your AI prompts.
ファイルサイズ 2.67 MB
インストール数 72
現在のバージョン 0.2.0
最終更新日 2023-12-18
公開日 2023-08-17
開発者 k8603427
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://prompt-dress.com
ヘルプページのURL https://prompt-dress.com/support
プライバシーポリシーページのURL https://prompt-dress.com/privacy-policy
対応言語 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"
    ]
}