PagerDuty Notifier

PagerDuty Notifier

Desktop notifications for your PagerDuty incidents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PagerDuty Notifier",
  "short_name": "PD Notifier",
  "description": "Desktop notifications for your PagerDuty incidents.",
  "version": "0.23",
  "author": "Rich Adams (https://richadams.me)",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "permissions": [
    "notifications",
    "background",
    "storage",
    "alarms",
    "https://*.pagerduty.com/api/v1/*",
    "contextMenus"
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  },
  "background": {
    "scripts": [
      "lib/pd-api.js",
      "background/pd-notifier.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/browser-icon-32.png"
  }
}