BambooHR Goals

BambooHR Goals

Draw a chart based on the performance goals' progress

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BambooHR Goals",
  "description": "Draw a chart based on the performance goals' progress",
  "version": "0.0.1",
  "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*.bamboohr.com/employees/performance/*"
      ],
      "js": [
        "app/payload.js"
      ]
    }
  ],
  "icons": {
    "128": "/app/assets/bamboo_extension.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "https://*.bamboohr.com/employees/performance/*"
  ]
}