Berlin Bürgeramt Appointment Notifier

Berlin Bürgeramt Appointment Notifier

Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "de",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://service.berlin.de/terminvereinbarung/termin/day/*"
      ],
      "js": [
        "js/app.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "notifications"
  ],
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 3
}