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

Wat is Berlin Bürgeramt Appointment Notifier?

Berlin Bürgeramt Appointment Notifier is een Chrome-extensie ontwikkeld door janekdererste, en de belangrijkste functie is "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Berlin Bürgeramt Appointment Notifier

Download Berlin Bürgeramt Appointment Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension is made for the appointment page of Berlin's Bürgeramt. Once you are on the appointment page this plugin will reload the page every minute and create a push notification on your desktop if new appointments have become available                    

Basisinformatie over de Extensie

Naam Berlin Bürgeramt Appointment Notifier Berlin Bürgeramt Appointment Notifier
ID hdenpammbfebednfldcljbieahjdphpo
Officiële URL https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en
Beschrijving Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available
Bestandsgrootte 69.06 KB
Aantal Installaties 201
Huidige Versie 1.0
Laatst Bijgewerkt 2023-02-10
Publicatiedatum 2023-02-10
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar janekdererste
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Janekdererste/BerlinBuergeramtAppointments
Help Pagina-URL https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues
Ondersteunde Talen de,en
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
}