prompster

Slash Commands for ChatGPT and Bard

prompster क्या है?

prompster lucas.aschenbach द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Slash Commands for ChatGPT and Bard"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में prompster एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}