prompster

prompster

Slash Commands for ChatGPT and Bard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "prompster",
  "version": "1.4.0",
  "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://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": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}