The Error Tool

The Error Tool

The Error Tool offers tips and explanationss to understand the internet better—covering errors, terms, articles & knowledge bases.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Error Tool",
  "homepage_url": "https://theerrortool.com",
  "description": "The Error Tool offers tips and explanationss to understand the internet better—covering errors, terms, articles & knowledge bases.",
  "version": "2.0",
  "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://*/*"
  ]
}