Whats This Error

Learn what different errors are when you encoutner them online with Whats This Error.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whats This Error",
  "homepage_url": "https://whatsthiserror.com",
  "description": "Learn what different errors are when you encoutner them online with Whats This Error.",
  "version": "1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "worker.js"
  },
  "action": {
    "default_icon": "logo-128.png"
  },
  "icons": {
    "128": "logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "performance.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}