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 |
官方網址 | 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 |
電子郵箱 | [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 } |