Enhancer for ChatGPT

Enhancer for ChatGPT

Better ChatGPT experience. Hide annoyances.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "src/content.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Better ChatGPT experience. Hide annoyances.",
  "icons": {
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "name": "Enhancer for ChatGPT",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://chat.openai.com/*"
  ]
}