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」です。
拡張機能のスクリーンショット
Order notification plugin拡張機能のCRXファイルをダウンロード
Order notification plugin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
An order notification plugin to get order updates. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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",
" | |