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是由janekdererste開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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 } |