ChatGPT Prompt Gallery

ChatGPT Prompt Gallery

Get started with ChatGPT today! 🚀 Discover 80+ prompts across 9 categories, updated regularly for endless inspiration 🎉

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Prompt Gallery",
  "description": "Get started with ChatGPT today! 🚀 Discover 80+ prompts across 9 categories, updated regularly for endless inspiration 🎉",
  "version": "1.1",
  "permissions": [
    "activeTab",
    "tabs",
    "background"
  ],
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default-popup": "popup.html",
    "default_icon": {
      "16": "Icons/logo16.png",
      "48": "Icons/logo48.png",
      "128": "Icons/logo128.png"
    }
  },
  "icons": {
    "16": "Icons/logo16.png",
    "48": "Icons/logo48.png",
    "128": "Icons/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "animate.css"
      ],
      "js": [
        "content_script_add_prompts.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "Icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}