PromptDrive

Save, share and organize prompts to streamline workflow for ChatGPT, Bard AI, Mid-journey and other prompt driven AI tools.

PromptDrive란 무엇입니까?

PromptDrive은(는) https://promptdrive.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save, share and organize prompts to streamline workflow for ChatGPT, Bard AI, Mid-journey and other prompt driven AI tools."입니다.

확장 프로그램 스크린샷

screenshot

PromptDrive 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        PromptDrive.ai is a free prompt management tool.

We built this because the current way of saving, organizing and sharing prompts is messy. It's often hacked together with Google Sheets, Google Docs, Notion, Notes, Slack messages and other similar apps.

Now, you can quickly save, share and organize prompts for ChatGPT, Bard AI, Midjourney and other prompt driven AI tools with PromptDrive.ai.

Features:
💾 Create or capture prompts
📝 Add notes for context
🔍 Quickly search your library of prompts to find the prompt you need when you need it
📋 Copy and execute prompts with a few clicks
🗂 Organize prompts with folders
#️⃣ Add tags to segment further
🔗 Share prompts with anyone with a unique URL
📄 Use custom variables to turn your most used prompts into templates

Thanks to our chrome extension, you’ll never need to leave your AI app to prompt ever again. Just click the PromptDrive.ai extension icon and find the prompt you need.

Note: This extension is not officially associated with or developed by the Bard AI, ChatGPT or Midjourney.                    

확장 프로그램 기본 정보

이름 PromptDrive PromptDrive
ID dccfgkejoobijclmdfefmigflabbjcbg
공식 URL https://chromewebstore.google.com/detail/promptdrive/dccfgkejoobijclmdfefmigflabbjcbg
설명 Save, share and organize prompts to streamline workflow for ChatGPT, Bard AI, Mid-journey and other prompt driven AI tools.
파일 크기 217 KB
설치 횟수 1,000
현재 버전 1.0.9
최근 업데이트 2023-07-10
출시 날짜 2023-06-22
평점 5.00/5 총 9 개의 평점
개발자 https://promptdrive.ai
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://promptdrive.ai
개인정보 보호 정책 페이지 URL https://app.promptdrive.ai/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PromptDrive",
    "version": "1.0.9",
    "description": "Save, share and organize prompts to streamline workflow for ChatGPT, Bard AI, Mid-journey and other prompt driven AI tools.",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "omnibox": {
        "keyword": "pd"
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*",
        "https:\/\/bard.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/bard.google.com\/*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "*:\/\/*\/*"
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}