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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}