Progress for Trello

Progress for Trello

Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Progress for Trello",
  "version": "1.2.4",
  "manifest_version": 2,
  "description": "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.",
  "homepage_url": "http://cycododge.com/projects#progress",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "background": {
    "page": "analytics.html",
    "persistent": false
  },
  "permissions": [
    "https://*.trello.com/*"
  ],
  "web_accessible_resources": [
    "js/bp-trello.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.trello.com/*"
      ],
      "css": [
        "css/bp-trello.css"
      ]
    },
    {
      "matches": [
        "https://*.trello.com/*"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ]
}