Velocity Scores for waffle.io

Velocity Scores for waffle.io

Enable Velocity Scores (Story Points) for waffle.io, so you can estimate the amount of work for each issue

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Velocity Scores for waffle.io",
  "description": "Enable Velocity Scores (Story Points) for waffle.io, so you can estimate the amount of work for each issue",
  "version": "1.1",
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "https://waffle.io/*",
    "http://waffle.io/*"
  ],
  "content_scripts": [
    {
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/content.js"
      ],
      "matches": [
        "https://waffle.io/*",
        "http://waffle.io/*"
      ],
      "run_at": "document_start"
    }
  ]
}