GPT Cat

GPT Cat

Introducing GPT Cat, your extraordinary Chat GPT manager and creative companion. With the power to save prompts, bookmark…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.4.0",
  "manifest_version": 3,
  "name": "GPT Cat",
  "icons": {
    "16": "images/icon-2.png",
    "32": "images/icon-2.png",
    "48": "images/icon-2.png",
    "128": "images/icon-2.png"
  },
  "action": {
    "default_popup": "js/index.html",
    "default_title": "GPT Cat"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "images/*.svg"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}