PromptFolder - ChatGPT Prompt Manager

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

PromptFolder - ChatGPT Prompt Manager란 무엇입니까?

PromptFolder - ChatGPT Prompt Manager은(는) https://promptfolder.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools."입니다.

확장 프로그램 스크린샷

screenshot

PromptFolder - ChatGPT Prompt Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 PromptFolder - ChatGPT Prompt Manager PromptFolder - ChatGPT Prompt Manager
ID pcollgbgdjbfmjkgkooifpbakhiaedmn
공식 URL https://chromewebstore.google.com/detail/promptfolder-chatgpt-prom/pcollgbgdjbfmjkgkooifpbakhiaedmn
설명 Save, share, and discover prompts for ChatGPT, Midjourney, and other AI tools.
파일 크기 245 KB
설치 횟수 2,653
현재 버전 1.0.1
최근 업데이트 2023-09-14
출시 날짜 2023-09-09
평점 4.82/5 총 11 개의 평점
개발자 https://promptfolder.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://promptfolder.com
도움말 페이지 URL https://promptfolder.com/general/contact
개인정보 보호 정책 페이지 URL https://promptfolder.com/general/privacy-policy
지원되는 언어 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\/*"
    ]
}