ProABD Order Exporter

Export load details for transfer to Central Dispatch order creation form.

ProABD Order Exporter क्या है?

ProABD Order Exporter ProABD द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export load details for transfer to Central Dispatch order creation form."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ProABD Order Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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
}