Story Point Totals for JIRA Kanban Boards

Story Point Totals for JIRA Kanban Boards

This extension totals story points in JIRA Kanban boards and puts them at the top of each column.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Story Point Totals for JIRA Kanban Boards",
  "short_name": "JIRA Story Point Totals",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "This extension totals story points in JIRA Kanban boards and puts them at the top of each column.",
  "homepage_url": "https://noahcoffey.com/jira-story-points",
  "author": "Noah Coffey",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}