JIRA Notification Notifier

JIRA Notification Notifier

Plays notification when JIRA notification arrives. It will need access to show notification, allow it when request popup appears.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JIRA Notification Notifier",
  "version": "0.1.1",
  "description": "Plays notification when JIRA notification arrives. It will need access to show notification, allow it when request popup appears.",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "host_permissions": [
    "https://*.atlassian.net/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "js": [
        "./jira-notification-check-v2.js",
        "./third-party/jquery-1.12.4.js",
        "./third-party/jquery-ui-1.12.1.js"
      ]
    }
  ]
}