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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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 } |