OGD's enhancements for Trello

OGD's enhancements for Trello

An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. *…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OGD's enhancements for Trello",
  "version": "7",
  "description": "",
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "mutation_summary.js",
        "trelloscrum.js"
      ],
      "css": [
        "trelloscrum.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "showPageAction.js"
    ]
  },
  "permissions": [
    "tabs"
  ],
  "page_action": {
    "default_icon": {
      "19": "images/ogd-trello19.png",
      "38": "images/ogd-trello38.png"
    },
    "default_title": "Board settings",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "icons": {
    "128": "images/ogd-trello128.png"
  }
}