prompster

Slash Commands for ChatGPT and Bard

prompster란 무엇입니까?

prompster은(는) lucas.aschenbach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Slash Commands for ChatGPT and Bard"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

prompster 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Prompster supercharges your chat bot by offering instant access to almost 200 predefined prompts directly inside ChatGPT, Bard, and more. Simply type '/', followed by the keyword for your prompt, hit 'tab' and the prompt is inserted into the input field without ever leaving the chat.

Prompster also supports custom prompts. With just 2 clicks you can add your own prompts as slash commands to your library for instant access whenever you need. For more advanced use cases, you can enclose parts of your prompt with brackets []. These are interpreted as variables and are dynamically filled when using the prompt.

Currently supported chat-bots are:
- ChatGPT
- Gemini
- Claude
- Poe
- AgentGPT
- nat.dev
- you.com

Request to add more here: https://github.com/LucasAschenbach/prompster/discussions/5                    

확장 프로그램 기본 정보

이름 prompster prompster
ID fbagfekcjdidpmmookklbaeddgkjddml
공식 URL https://chromewebstore.google.com/detail/prompster/fbagfekcjdidpmmookklbaeddgkjddml
설명 Slash Commands for ChatGPT and Bard
파일 크기 249 KB
설치 횟수 4,000
현재 버전 1.4.2
최근 업데이트 2024-02-09
출시 날짜 2023-04-06
평점 4.57/5 총 7 개의 평점
개발자 lucas.aschenbach
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/LucasAschenbach/prompster
개인정보 보호 정책 페이지 URL https://lucasaschenbach.github.io/prompster/privacy-policy/index.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "prompster",
    "version": "1.4.2",
    "description": "Slash Commands for ChatGPT and Bard",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "clipboardRead"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/bard.google.com\/*",
                "https:\/\/gemini.google.com\/*",
                "https:\/\/claude.ai\/*",
                "https:\/\/poe.com\/*",
                "https:\/\/agentgpt.reworkd.ai\/*",
                "https:\/\/nat.dev\/chat\/*",
                "https:\/\/you.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/default_prompts.json"
            ],
            "matches": [
                ""
            ]
        }
    ]
}