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
O que é Berlin Bürgeramt Appointment Notifier?
Berlin Bürgeramt Appointment Notifier é uma extensão do Chrome desenvolvida por janekdererste, e sua principal característica é "Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Berlin Bürgeramt Appointment Notifier
Baixe arquivos de extensão Berlin Bürgeramt Appointment Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Berlin Bürgeramt Appointment Notifier |
ID | hdenpammbfebednfldcljbieahjdphpo |
URL Oficial | https://chromewebstore.google.com/detail/berlin-bürgeramt-termin-b/hdenpammbfebednfldcljbieahjdphpo?hl=en |
Descrição | Reloads the Appointment Page of the Berlin Bürgeramt once a minute and issues a push notification if any appointments are available |
Tamanho do Arquivo | 69.06 KB |
Contagem de Instalações | 201 |
Versão Atual | 1.0 |
Última Atualização | 2023-02-10 |
Data de Publicação | 2023-02-10 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | janekdererste |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Janekdererste/BerlinBuergeramtAppointments |
URL da Página de Ajuda | https://github.com/Janekdererste/BerlinBuergeramtAppointments/issues |
Idiomas Suportados | 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 } |