Jira Watcher

Jira Watcher

The best extension to take control of your Jira issues.

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",
  "description": "The best extension to take control of your Jira issues.",
  "version": "1.0.0",
  "icons": {
    "128": "images/JIRA_navy.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "build/html/popup.html"
  },
  "background": {
    "scripts": [
      "build/js/bg_compiled.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "build/html/options.html"
  ],
  "permissions": [
    "background",
    "notifications",
    "storage",
    "http://*/",
    "https://*/"
  ]
}