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

Hvad er Berlin Bürgeramt Appointment Notifier?

Berlin Bürgeramt Appointment Notifier er en Chrome-udvidelse udviklet af janekdererste, og dens hovedfunktion er "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".

Udvidelsesskærmbilleder

screenshot

Download Berlin Bürgeramt Appointment Notifier-udvidelses-CRX-fil

Download Berlin Bürgeramt Appointment Notifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Berlin Bürgeramt Appointment Notifier Berlin Bürgeramt Appointment Notifier
ID hdenpammbfebednfldcljbieahjdphpo
Officiel URL https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en
Beskrivelse Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available
Filstørrelse 69.06 KB
Antal Installationer 201
Nuværende Version 1.0
Senest Opdateret 2023-02-10
Udgivelsesdato 2023-02-10
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler janekdererste
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Janekdererste/BerlinBuergeramtAppointments
Hjælpeside-URL https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues
Understøttede Sprog 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
}