JS error notifier Firefox

Examine source code of JS error notifier

Inspect and view changes in JS error notifier source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "name": "JS console error notifier",
  "version": "0.1",
  "description": "Show console errors directly in the webpage",
  "icons": {
    "16": "/icons/icon16.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "/src/console-listener.js",
    "alertify.min.js",
    "fonts/Roboto-Regular.ttf"
  ],
  "permissions": [
    "tabs",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "/src/alertify.min.css"
      ],
      "js": [
        "contentScript.js",
        "alertify.min.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'"
}

Best JS error notifier Alternatives

Here are some Firefox add-ons that are similar to JS error notifier: