Show GPT Chats And More

Show GPT Chats And More

Show GPT’s chats and more info while exploring GPTs In GPTs store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Show GPT Chats And More",
  "version": "2.0.0",
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "icons": {
    "32": "images/chat32.png",
    "48": "images/chat48.png",
    "128": "images/chat128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  }
}