JIRA Watcher

JIRA Watcher

Receive notifications about new items on JIRA sites you visit.

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": "Receive notifications about new items on JIRA sites you visit.",
  "version": "0.2.1",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "myscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "notifications",
    "tabs",
    "storage",
    "<all_urls>"
  ]
}