StylerGPT: ChatGPT with better UI

StylerGPT: ChatGPT with better UI

A better UI for ChatGPT. Customize the ChatGPT user interface by choosing colors, fonts, backgrounds and more. Download for free!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2024.5.0",
  "permissions": [
    "scripting"
  ],
  "background": {
    "service_worker": "scripts/background/init.js"
  },
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "css": [
        "styles/global.css",
        "styles/fonts.css",
        "styles/animate.min.css"
      ],
      "js": [
        "scripts/content/background.js",
        "scripts/content/widget.js",
        "scripts/content/utils.js",
        "scripts/content/themes.js",
        "scripts/content/textarea-tools.js",
        "scripts/content/fonts.js",
        "scripts/content/welcome.js",
        "scripts/content/appmsg.js",
        "scripts/content/reviews.js",
        "scripts/3rd-party/sentry.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.map",
        "*.json",
        "components/*",
        "images/*",
        "styles/*",
        "scripts/content/injected.js"
      ],
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "64": "images/icons/64.png",
    "96": "images/icons/96.png",
    "128": "images/icons/128.png",
    "256": "images/icons/256.png"
  },
  "action": {
    "default_popup": "components/general/popup.html",
    "default_icon": {
      "16": "images/icons/16.png",
      "32": "images/icons/32.png",
      "64": "images/icons/64.png",
      "96": "images/icons/96.png",
      "128": "images/icons/128.png",
      "256": "images/icons/256.png"
    },
    "default-title": "StylerGPT: ChatGPT with better UI"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}