Examine source code of JIRA watcher

Inspect and view changes in JIRA watcher source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  }
}