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”。

扩展截图

screenshot

下载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 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
}