prompster

Slash Commands for ChatGPT and Bard

Co je prompster?

prompster je rozšíření Chrome vyvinuté lucas.aschenbach, a jeho hlavní funkcí je „Slash Commands for ChatGPT and Bard“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření prompster

Stáhněte si soubory rozšíření prompster 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í

                        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                    

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

Název prompster prompster
ID fbagfekcjdidpmmookklbaeddgkjddml
Oficiální URL https://chromewebstore.google.com/detail/prompster/fbagfekcjdidpmmookklbaeddgkjddml
Popis Slash Commands for ChatGPT and Bard
Velikost souboru 249 KB
Počet instalací 4,000
Aktuální Verze 1.4.2
Poslední Aktualizace 2024-02-09
Datum Vydání 2023-04-06
Hodnocení 4.57/5 Celkem 7 Hodnocení
Vývojář lucas.aschenbach
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/LucasAschenbach/prompster
URL Stránky Zásad Ochrany Soukromí https://lucasaschenbach.github.io/prompster/privacy-policy/index.html
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}