Stylish - Custom themes for any website

Stylish - Custom themes for any website

With hundreds of thousands of themes, skins & free backgrounds, you can customize any website with your own color scheme in a click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "Stylish - Custom themes for any website",
  "description": "With hundreds of thousands of themes, skins & free backgrounds, you can customize any website with your own color scheme in a click.",
  "version": "3.0.0",
  "manifest_version": 3,
  "default_locale": "en",
  "action": {
    "default_title": "Stylish"
  },
  "options_page": "pages/options/options.html",
  "icons": {
    "16": "/icons/logo/black-icon-128.png",
    "48": "/icons/logo/black-icon-128.png",
    "128": "/icons/logo/black-icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "scripting",
    "webNavigation",
    "webRequest",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.userstyles.org/*"
    ]
  },
  "background": {
    "service_worker": "./static/js/service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "css": [],
      "run_at": "document_start"
    },
    {
      "js": [
        "vendor/content_oomsih.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "vendor/bundle_ytvhjan.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "minimum_chrome_version": "101"
}