Michael's Upgrade for FindMyShift

Michael's Upgrade for FindMyShift

Upgraded features for FindMyShift. (This extension is not an official product of Findmyshift B.V.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Michael's Upgrade for FindMyShift",
  "short_name": "u4FMS",
  "version": "1.2",
  "description": "Upgraded features for FindMyShift. (This extension is not an official product of Findmyshift B.V.)",
  "host_permissions": [
    "*://www.findmyshift.com/*",
    "*://www.findmyshift.co.uk/*"
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "Icons/icon-48.png",
    "128": "Icons/icon-128.png",
    "512": "Icons/icon-512.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Icons/*",
        "Pages/*"
      ],
      "matches": [
        "*://www.findmyshift.com/*",
        "*://www.findmyshift.co.uk/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.findmyshift.com/facility-view*",
        "*://www.findmyshift.co.uk/facility-view*",
        "*://www.findmyshift.com/*/facility-view*"
      ],
      "js": [
        "dayjs.min.js",
        "Scripts/u4FMS_AllocationList.js"
      ]
    }
  ],
  "action": {
    "default_icon": "Icons/icon-512.png"
  }
}