Order notification plugin

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

O que é Order notification plugin?

Order notification plugin é uma extensão do Chrome desenvolvida por Order To Eat Now, e sua principal característica é "This plugin notifies the user by a sound about any order that is received through online ordering system".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Order notification plugin

Baixe arquivos de extensão Order notification plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        An order notification plugin to get order updates.                    

Informações Básicas da Extensão

Nome Order notification plugin Order notification plugin
ID npdlieblchhmkobjpplcblnmnnponcnf
URL Oficial https://chrome.google.com/webstore/detail/order-notification-plugin/npdlieblchhmkobjpplcblnmnnponcnf
Descrição This plugin notifies the user by a sound about any order that is received through online ordering system
Tamanho do Arquivo 450 KB
Contagem de Instalações 21
Versão Atual 1.4
Última Atualização 2017-08-22
Data de Publicação 2017-08-22
Desenvolvedor Order To Eat Now
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://app1.ordertoeatnow.com/
Idiomas Suportados 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"
    ]
}