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文件

下載PromptDrive擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
    }
}