Examine source code of JIRA Story Points Helper

Inspect and view changes in JIRA Story Points Helper 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": "__MSG_extName__",
  "short_name": "jira-story-points-helper",
  "description": "__MSG_extDesc__",
  "icons": {
    "128": "icon.png"
  },
  "version": "0.4.4",
  "author": "Jui-Shan Liang <jsliang.tw@gmail.com>",
  "homepage_url": "https://github.com/jsliang/jira-story-points-helper",
  "default_locale": "en",
  "permissions": [
    "https://*.atlassian.net/secure/RapidBoard.jspa*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/secure/RapidBoard.jspa*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ]
}