GPT Icon Changer

GPT Icon Changer

An extension that allows you to easily customize the ChatGPT icon. Upload your favorite image and apply it to the icon.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GPT Icon Changer",
  "description": "__MSG_appDescription__",
  "version": "1.1.3",
  "manifest_version": 3,
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "typhoon16.png",
    "48": "typhoon48.png",
    "128": "typhoon128.png"
  }
}