PromptGPT: Prompts for ChatGPT

Save your most used prompts in ChatGPT!

PromptGPT: Prompts for ChatGPT란 무엇입니까?

PromptGPT: Prompts for ChatGPT은(는) https://promptgpt.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save your most used prompts in ChatGPT!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

PromptGPT: Prompts for ChatGPT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Clear, detailed prompts unlock ChatGPT's potential. PromptGPT helps you save the best and get high-quality responses with ease!

🚀 Prompt Bar
Press “/” anywhere to quickly browse and select a saved prompt.

✍️ Rich Template Engine
Give a shortcut to fill a saved prompt. Pass in custom values when using a shortcut. Or not, it also supports default values.

📙 Custom Workflow
Build your dictionary to fit your workflow. Take a look at the examples to get started.

⌨ Keyboard Navigation
Navigate prompt bar with arrow keys and quickly save your last prompt (^ + shift + s).

⚙️ Easy Access
Access your prompt library by right-clicking the extension icon in your browser's extension bar and pressing "options".

This extension is in active development, feedback is greatly appreciated!                    

확장 프로그램 기본 정보

이름 PromptGPT: Prompts for ChatGPT PromptGPT: Prompts for ChatGPT
ID pkjccaeilmgpheecbmkmnckanijinppj
공식 URL https://chromewebstore.google.com/detail/promptgpt-prompts-for-cha/pkjccaeilmgpheecbmkmnckanijinppj
설명 Save your most used prompts in ChatGPT!
파일 크기 446 KB
설치 횟수 597
현재 버전 1.0.11
최근 업데이트 2023-04-18
출시 날짜 2022-12-23
평점 3.50/5 총 2 개의 평점
개발자 https://promptgpt.co
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://eeshu.notion.site/Privacy-Policy-1927d56240ee4f28ab87fbc1494baaad
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PromptGPT: Prompts for ChatGPT",
    "description": "Save your most used prompts in ChatGPT!",
    "version": "1.0.11",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png"
    },
    "options_page": "options.html",
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/chat_gpt.js"
            ]
        },
        {
            "matches": [
                "https:\/\/promptgpt.co\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/prompt_gpt.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.google-analytics.com\/mp\/collect*"
    ]
}