prompster

Slash Commands for ChatGPT and Bard

Qu'est-ce que prompster ?

prompster est une extension Chrome développée par lucas.aschenbach, et sa fonction principale est "Slash Commands for ChatGPT and Bard".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension prompster

Téléchargez les fichiers d'extension prompster au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom prompster prompster
ID fbagfekcjdidpmmookklbaeddgkjddml
URL Officiel https://chromewebstore.google.com/detail/prompster/fbagfekcjdidpmmookklbaeddgkjddml
Description Slash Commands for ChatGPT and Bard
Taille du Fichier 249 KB
Nombre d'Installations 4,000
Version Actuelle 1.4.2
Dernière Mise à Jour 2024-02-09
Date de Publication 2023-04-06
Évaluation 4.57/5 Total 7 Évaluations
Développeur lucas.aschenbach
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/LucasAschenbach/prompster
URL de la Page de Politique de Confidentialité https://lucasaschenbach.github.io/prompster/privacy-policy/index.html
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}