Order notification plugin

This plugin notifies the user by a sound about any order that is received through online ordering system

Что такое Order notification plugin?

Order notification plugin - это расширение Chrome, разработанное Order To Eat Now, и его основная функция - "This plugin notifies the user by a sound about any order that is received through online ordering system".

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

screenshot

Скачать файл CRX расширения Order notification plugin

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

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

                        An order notification plugin to get order updates.                    

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

Название Order notification plugin Order notification plugin
ID npdlieblchhmkobjpplcblnmnnponcnf
Официальный URL https://chrome.google.com/webstore/detail/order-notification-plugin/npdlieblchhmkobjpplcblnmnnponcnf
Описание This plugin notifies the user by a sound about any order that is received through online ordering system
Размер файла 450 KB
Количество установок 21
Текущая Версия 1.4
Последнее Обновление 2017-08-22
Дата публикации 2017-08-22
Разработчик Order To Eat Now
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://app1.ordertoeatnow.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Order notification plugin",
    "short_name": "Order Notifier",
    "description": "This plugin notifies the user by a sound about any order that is received through online ordering system",
    "version": "1.4",
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "pages\/index.html",
        "default_title": "Order Notifications"
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*backend*"
            ],
            "js": [
                "js\/lib\/jquery_3.1.js",
                "js\/content_reader.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/sweetalert.css"
            ],
            "js": [
                "js\/lib\/jquery_3.1.js",
                "js\/lib\/sweetalert.min.js",
                "js\/sweetalert_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/lib\/jquery_3.1.js",
            "js\/lib\/raven.js",
            "js\/lib\/sentry.js",
            "js\/lib\/pusher.js",
            "js\/pusher_script.js"
        ]
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ]
}