Order notification plugin

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

Co je Order notification plugin?

Order notification plugin je rozšíření Chrome vyvinuté Order To Eat Now, a jeho hlavní funkcí je „This plugin notifies the user by a sound about any order that is received through online ordering system“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Order notification plugin

Stáhněte si soubory rozšíření Order notification plugin ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        An order notification plugin to get order updates.                    

Základní Informace o Rozšíření

Název Order notification plugin Order notification plugin
ID npdlieblchhmkobjpplcblnmnnponcnf
Oficiální URL https://chrome.google.com/webstore/detail/order-notification-plugin/npdlieblchhmkobjpplcblnmnnponcnf
Popis This plugin notifies the user by a sound about any order that is received through online ordering system
Velikost souboru 450 KB
Počet instalací 21
Aktuální Verze 1.4
Poslední Aktualizace 2017-08-22
Datum Vydání 2017-08-22
Vývojář Order To Eat Now
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://app1.ordertoeatnow.com/
Podporované Jazyky 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"
    ]
}