New Relic One Alert(s)

New Relic One Alert(s)

Alerts when a new Incident is created in my New Relic account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "New Relic One Alert(s)",
  "short_name": "New Relic Alert",
  "description": "Alerts when a new Incident is created in my New Relic account.",
  "version": "1.0.0",
  "icons": {
    "16": "./images/nr_badge_16.png",
    "48": "./images/nr_badge_48.png",
    "128": "./images/nr_badge_128.png"
  },
  "options_page": "popup.html?options=true",
  "options_ui": {
    "page": "popup.html?options=true"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "action": {
    "default_icon": {
      "16": "./images/nr_badge_16.png",
      "48": "./images/nr_badge_48.png",
      "128": "./images/nr_badge_128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "https://api.newrelic.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  }
}