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
Qu'est-ce que Berlin Bürgeramt Appointment Notifier ?
Berlin Bürgeramt Appointment Notifier est une extension Chrome développée par janekdererste, et sa fonction principale est "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Berlin Bürgeramt Appointment Notifier
Téléchargez les fichiers d'extension Berlin Bürgeramt Appointment Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Berlin Bürgeramt Appointment Notifier |
ID | hdenpammbfebednfldcljbieahjdphpo |
URL Officiel | https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en |
Description | Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available |
Taille du Fichier | 69.06 KB |
Nombre d'Installations | 201 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-02-10 |
Date de Publication | 2023-02-10 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | janekdererste |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Janekdererste/BerlinBuergeramtAppointments |
URL de la Page d'Aide | https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues |
Langues Prises en Charge | 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 } |