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

Vad är Berlin Bürgeramt Appointment Notifier?

Berlin Bürgeramt Appointment Notifier är en Chrome-tillägg utvecklad av janekdererste, och dess huvudfunktion är "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".

Tilläggsskärmbilder

screenshot

Ladda ner Berlin Bürgeramt Appointment Notifier-förlängningens CRX-fil

Ladda ner Berlin Bürgeramt Appointment Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Berlin Bürgeramt Appointment Notifier Berlin Bürgeramt Appointment Notifier
ID hdenpammbfebednfldcljbieahjdphpo
Officiell webbadress https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en
Beskrivning Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available
Filstorlek 69.06 KB
Antal Installationer 201
Aktuell Version 1.0
Senast Uppdaterad 2023-02-10
Publiceringsdatum 2023-02-10
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare janekdererste
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Janekdererste/BerlinBuergeramtAppointments
Hjälpsida URL https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues
Stödda Språk 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
}