PromptFolder - ChatGPT Prompt Manager

Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.

Co je PromptFolder - ChatGPT Prompt Manager?

PromptFolder - ChatGPT Prompt Manager je rozšíření Chrome vyvinuté https://promptfolder.com, a jeho hlavní funkcí je „Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření PromptFolder - ChatGPT Prompt Manager

Stáhněte si soubory rozšíření PromptFolder - ChatGPT Prompt Manager ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The Ultimate ChatGPT Prompt Manager! Save, share, and discover prompts for ChatGPT and other AI tools. Say goodbye to manually typing prompts, or digging through spreadsheets to find them.

PromptFolder's Chrome extension allows you to type a slash (/) and instantly pull up all of your saved prompts. Continue typing to filter for a specific prompt, and drop it into ChatGPT with a single click.

Use PromptFolder to store your prompts, with advanced features including:

🕵🏻‍♂️ Prompt privacy settings
💬 Comments that are not passed to ChatGPT
👨‍💻 Variables that clear when prompts are loaded
🗂️ Folders to organize your prompts

Other AI prompt managers store your prompts locally, which is asking for trouble 🙅‍♂️ PromptFolder stores all of your prompts in the cloud so you can access them on any device.

In addition to Chat GPT, PromptFolder also supports:

✅ Claude
✅ Google Bard
✅ Bing AI                    

Základní Informace o Rozšíření

Název PromptFolder - ChatGPT Prompt Manager PromptFolder - ChatGPT Prompt Manager
ID pcollgbgdjbfmjkgkooifpbakhiaedmn
Oficiální URL https://chromewebstore.google.com/detail/promptfolder-chatgpt-prom/pcollgbgdjbfmjkgkooifpbakhiaedmn
Popis Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.
Velikost souboru 245 KB
Počet instalací 2,653
Aktuální Verze 1.0.1
Poslední Aktualizace 2023-09-14
Datum Vydání 2023-09-09
Hodnocení 4.82/5 Celkem 11 Hodnocení
Vývojář https://promptfolder.com
E-mail [email protected]
Typ Platby in_app
Webové stránky Rozšíření https://promptfolder.com
URL Stránky Nápovědy https://promptfolder.com/general/contact
URL Stránky Zásad Ochrany Soukromí https://promptfolder.com/general/privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PromptFolder - ChatGPT Prompt Manager",
    "version": "1.0.1",
    "description": "Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/claude.ai\/*",
                "https:\/\/bard.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/promptfolder.com\/api\/*"
    ]
}