Estimations Plugin for Microsoft Planner

Estimations Plugin for Microsoft Planner

This extension sums up numbers given in the title of Microsoft Planner cards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Estimations Plugin for Microsoft Planner",
  "description": "This extension sums up numbers given in the title of Microsoft Planner cards",
  "version": "1.65",
  "short_name": "Planner Estimations",
  "author": "Dirk Räbiger, Pablo Rivero, [email protected]",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tasks.office.com/*/Planner*"
      ],
      "css": [
        "bootstrap-iso.css",
        "estimates.css"
      ],
      "js": [
        "estimates.js"
      ],
      "run_at": "document_end"
    }
  ]
}