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
Τι είναι το Berlin Bürgeramt Appointment Notifier;
Το Berlin Bürgeramt Appointment Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον janekdererste, και η κύρια λειτουργία του είναι "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Berlin Bürgeramt Appointment Notifier
Λήψη αρχείων επέκτασης Berlin Bürgeramt Appointment Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Berlin Bürgeramt Appointment Notifier |
ID | hdenpammbfebednfldcljbieahjdphpo |
Επίσημο URL | https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en |
Περιγραφή | Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available |
Μέγεθος Αρχείου | 69.06 KB |
Αριθμός Εγκαταστάσεων | 201 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2023-02-10 |
Ημερομηνία Δημοσίευσης | 2023-02-10 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | janekdererste |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Janekdererste/BerlinBuergeramtAppointments |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues |
Υποστηριζόμενες Γλώσσες | 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 } |