Prompt Dress

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

Prompt Dressคืออะไร?

Prompt Dress เป็นส่วนขยายของ Chrome ที่พัฒนาโดย k8603427 และคุณลักษณะหลักของมันคือ "A browser extension that helps you store and manage your AI prompts."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prompt Dress

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}