Order notification plugin

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

Cos'è Order notification plugin?

Order notification plugin è un'estensione di Chrome sviluppata da Order To Eat Now, e la sua funzione principale è "This plugin notifies the user by a sound about any order that is received through online ordering system".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Order notification plugin

Scarica i file di estensione Order notification plugin in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        An order notification plugin to get order updates.                    

Informazioni di Base sull'Estensione

Nome Order notification plugin Order notification plugin
ID npdlieblchhmkobjpplcblnmnnponcnf
URL Ufficiale https://chrome.google.com/webstore/detail/order-notification-plugin/npdlieblchhmkobjpplcblnmnnponcnf
Descrizione This plugin notifies the user by a sound about any order that is received through online ordering system
Dimensione del File 450 KB
Conteggio Installazioni 21
Versione Corrente 1.4
Ultimo Aggiornamento 2017-08-22
Data di Pubblicazione 2017-08-22
Sviluppatore Order To Eat Now
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://app1.ordertoeatnow.com/
Lingue Supportate 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"
    ]
}