PRMDB for ChatGPT

PRMDB for ChatGPT

Use existing prompts or create your own with PRMDB for ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "PRMDB for ChatGPT",
  "description": "Use existing prompts or create your own with PRMDB for ChatGPT",
  "version": "1.1",
  "version_name": "1.1",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "PRMDB - Open ChatGPT"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://prmdb.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "config.js",
        "inject.js",
        "client.js",
        "utils.js",
        "enums.js",
        "style.css",
        "options.html"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}