Order notification plugin

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

Order notification plugin là gì?

Order notification plugin là một tiện ích mở rộng Chrome được phát triển bởi Order To Eat Now, và tính năng chính của nó là "This plugin notifies the user by a sound about any order that is received through online ordering system".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Order notification plugin

Tải xuống các tệp mở rộng Order notification plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        An order notification plugin to get order updates.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Order notification plugin Order notification plugin
ID npdlieblchhmkobjpplcblnmnnponcnf
URL Chính Thức https://chrome.google.com/webstore/detail/order-notification-plugin/npdlieblchhmkobjpplcblnmnnponcnf
Mô tả This plugin notifies the user by a sound about any order that is received through online ordering system
Kích Thước Tệp 450 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2017-08-22
Ngày Phát Hành 2017-08-22
Nhà Phát Triển Order To Eat Now
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://app1.ordertoeatnow.com/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}