Chrome JS Error Icon

Chrome JS Error Icon

Little icon to remind you that something gone wrong on the current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome JS Error Icon",
  "version": "1.0",
  "description": "Little icon to remind you that something gone wrong on the current tab.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Chrome JS Error Icon",
    "default_popup": "popup.html"
  },
  "optional_permissions": [
    "<all_urls>"
  ]
}