Dober & Central Dispatch Extension

This extension improves working experience, it helps you to transfer data from central dispatch with one click
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dober & Central Dispatch Extension",
  "version": "1.0.6",
  "manifest_version": 3,
  "icons": {
    "16": "./images/16.png",
    "32": "./images/32.png",
    "48": "./images/48.png",
    "128": "./images/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.centraldispatch.com/protected/dispatch/view*"
      ],
      "js": [
        "./scripts/api.js",
        "./scripts/tools.js",
        "./scripts/style-button.js",
        "./scripts/Parsing/agent_parse.js",
        "./scripts/Parsing/carrier_parse.js",
        "./scripts/Parsing/order_parse.js",
        "./scripts/Parsing/terms_parse.js",
        "./scripts/Parsing/parser.js",
        "./scripts/main.js"
      ]
    }
  ]
}