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".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Berlin Bürgeramt Appointment Notifier

Скачайте файлы расширений 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
}