JIRA watcher

JIRA watcher

Now you will not miss important changes in your JIRA filter. JIRA watcher is a useful extension which helps you keep track of the…

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 watcher",
  "version": "2.0",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "images/jira16.png",
    "48": "images/jira48.png",
    "128": "images/jira128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "https://*/",
    "notifications"
  ],
  "browser_action": {
    "default_title": "JIRA watcher",
    "default_icon": "images/jira.png",
    "default_popup": "index.html"
  }
}