Bamboo HR Timesheet extension

Bamboo HR Timesheet extension

The Bamboo HR Timesheet extension is a powerful tool designed to simplify the process of recording and tracking employee work…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bamboo HR Timesheet extension",
  "version": "1.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.bamboohr.com/employees/timesheet/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "*://*.bamboohr.com/*"
      ]
    }
  ]
}