Newrelic Alarm

Newrelic Alarm

This extensions alerts you when an app is in RED state.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Newrelic Alarm",
  "short_name": "NRA",
  "description": "This extensions alerts you when an app is in RED state.",
  "author": "Pablo Matías Gomez",
  "version": "1.0.2",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "web_accessible_resources": [
    "images/*.*",
    "css/styles.css",
    "js/functions.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.newrelic.com/*"
      ],
      "js": [
        "js/jquery-3.1.0.min.js",
        "js/ApplicationsPage.js",
        "js/functions.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ]
}