Trello Story Point Counts

Trello Story Point Counts

Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trello Story Point Counts",
  "short_name": "Trello Story Points",
  "description": "Show the count of story points (based on Screenful.com syntax) at the header of a Trello list.",
  "version": "1.0.0.8",
  "browser_action": {
    "default_icon": {
      "19": "img/GreyT19.png"
    }
  },
  "permissions": [
    "*://*.trello.com/*"
  ],
  "icons": {
    "16": "img/GreyT16.png",
    "128": "img/GreyT.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trello.com/*"
      ],
      "css": [
        "liststyles.css"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "jquery.waituntilexists.min.js",
        "mutation-summary.js",
        "listcount.js"
      ],
      "run at": [
        "document_end"
      ]
    }
  ]
}