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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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 } |