GitHub Story Points Calculator

Adds storypoint support to GitHub's project board through issue labels. See https://100automations.github.io/github-story-points-calculator/ for more information. Created by Ava Li, My Nguyen, and Holly Worthen.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "github-story-points-calculator",
  "version": "2.0.1",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/spoints-24.png",
    "default_title": "github-story-points-calculator",
    "default_popup": "popup.html"
  },
  "description": "Adds storypoint support to GitHub's project board through issue labels. See https://github.com/100Automations/github-story-points-calculator#README.md",
  "icons": {
    "16": "icons/spoints-16.png",
    "48": "icons/spoints-48.png",
    "128": "icons/spoints-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.github.com/*/*/projects/*",
        "*://github.com/orgs/*/*/*/views/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "index.bundle.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/100Automations/github-story-points-calculator",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{aec76474-940a-4ec1-af40-1173b89a3252}"
    }
  }
}