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

Co to jest Berlin Bürgeramt Appointment Notifier?

Berlin Bürgeramt Appointment Notifier to rozszerzenie Chrome opracowane przez janekdererste, a jego główną funkcją jest „Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Berlin Bürgeramt Appointment Notifier

Pobierz pliki rozszerzeń Berlin Bürgeramt Appointment Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Berlin Bürgeramt Appointment Notifier Berlin Bürgeramt Appointment Notifier
ID hdenpammbfebednfldcljbieahjdphpo
Oficjalny URL https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en
Opis Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available
Rozmiar pliku 69.06 KB
Liczba instalacji 201
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-02-10
Data Publikacji 2023-02-10
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper janekdererste
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Janekdererste/BerlinBuergeramtAppointments
Adres URL Strony Pomocy https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues
Obsługiwane Języki 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
}