Zenoti Weekly Schedule Viewer

Print Schedule when the page is done loading

Что такое Zenoti Weekly Schedule Viewer?

Zenoti Weekly Schedule Viewer - это расширение Chrome, разработанное Sashi Guduri, и его основная функция - "Print Schedule when the page is done loading".

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

screenshot
screenshot

Скачать файл CRX расширения Zenoti Weekly Schedule Viewer

Скачайте файлы расширений Zenoti Weekly Schedule Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extensions is for Zenoti Web POS software users. It lets you view your weekly schedule without any clutter and lets you print it.                    

Основная информация о расширении

Название Zenoti Weekly Schedule Viewer Zenoti Weekly Schedule Viewer
ID khjjlmjkpgmabocimfcbkbpecnpiocae
Официальный URL https://chromewebstore.google.com/detail/zenoti-weekly-schedule-vi/khjjlmjkpgmabocimfcbkbpecnpiocae
Описание Print Schedule when the page is done loading
Размер файла 27.07 KB
Количество установок 818
Текущая Версия 0.0.0.3
Последнее Обновление 2022-10-18
Дата публикации 2020-09-19
Разработчик Sashi Guduri
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zenoti Weekly Schedule Viewer",
    "version": "0.0.0.3",
    "description": "Print Schedule when the page is done loading",
    "manifest_version": 2,
    "icons": {
        "16": "icon.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.12.4\/; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "dom_get.js"
            ],
            "matches": [
                "https:\/\/*.zenoti.com\/Admin\/Employees\/EmployeeSchedule.aspx?View=Week*",
                "https:\/\/*.zenoti.com\/Admin\/Employees\/EmployeeSchedule.aspx?View=Week*"
            ]
        }
    ]
}