prompster

Slash Commands for ChatGPT and Bard

什麼是prompster?

prompster是由lucas.aschenbach開發的Chrome擴展程式,該擴展的主要功能是“Slash Commands for ChatGPT and Bard”。

擴展截圖

screenshot
screenshot

下載prompster擴展crx文件

下載prompster擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}