Berlin Appointment Helper

Berlin Appointment Helper

Notifies you when an appointment is available

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Berlin Appointment Helper",
  "description": "Notifies you when an appointment is available",
  "version": "3.7.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "./index.html#/popup"
  },
  "options_page": "./index.html#/options",
  "icons": {
    "160": "./assets/icons/is-enabled/160.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "background": {
    "service_worker": "background-main.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/tones/*.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}