PromptDrive

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

PromptDrive là gì?

PromptDrive là một tiện ích mở rộng Chrome được phát triển bởi https://promptdrive.ai, và tính năng chính của nó là "Save, share and organize prompts to streamline workflow for ChatGPT, Bard AI, Mid-journey and other prompt driven AI tools.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PromptDrive

Tải xuống các tệp mở rộng PromptDrive dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PromptDrive PromptDrive
ID dccfgkejoobijclmdfefmigflabbjcbg
URL Chính Thức https://chromewebstore.google.com/detail/promptdrive/dccfgkejoobijclmdfefmigflabbjcbg
Mô tả Save, share and organize prompts to streamline workflow for ChatGPT, Bard AI, Mid-journey and other prompt driven AI tools.
Kích Thước Tệp 217 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2023-07-10
Ngày Phát Hành 2023-06-22
Đánh Giá 5.00/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://promptdrive.ai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://promptdrive.ai
URL Trang Chính Sách Bảo Mật https://app.promptdrive.ai/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}