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是由Order To Eat Now开发的Chrome扩展程序,该扩展的主要功能是“This plugin notifies the user by a sound about any order that is received through online ordering system”。

扩展截图

screenshot

下载Order notification plugin扩展crx文件

下载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"
    ]
}