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

Cos'è Berlin Bürgeramt Appointment Notifier?

Berlin Bürgeramt Appointment Notifier è un'estensione di Chrome sviluppata da janekdererste, e la sua funzione principale è "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Berlin Bürgeramt Appointment Notifier

Scarica i file di estensione Berlin Bürgeramt Appointment Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Berlin Bürgeramt Appointment Notifier Berlin Bürgeramt Appointment Notifier
ID hdenpammbfebednfldcljbieahjdphpo
URL Ufficiale https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en
Descrizione Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available
Dimensione del File 69.06 KB
Conteggio Installazioni 201
Versione Corrente 1.0
Ultimo Aggiornamento 2023-02-10
Data di Pubblicazione 2023-02-10
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore janekdererste
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Janekdererste/BerlinBuergeramtAppointments
URL della Pagina di Aiuto https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues
Lingue Supportate 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
}