Chat GPT Extension

Chat GPT Extension

Find and organize your Chat GPT searchs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "Chat GPT Extension",
  "version": "1.0.0",
  "description": "__MSG_mftDescription__",
  "action": {
    "default_popup": "src/html/popup.html",
    "default_icon": {
      "16": "assets/icons/icon3.png",
      "48": "assets/icons/icon3.png",
      "128": "assets/icons/icon3.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/auth/login"
      ],
      "js": [
        "src/js/modules/search.js",
        "src/js/modules/mutationObserver.js",
        "src/js/modules/ui.js",
        "src/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/html/description.html"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/auth/login"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ]
}