JavaScript Errors Notifier

JavaScript Errors Notifier

Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JavaScript Errors Notifier",
  "short_name": "js_error",
  "description": "Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon",
  "version": "4.0.0.17",
  "version_name": "4.0 beta 17",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "world": "MAIN",
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "code-to-inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html",
  "icons": {
    "16": "img/error_16.png",
    "48": "img/error_48.png",
    "128": "img/error_128.png"
  },
  "incognito": "spanning",
  "action": {
    "default_icon": {
      "19": "img/error_19_disabled.png",
      "38": "img/error_38_disabled.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/error_64.png",
        "img/error_38.png",
        "img/error_19.png",
        "img/error_128.png",
        "popup.html",
        "options.html",
        "code-to-inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}