Dark Screen of Death

Dark Screen of Death

Dark mode and other enhancements for the developer exception page in ASP.NET Core.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dark Screen of Death",
  "description": "Dark mode and other enhancements for the developer exception page in ASP.NET Core.",
  "version": "1.1",
  "manifest_version": 3,
  "author": "elmah.io",
  "icons": {
    "16": "/images/favicon-16x16.png",
    "32": "/images/favicon-32x32.png",
    "48": "/images/favicon-48x48.png",
    "120": "/images/favicon-120x120.png",
    "144": "/images/favicon-144x144.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*"
      ],
      "css": [
        "dark-theme.css"
      ],
      "js": [
        "js/jquery-3.6.4.slim.min.js",
        "js/netstack.js",
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}