Jira Change Notifier

Jira Change Notifier

Adds a notifcation to the page when a Jira issue you are viewing has been altered

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Jira Change Notifier",
  "version": "2.2.1",
  "description": "Adds a notifcation to the page when a Jira issue you are viewing has been altered",
  "author": "[email protected]",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/browse/*"
      ],
      "js": [
        "jira-issue-change-notifier.js"
      ],
      "css": [
        "jira-change-notifier.css"
      ]
    },
    {
      "matches": [
        "*://*/secure/RapidBoard*"
      ],
      "js": [
        "jira-board-change-notifier.js"
      ],
      "css": [
        "jira-change-notifier.css"
      ]
    }
  ]
}