Examine source code of Story Point Totals for JIRA Kanban Boards

Inspect and view changes in Story Point Totals for JIRA Kanban Boards 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",
  "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"
      ]
    }
  ]
}