JIRA Story Points Helper

JIRA Story Points Helper

Visualizing each assignee's story points in all sprints

Merlin
Additional files are visible only to premium users

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 <[email protected]>",
  "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"
    }
  ]
}