ChatGPT Prompt Plus

ChatGPT Prompt Plus

ChatGPT with Prompt curated template. Quickly save and reuse prompt instant anytime.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_appDesc__",
  "version": "1.5.1.3",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "default_locale": "en",
  "action": {
    "default_icon": "chatgpt-pp.png"
  },
  "icons": {
    "128": "chatgpt-pp.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css"
      ],
      "matches": []
    }
  ]
}