ProABD Order Exporter
Export load details for transfer to Central Dispatch order creation form.
ProABD Order Exporterとは何ですか?
ProABD Order ExporterはProABDによって開発されたChromeの拡張機能で、その主な機能は「Export load details for transfer to Central Dispatch order creation form.」です。
拡張機能のスクリーンショット
ProABD Order Exporter拡張機能のCRXファイルをダウンロード
ProABD Order Exporter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Export load details for transfer to Central Dispatch order creation form. Copies ProABD order data into Central Dispatch vehicle assign and edit forms. With one press of the button, ProABD order exporter automatically dispatches your order to Central Dispatch.
拡張機能の基本情報
名前 | ProABD Order Exporter |
ID | gdclenfmdnfbeodpmpalpoknopophafg |
公式URL | https://chromewebstore.google.com/detail/proabd-order-exporter/gdclenfmdnfbeodpmpalpoknopophafg |
説明 | Export load details for transfer to Central Dispatch order creation form. |
ファイルサイズ | 110 KB |
インストール数 | 420 |
現在のバージョン | 1.3 |
最終更新日 | 2021-07-08 |
公開日 | 2019-09-23 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | ProABD |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ProABD Order Exporter", "version": "1.3", "author": "Gregory C. Austrow, Robert A. Frazier", "description": "Export load details for transfer to Central Dispatch order creation form.", "permissions": [ "activeTab", "storage", "declarativeContent", "cookies", "*:\/\/*.proabd.com\/*", "*:\/\/www.centraldispatch.com\/protected\/cargo\/my-vehicles*", "*:\/\/www.centraldispatch.com\/protected\/dispatch\/broker*", "*:\/\/www.centraldispatch.com\/protected\/dispatch\/view*" ], "externally_connectable": { "matches": [ "*:\/\/*.proabd.com\/abd_order_detail.php*", "*:\/\/www.centraldispatch.com\/protected\/cargo\/my-vehicles*", "*:\/\/www.centraldispatch.com\/protected\/dispatch\/broker*", "*:\/\/www.centraldispatch.com\/protected\/dispatch\/view*" ] }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.proabd.com\/abd_order_detail.php*" ], "js": [ "js\/lib\/Scraper.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/www.centraldispatch.com\/protected\/cargo\/my-vehicles*" ], "js": [ "js\/central_js_inject_my_vehicles.js" ], "css": [ "css\/central_css_inject.css" ] }, { "run_at": "document_idle", "matches": [ "*:\/\/www.centraldispatch.com\/protected\/dispatch\/broker*" ], "js": [ "js\/central_js_inject_assign_dispatch.js" ], "css": [ "css\/central_css_inject.css" ] }, { "run_at": "document_end", "matches": [ "*:\/\/www.centraldispatch.com\/protected\/dispatch\/view*" ], "js": [ "js\/central_js_inject_view_dispatch.js" ], "css": [ "css\/central_css_inject.css" ] } ], "page_action": { "default_popup": "popup.html", "default_title": "Order Exporter", "default_icon": { "16": "images\/abd_logo16.png", "32": "images\/abd_logo32.png", "48": "images\/abd_logo48.png", "128": "images\/abd_logo128.png" } }, "icons": { "16": "images\/abd_logo16.png", "32": "images\/abd_logo32.png", "48": "images\/abd_logo48.png", "128": "images\/abd_logo128.png" }, "manifest_version": 2 } |